diff --git a/python/extractor/semmle/util.py b/python/extractor/semmle/util.py index 202c2a941c26..00651ace8314 100644 --- a/python/extractor/semmle/util.py +++ b/python/extractor/semmle/util.py @@ -10,7 +10,7 @@ #Semantic version of extractor. #Update this if any changes are made -VERSION = "7.1.7" +VERSION = "7.1.8" PY_EXTENSIONS = ".py", ".pyw" diff --git a/python/extractor/tests/parser/strings.py b/python/extractor/tests/parser/strings.py index c7b772a44aaf..3aa61185a348 100644 --- a/python/extractor/tests/parser/strings.py +++ b/python/extractor/tests/parser/strings.py @@ -86,3 +86,5 @@ if 39: r'a\ ' +if 40: + f"{x:=^20}" diff --git a/python/extractor/tests/parser/template_strings_new.expected b/python/extractor/tests/parser/template_strings_new.expected index 64df91aac772..ae8eff88dcea 100644 --- a/python/extractor/tests/parser/template_strings_new.expected +++ b/python/extractor/tests/parser/template_strings_new.expected @@ -1,4 +1,4 @@ -Module: [1, 0] - [18, 0] +Module: [1, 0] - [20, 0] body: [ Assign: [1, 0] - [1, 14] targets: [ @@ -191,4 +191,24 @@ Module: [1, 0] - [18, 0] ] ] orelse: None + If: [18, 0] - [18, 5] + test: + Num: [18, 3] - [18, 4] + n: 7 + text: '7' + body: [ + Expr: [19, 4] - [19, 43] + value: + TemplateString: [19, 4] - [19, 43] + prefix: 't"' + values: [ + TemplateStringPart: [19, 6] - [19, 31] + text: '"With a format specifier: "' + s: 'With a format specifier: ' + Name: [19, 32] - [19, 36] + variable: Variable('name', None) + ctx: Load + ] + ] + orelse: None ] diff --git a/python/extractor/tests/parser/template_strings_new.py b/python/extractor/tests/parser/template_strings_new.py index 4c56dca2c0c8..452473a9d78a 100644 --- a/python/extractor/tests/parser/template_strings_new.py +++ b/python/extractor/tests/parser/template_strings_new.py @@ -15,3 +15,5 @@ t"Multiple {first} and {second} placeholders." if 6: t"Implicit concatenation: " t"Hello, {name}!" t" How are you?" +if 7: + t"With a format specifier: {name:=^20}" diff --git a/python/extractor/tsg-python/tsp/grammar.js b/python/extractor/tsg-python/tsp/grammar.js index a30ddb9f0a0f..c53a67da1260 100644 --- a/python/extractor/tsg-python/tsp/grammar.js +++ b/python/extractor/tsg-python/tsp/grammar.js @@ -1168,7 +1168,7 @@ module.exports = grammar({ _not_escape_sequence: $ => token.immediate('\\'), format_specifier: $ => seq( - ':', + token(prec(1,':')), repeat(choice( token(prec(1, /[^{}\n]+/)), alias($.interpolation, $.format_expression) diff --git a/python/extractor/tsg-python/tsp/src/grammar.json b/python/extractor/tsg-python/tsp/src/grammar.json index e413f91b0855..fbe1f17b9491 100644 --- a/python/extractor/tsg-python/tsp/src/grammar.json +++ b/python/extractor/tsg-python/tsp/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "python", "word": "identifier", "rules": { @@ -6292,8 +6293,15 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": ":" + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": ":" + } + } }, { "type": "REPEAT", @@ -6860,6 +6868,6 @@ "primary_expression", "pattern", "parameter" - ] -} - + ], + "reserved": {} +} \ No newline at end of file diff --git a/python/extractor/tsg-python/tsp/src/node-types.json b/python/extractor/tsg-python/tsp/src/node-types.json index a718a48aab65..609952bd5e53 100644 --- a/python/extractor/tsg-python/tsp/src/node-types.json +++ b/python/extractor/tsg-python/tsp/src/node-types.json @@ -2770,6 +2770,7 @@ { "type": "module", "named": true, + "root": true, "fields": {}, "children": { "multiple": true, @@ -3944,6 +3945,10 @@ "type": ":=", "named": false }, + { + "type": ";", + "named": false + }, { "type": "<", "named": false @@ -4000,6 +4005,10 @@ "type": "[", "named": false }, + { + "type": "\\", + "named": false + }, { "type": "]", "named": false @@ -4050,7 +4059,8 @@ }, { "type": "comment", - "named": true + "named": true, + "extra": true }, { "type": "continue", diff --git a/python/extractor/tsg-python/tsp/src/parser.c b/python/extractor/tsg-python/tsp/src/parser.c index e275c1316a0f..74a0d1440fbd 100644 --- a/python/extractor/tsg-python/tsp/src/parser.c +++ b/python/extractor/tsg-python/tsp/src/parser.c @@ -1,22 +1,25 @@ -#include +/* Automatically @generated by tree-sitter */ + +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 13 -#define STATE_COUNT 1510 -#define LARGE_STATE_COUNT 152 -#define SYMBOL_COUNT 288 +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 1723 +#define LARGE_STATE_COUNT 156 +#define SYMBOL_COUNT 291 #define ALIAS_COUNT 3 -#define TOKEN_COUNT 108 +#define TOKEN_COUNT 109 #define EXTERNAL_TOKEN_COUNT 7 #define FIELD_COUNT 54 #define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 166 +#define SUPERTYPE_COUNT 0 -enum { +enum ts_symbol_identifiers { sym_identifier = 1, anon_sym_import = 2, anon_sym_DOT = 3, @@ -106,207 +109,210 @@ enum { anon_sym_LBRACE2 = 87, sym__escape_interpolation = 88, sym_escape_sequence = 89, - sym__not_escape_sequence = 90, - aux_sym_format_specifier_token1 = 91, - sym_type_conversion = 92, - sym_integer = 93, - sym_float = 94, - anon_sym_await = 95, - sym_true = 96, - sym_false = 97, - sym_none = 98, - sym_comment = 99, - sym__semicolon = 100, - sym__newline = 101, - sym__indent = 102, - sym__dedent = 103, - sym__string_start = 104, - sym__string_content = 105, - sym__string_end = 106, - 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_exception_list = 136, - sym_except_clause = 137, - sym_except_group_clause = 138, - sym_finally_clause = 139, - sym_with_statement = 140, - sym_with_clause = 141, - sym_with_item = 142, - sym_match_statement = 143, - sym_cases = 144, - sym_case_block = 145, - sym__match_patterns = 146, - sym_open_sequence_match_pattern = 147, - sym__match_pattern = 148, - sym_match_as_pattern = 149, - sym__match_or_pattern = 150, - sym_match_or_pattern = 151, - sym__closed_pattern = 152, - sym_match_literal_pattern = 153, - sym_match_capture_pattern = 154, - sym_match_value_pattern = 155, - sym_match_group_pattern = 156, - sym_match_sequence_pattern = 157, - sym__match_maybe_star_pattern = 158, - sym_match_star_pattern = 159, - sym_match_mapping_pattern = 160, - sym_match_double_star_pattern = 161, - sym_match_key_value_pattern = 162, - sym_match_class_pattern = 163, - sym_pattern_class_name = 164, - sym_match_positional_pattern = 165, - sym_match_keyword_pattern = 166, - sym_guard = 167, - sym_function_definition = 168, - sym_parameters = 169, - sym_lambda_parameters = 170, - sym_list_splat = 171, - sym_dictionary_splat = 172, - sym_global_statement = 173, - sym_nonlocal_statement = 174, - sym_exec_statement = 175, - sym_type_alias_statement = 176, - sym_class_definition = 177, - sym_type_parameters = 178, - sym__type_bound = 179, - sym_typevar_parameter = 180, - sym_typevartuple_parameter = 181, - sym_paramspec_parameter = 182, - sym__type_parameter = 183, - sym__type_param_default = 184, - sym_parenthesized_list_splat = 185, - sym_argument_list = 186, - sym_decorated_definition = 187, - sym_decorator = 188, - sym_block = 189, - sym_expression_list = 190, - sym_dotted_name = 191, - sym__parameters = 192, - sym__patterns = 193, - sym_parameter = 194, - sym_pattern = 195, - sym_tuple_pattern = 196, - sym_list_pattern = 197, - sym_default_parameter = 198, - sym_typed_default_parameter = 199, - sym_list_splat_pattern = 200, - sym_dictionary_splat_pattern = 201, - sym__expression_within_for_in_clause = 202, - sym_expression = 203, - sym_primary_expression = 204, - sym_not_operator = 205, - sym_boolean_operator = 206, - sym_binary_operator = 207, - sym_unary_operator = 208, - sym_comparison_operator = 209, - sym_lambda = 210, - sym_lambda_within_for_in_clause = 211, - sym_assignment = 212, - sym_augmented_assignment = 213, - sym_pattern_list = 214, - sym__right_hand_side = 215, - sym_yield = 216, - sym_attribute = 217, - sym__index_expression = 218, - sym_index_expression_list = 219, - sym_subscript = 220, - sym_slice = 221, - sym_call = 222, - sym_typed_parameter = 223, - sym_type = 224, - sym_keyword_argument = 225, - sym_list = 226, - sym_set = 227, - sym_tuple = 228, - sym_dictionary = 229, - sym_pair = 230, - sym_list_comprehension = 231, - sym_dictionary_comprehension = 232, - sym_set_comprehension = 233, - sym_generator_expression = 234, - sym__comprehension_clauses = 235, - sym_parenthesized_expression = 236, - sym__collection_elements = 237, - sym_for_in_clause = 238, - sym_if_clause = 239, - sym_conditional_expression = 240, - sym_concatenated_string = 241, - sym_string = 242, - sym_concatenated_template_string = 243, - sym_template_string = 244, - sym_string_content = 245, - sym_interpolation = 246, - sym__f_expression = 247, - sym_format_specifier = 248, - sym_await = 249, - sym_positional_separator = 250, - sym_keyword_separator = 251, - aux_sym_module_repeat1 = 252, - aux_sym__simple_statements_repeat1 = 253, - aux_sym_import_prefix_repeat1 = 254, - aux_sym__import_list_repeat1 = 255, - aux_sym_print_statement_repeat1 = 256, - aux_sym_assert_statement_repeat1 = 257, - aux_sym_if_statement_repeat1 = 258, - aux_sym_try_statement_repeat1 = 259, - aux_sym_try_statement_repeat2 = 260, - aux_sym_exception_list_repeat1 = 261, - aux_sym_with_clause_repeat1 = 262, - aux_sym_cases_repeat1 = 263, - aux_sym_open_sequence_match_pattern_repeat1 = 264, - aux_sym_match_or_pattern_repeat1 = 265, - aux_sym_match_value_pattern_repeat1 = 266, - aux_sym_match_mapping_pattern_repeat1 = 267, - aux_sym_match_class_pattern_repeat1 = 268, - aux_sym_match_class_pattern_repeat2 = 269, - aux_sym_global_statement_repeat1 = 270, - aux_sym_type_parameters_repeat1 = 271, - aux_sym_argument_list_repeat1 = 272, - aux_sym_decorated_definition_repeat1 = 273, - aux_sym_expression_list_repeat1 = 274, - aux_sym__parameters_repeat1 = 275, - aux_sym__patterns_repeat1 = 276, - aux_sym_comparison_operator_repeat1 = 277, - aux_sym_index_expression_list_repeat1 = 278, - aux_sym_dictionary_repeat1 = 279, - aux_sym__comprehension_clauses_repeat1 = 280, - aux_sym__collection_elements_repeat1 = 281, - aux_sym_for_in_clause_repeat1 = 282, - aux_sym_concatenated_string_repeat1 = 283, - aux_sym_string_repeat1 = 284, - aux_sym_concatenated_template_string_repeat1 = 285, - aux_sym_string_content_repeat1 = 286, - aux_sym_format_specifier_repeat1 = 287, - alias_sym_format_expression = 288, - anon_alias_sym_isnot = 289, - anon_alias_sym_notin = 290, + anon_sym_BSLASH = 90, + anon_sym_COLON2 = 91, + aux_sym_format_specifier_token1 = 92, + sym_type_conversion = 93, + sym_integer = 94, + sym_float = 95, + anon_sym_await = 96, + sym_true = 97, + sym_false = 98, + sym_none = 99, + sym_comment = 100, + anon_sym_SEMI = 101, + sym__newline = 102, + sym__indent = 103, + sym__dedent = 104, + sym__string_start = 105, + sym__string_content = 106, + sym__string_end = 107, + sym__template_string_start = 108, + sym_module = 109, + sym__statement = 110, + sym__simple_statements = 111, + sym_import_statement = 112, + sym_import_prefix = 113, + sym_relative_import = 114, + sym_future_import_statement = 115, + sym_import_from_statement = 116, + sym__import_list = 117, + sym_aliased_import = 118, + sym_wildcard_import = 119, + sym_print_statement = 120, + sym_chevron = 121, + sym_assert_statement = 122, + sym_expression_statement = 123, + sym_named_expression = 124, + sym_return_statement = 125, + sym_delete_statement = 126, + sym_raise_statement = 127, + sym_pass_statement = 128, + sym_break_statement = 129, + sym_continue_statement = 130, + sym_if_statement = 131, + sym_elif_clause = 132, + sym_else_clause = 133, + sym_for_statement = 134, + sym_while_statement = 135, + sym_try_statement = 136, + sym_exception_list = 137, + sym_except_clause = 138, + sym_except_group_clause = 139, + sym_finally_clause = 140, + sym_with_statement = 141, + sym_with_clause = 142, + sym_with_item = 143, + sym_match_statement = 144, + sym_cases = 145, + sym_case_block = 146, + sym__match_patterns = 147, + sym_open_sequence_match_pattern = 148, + sym__match_pattern = 149, + sym_match_as_pattern = 150, + sym__match_or_pattern = 151, + sym_match_or_pattern = 152, + sym__closed_pattern = 153, + sym_match_literal_pattern = 154, + sym_match_capture_pattern = 155, + sym_match_value_pattern = 156, + sym_match_group_pattern = 157, + sym_match_sequence_pattern = 158, + sym__match_maybe_star_pattern = 159, + sym_match_star_pattern = 160, + sym_match_mapping_pattern = 161, + sym_match_double_star_pattern = 162, + sym_match_key_value_pattern = 163, + sym_match_class_pattern = 164, + sym_pattern_class_name = 165, + sym_match_positional_pattern = 166, + sym_match_keyword_pattern = 167, + sym_guard = 168, + sym_function_definition = 169, + sym_parameters = 170, + sym_lambda_parameters = 171, + sym_list_splat = 172, + sym_dictionary_splat = 173, + sym_global_statement = 174, + sym_nonlocal_statement = 175, + sym_exec_statement = 176, + sym_type_alias_statement = 177, + sym_class_definition = 178, + sym_type_parameters = 179, + sym__type_bound = 180, + sym_typevar_parameter = 181, + sym_typevartuple_parameter = 182, + sym_paramspec_parameter = 183, + sym__type_parameter = 184, + sym__type_param_default = 185, + sym_parenthesized_list_splat = 186, + sym_argument_list = 187, + sym_decorated_definition = 188, + sym_decorator = 189, + sym_block = 190, + sym_expression_list = 191, + sym_dotted_name = 192, + sym__parameters = 193, + sym__patterns = 194, + sym_parameter = 195, + sym_pattern = 196, + sym_tuple_pattern = 197, + sym_list_pattern = 198, + sym_default_parameter = 199, + sym_typed_default_parameter = 200, + sym_list_splat_pattern = 201, + sym_dictionary_splat_pattern = 202, + sym__expression_within_for_in_clause = 203, + sym_expression = 204, + sym_primary_expression = 205, + sym_not_operator = 206, + sym_boolean_operator = 207, + sym_binary_operator = 208, + sym_unary_operator = 209, + sym_comparison_operator = 210, + sym_lambda = 211, + sym_lambda_within_for_in_clause = 212, + sym_assignment = 213, + sym_augmented_assignment = 214, + sym_pattern_list = 215, + sym__right_hand_side = 216, + sym_yield = 217, + sym_attribute = 218, + sym__index_expression = 219, + sym_index_expression_list = 220, + sym_subscript = 221, + sym_slice = 222, + sym_call = 223, + sym_typed_parameter = 224, + sym_type = 225, + sym_keyword_argument = 226, + sym_list = 227, + sym_set = 228, + sym_tuple = 229, + sym_dictionary = 230, + sym_pair = 231, + sym_list_comprehension = 232, + sym_dictionary_comprehension = 233, + sym_set_comprehension = 234, + sym_generator_expression = 235, + sym__comprehension_clauses = 236, + sym_parenthesized_expression = 237, + sym__collection_elements = 238, + sym_for_in_clause = 239, + sym_if_clause = 240, + sym_conditional_expression = 241, + sym_concatenated_string = 242, + sym_string = 243, + sym_concatenated_template_string = 244, + sym_template_string = 245, + sym_string_content = 246, + sym_interpolation = 247, + sym__f_expression = 248, + sym__not_escape_sequence = 249, + sym_format_specifier = 250, + sym_await = 251, + sym_positional_separator = 252, + sym_keyword_separator = 253, + sym__semicolon = 254, + aux_sym_module_repeat1 = 255, + aux_sym__simple_statements_repeat1 = 256, + aux_sym_import_prefix_repeat1 = 257, + aux_sym__import_list_repeat1 = 258, + aux_sym_print_statement_repeat1 = 259, + aux_sym_assert_statement_repeat1 = 260, + aux_sym_if_statement_repeat1 = 261, + aux_sym_try_statement_repeat1 = 262, + aux_sym_try_statement_repeat2 = 263, + aux_sym_exception_list_repeat1 = 264, + aux_sym_with_clause_repeat1 = 265, + aux_sym_cases_repeat1 = 266, + aux_sym_open_sequence_match_pattern_repeat1 = 267, + aux_sym_match_or_pattern_repeat1 = 268, + aux_sym_match_value_pattern_repeat1 = 269, + aux_sym_match_mapping_pattern_repeat1 = 270, + aux_sym_match_class_pattern_repeat1 = 271, + aux_sym_match_class_pattern_repeat2 = 272, + aux_sym_global_statement_repeat1 = 273, + aux_sym_type_parameters_repeat1 = 274, + aux_sym_argument_list_repeat1 = 275, + aux_sym_decorated_definition_repeat1 = 276, + aux_sym_expression_list_repeat1 = 277, + aux_sym__parameters_repeat1 = 278, + aux_sym__patterns_repeat1 = 279, + aux_sym_comparison_operator_repeat1 = 280, + aux_sym_index_expression_list_repeat1 = 281, + aux_sym_dictionary_repeat1 = 282, + aux_sym__comprehension_clauses_repeat1 = 283, + aux_sym__collection_elements_repeat1 = 284, + aux_sym_for_in_clause_repeat1 = 285, + aux_sym_concatenated_string_repeat1 = 286, + aux_sym_string_repeat1 = 287, + aux_sym_concatenated_template_string_repeat1 = 288, + aux_sym_string_content_repeat1 = 289, + aux_sym_format_specifier_repeat1 = 290, + alias_sym_format_expression = 291, + anon_alias_sym_isnot = 292, + anon_alias_sym_notin = 293, }; static const char * const ts_symbol_names[] = { @@ -400,7 +406,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACE2] = "{", [sym__escape_interpolation] = "_escape_interpolation", [sym_escape_sequence] = "escape_sequence", - [sym__not_escape_sequence] = "_not_escape_sequence", + [anon_sym_BSLASH] = "\\", + [anon_sym_COLON2] = ":", [aux_sym_format_specifier_token1] = "format_specifier_token1", [sym_type_conversion] = "type_conversion", [sym_integer] = "integer", @@ -410,7 +417,7 @@ static const char * const ts_symbol_names[] = { [sym_false] = "false", [sym_none] = "none", [sym_comment] = "comment", - [sym__semicolon] = "_semicolon", + [anon_sym_SEMI] = ";", [sym__newline] = "_newline", [sym__indent] = "_indent", [sym__dedent] = "_dedent", @@ -558,10 +565,12 @@ static const char * const ts_symbol_names[] = { [sym_string_content] = "string_content", [sym_interpolation] = "interpolation", [sym__f_expression] = "_f_expression", + [sym__not_escape_sequence] = "_not_escape_sequence", [sym_format_specifier] = "format_specifier", [sym_await] = "await", [sym_positional_separator] = "positional_separator", [sym_keyword_separator] = "keyword_separator", + [sym__semicolon] = "_semicolon", [aux_sym_module_repeat1] = "module_repeat1", [aux_sym__simple_statements_repeat1] = "_simple_statements_repeat1", [aux_sym_import_prefix_repeat1] = "import_prefix_repeat1", @@ -694,7 +703,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACE2] = anon_sym_LBRACE, [sym__escape_interpolation] = sym__escape_interpolation, [sym_escape_sequence] = sym_escape_sequence, - [sym__not_escape_sequence] = sym__not_escape_sequence, + [anon_sym_BSLASH] = anon_sym_BSLASH, + [anon_sym_COLON2] = anon_sym_COLON, [aux_sym_format_specifier_token1] = aux_sym_format_specifier_token1, [sym_type_conversion] = sym_type_conversion, [sym_integer] = sym_integer, @@ -704,7 +714,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_false] = sym_false, [sym_none] = sym_none, [sym_comment] = sym_comment, - [sym__semicolon] = sym__semicolon, + [anon_sym_SEMI] = anon_sym_SEMI, [sym__newline] = sym__newline, [sym__indent] = sym__indent, [sym__dedent] = sym__dedent, @@ -852,10 +862,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_string_content] = sym_string_content, [sym_interpolation] = sym_interpolation, [sym__f_expression] = sym__f_expression, + [sym__not_escape_sequence] = sym__not_escape_sequence, [sym_format_specifier] = sym_format_specifier, [sym_await] = sym_await, [sym_positional_separator] = sym_positional_separator, [sym_keyword_separator] = sym_keyword_separator, + [sym__semicolon] = sym__semicolon, [aux_sym_module_repeat1] = aux_sym_module_repeat1, [aux_sym__simple_statements_repeat1] = aux_sym__simple_statements_repeat1, [aux_sym_import_prefix_repeat1] = aux_sym_import_prefix_repeat1, @@ -1258,9 +1270,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__not_escape_sequence] = { - .visible = false, - .named = true, + [anon_sym_BSLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON2] = { + .visible = true, + .named = false, }, [aux_sym_format_specifier_token1] = { .visible = false, @@ -1298,9 +1314,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__semicolon] = { - .visible = false, - .named = true, + [anon_sym_SEMI] = { + .visible = true, + .named = false, }, [sym__newline] = { .visible = false, @@ -1894,6 +1910,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__not_escape_sequence] = { + .visible = false, + .named = true, + }, [sym_format_specifier] = { .visible = true, .named = true, @@ -1910,6 +1930,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__semicolon] = { + .visible = false, + .named = true, + }, [aux_sym_module_repeat1] = { .visible = false, .named = false, @@ -2068,7 +2092,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -enum { +enum ts_field_identifiers { field_alias = 1, field_alternative = 2, field_argument = 3, @@ -2183,7 +2207,7 @@ static const char * const ts_field_names[] = { [field_vararg] = "vararg", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 2}, [3] = {.index = 2, .length = 1}, [4] = {.index = 3, .length = 1}, @@ -3032,2052 +3056,2234 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; -static inline bool sym_identifier_character_set_1(int32_t c) { - 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 == 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 < 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 == 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 >= 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 < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (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 < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (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 < 5902 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : 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 >= 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 < 65482 - ? (c < 65474 - ? (c >= 65440 && c <= 65470) - : c <= 65479) - : (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 < 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 < 70852 - ? (c < 70784 - ? (c >= 70751 && c <= 70753) - : c <= 70831) - : (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 >= 71424 && c <= 71450) - : c <= 71723) - : (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 < 72161 - ? (c < 72106 - ? (c >= 72096 && c <= 72103) - : c <= 72144) - : (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 < 72714 - ? (c < 72704 - ? (c >= 72384 && c <= 72440) - : c <= 72712) - : (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 < 73112 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73097) - : (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 <= 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 >= 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 const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 2, + [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] = 30, + [31] = 3, + [32] = 5, + [33] = 6, + [34] = 7, + [35] = 8, + [36] = 9, + [37] = 10, + [38] = 11, + [39] = 12, + [40] = 13, + [41] = 14, + [42] = 15, + [43] = 16, + [44] = 17, + [45] = 18, + [46] = 19, + [47] = 20, + [48] = 21, + [49] = 22, + [50] = 23, + [51] = 24, + [52] = 25, + [53] = 26, + [54] = 27, + [55] = 28, + [56] = 56, + [57] = 29, + [58] = 30, + [59] = 56, + [60] = 60, + [61] = 61, + [62] = 62, + [63] = 61, + [64] = 60, + [65] = 61, + [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] = 82, + [83] = 83, + [84] = 84, + [85] = 71, + [86] = 72, + [87] = 87, + [88] = 74, + [89] = 75, + [90] = 80, + [91] = 82, + [92] = 92, + [93] = 83, + [94] = 94, + [95] = 87, + [96] = 84, + [97] = 94, + [98] = 98, + [99] = 76, + [100] = 100, + [101] = 100, + [102] = 102, + [103] = 77, + [104] = 104, + [105] = 105, + [106] = 102, + [107] = 107, + [108] = 104, + [109] = 105, + [110] = 110, + [111] = 78, + [112] = 112, + [113] = 79, + [114] = 107, + [115] = 115, + [116] = 116, + [117] = 110, + [118] = 92, + [119] = 70, + [120] = 112, + [121] = 81, + [122] = 73, + [123] = 115, + [124] = 69, + [125] = 116, + [126] = 98, + [127] = 127, + [128] = 128, + [129] = 128, + [130] = 127, + [131] = 128, + [132] = 127, + [133] = 133, + [134] = 134, + [135] = 135, + [136] = 136, + [137] = 137, + [138] = 136, + [139] = 139, + [140] = 136, + [141] = 136, + [142] = 142, + [143] = 137, + [144] = 136, + [145] = 137, + [146] = 146, + [147] = 136, + [148] = 134, + [149] = 137, + [150] = 137, + [151] = 146, + [152] = 137, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 158, + [159] = 159, + [160] = 157, + [161] = 161, + [162] = 159, + [163] = 157, + [164] = 164, + [165] = 164, + [166] = 164, + [167] = 164, + [168] = 168, + [169] = 168, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 168, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 170, + [179] = 171, + [180] = 172, + [181] = 173, + [182] = 176, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 176, + [188] = 176, + [189] = 189, + [190] = 190, + [191] = 170, + [192] = 192, + [193] = 172, + [194] = 194, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 199, + [200] = 200, + [201] = 189, + [202] = 195, + [203] = 196, + [204] = 204, + [205] = 205, + [206] = 194, + [207] = 197, + [208] = 194, + [209] = 198, + [210] = 199, + [211] = 199, + [212] = 195, + [213] = 196, + [214] = 198, + [215] = 189, + [216] = 200, + [217] = 217, + [218] = 194, + [219] = 197, + [220] = 171, + [221] = 195, + [222] = 196, + [223] = 198, + [224] = 189, + [225] = 200, + [226] = 194, + [227] = 197, + [228] = 200, + [229] = 194, + [230] = 197, + [231] = 197, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 232, + [239] = 239, + [240] = 232, + [241] = 232, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 246, + [248] = 243, + [249] = 249, + [250] = 250, + [251] = 250, + [252] = 252, + [253] = 253, + [254] = 249, + [255] = 252, + [256] = 252, + [257] = 253, + [258] = 249, + [259] = 252, + [260] = 253, + [261] = 249, + [262] = 253, + [263] = 250, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 266, + [269] = 269, + [270] = 270, + [271] = 265, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 275, + [280] = 267, + [281] = 273, + [282] = 282, + [283] = 283, + [284] = 278, + [285] = 276, + [286] = 270, + [287] = 283, + [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] = 303, + [304] = 288, + [305] = 305, + [306] = 306, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 305, + [311] = 295, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, + [318] = 313, + [319] = 312, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 324, + [325] = 320, + [326] = 321, + [327] = 322, + [328] = 328, + [329] = 329, + [330] = 328, + [331] = 329, + [332] = 314, + [333] = 316, + [334] = 334, + [335] = 317, + [336] = 334, + [337] = 323, + [338] = 324, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 340, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 345, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 356, + [358] = 358, + [359] = 341, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 363, + [364] = 364, + [365] = 365, + [366] = 356, + [367] = 367, + [368] = 361, + [369] = 351, + [370] = 341, + [371] = 344, + [372] = 372, + [373] = 373, + [374] = 353, + [375] = 362, + [376] = 360, + [377] = 377, + [378] = 378, + [379] = 361, + [380] = 380, + [381] = 364, + [382] = 351, + [383] = 383, + [384] = 384, + [385] = 385, + [386] = 353, + [387] = 360, + [388] = 344, + [389] = 344, + [390] = 378, + [391] = 340, + [392] = 356, + [393] = 361, + [394] = 364, + [395] = 351, + [396] = 353, + [397] = 397, + [398] = 360, + [399] = 354, + [400] = 344, + [401] = 340, + [402] = 402, + [403] = 340, + [404] = 350, + [405] = 356, + [406] = 406, + [407] = 407, + [408] = 356, + [409] = 361, + [410] = 364, + [411] = 351, + [412] = 353, + [413] = 360, + [414] = 344, + [415] = 361, + [416] = 340, + [417] = 350, + [418] = 362, + [419] = 350, + [420] = 364, + [421] = 350, + [422] = 350, + [423] = 385, + [424] = 407, + [425] = 425, + [426] = 351, + [427] = 353, + [428] = 360, + [429] = 380, + [430] = 430, + [431] = 378, + [432] = 432, + [433] = 402, + [434] = 397, + [435] = 364, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 442, + [443] = 443, + [444] = 436, + [445] = 442, + [446] = 446, + [447] = 447, + [448] = 446, + [449] = 447, + [450] = 450, + [451] = 440, + [452] = 452, + [453] = 452, + [454] = 437, + [455] = 441, + [456] = 438, + [457] = 443, + [458] = 458, + [459] = 439, + [460] = 450, + [461] = 461, + [462] = 462, + [463] = 463, + [464] = 464, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 468, + [469] = 469, + [470] = 470, + [471] = 471, + [472] = 470, + [473] = 463, + [474] = 474, + [475] = 294, + [476] = 466, + [477] = 477, + [478] = 478, + [479] = 468, + [480] = 480, + [481] = 480, + [482] = 482, + [483] = 307, + [484] = 469, + [485] = 485, + [486] = 471, + [487] = 487, + [488] = 464, + [489] = 485, + [490] = 477, + [491] = 482, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 492, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 495, + [504] = 496, + [505] = 499, + [506] = 500, + [507] = 501, + [508] = 493, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 511, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 545, + [546] = 546, + [547] = 547, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 521, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 556, + [557] = 557, + [558] = 514, + [559] = 559, + [560] = 560, + [561] = 534, + [562] = 535, + [563] = 540, + [564] = 541, + [565] = 547, + [566] = 550, + [567] = 567, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 515, + [573] = 516, + [574] = 517, + [575] = 518, + [576] = 519, + [577] = 520, + [578] = 522, + [579] = 523, + [580] = 524, + [581] = 567, + [582] = 525, + [583] = 526, + [584] = 527, + [585] = 528, + [586] = 529, + [587] = 530, + [588] = 560, + [589] = 531, + [590] = 532, + [591] = 533, + [592] = 536, + [593] = 537, + [594] = 538, + [595] = 539, + [596] = 568, + [597] = 569, + [598] = 542, + [599] = 543, + [600] = 544, + [601] = 545, + [602] = 546, + [603] = 548, + [604] = 549, + [605] = 570, + [606] = 571, + [607] = 553, + [608] = 554, + [609] = 555, + [610] = 556, + [611] = 557, + [612] = 612, + [613] = 559, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 615, + [619] = 619, + [620] = 620, + [621] = 621, + [622] = 615, + [623] = 615, + [624] = 624, + [625] = 615, + [626] = 615, + [627] = 627, + [628] = 628, + [629] = 629, + [630] = 630, + [631] = 627, + [632] = 632, + [633] = 633, + [634] = 634, + [635] = 628, + [636] = 629, + [637] = 628, + [638] = 629, + [639] = 630, + [640] = 640, + [641] = 641, + [642] = 642, + [643] = 633, + [644] = 634, + [645] = 632, + [646] = 628, + [647] = 629, + [648] = 630, + [649] = 640, + [650] = 634, + [651] = 642, + [652] = 633, + [653] = 634, + [654] = 640, + [655] = 627, + [656] = 632, + [657] = 657, + [658] = 627, + [659] = 632, + [660] = 641, + [661] = 630, + [662] = 662, + [663] = 628, + [664] = 629, + [665] = 630, + [666] = 640, + [667] = 641, + [668] = 642, + [669] = 633, + [670] = 634, + [671] = 642, + [672] = 640, + [673] = 627, + [674] = 632, + [675] = 657, + [676] = 657, + [677] = 657, + [678] = 678, + [679] = 657, + [680] = 641, + [681] = 628, + [682] = 629, + [683] = 630, + [684] = 640, + [685] = 641, + [686] = 642, + [687] = 633, + [688] = 634, + [689] = 633, + [690] = 627, + [691] = 632, + [692] = 657, + [693] = 642, + [694] = 641, + [695] = 695, + [696] = 696, + [697] = 697, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 701, + [702] = 702, + [703] = 703, + [704] = 704, + [705] = 705, + [706] = 706, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 714, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 718, + [719] = 719, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 723, + [724] = 724, + [725] = 719, + [726] = 726, + [727] = 727, + [728] = 728, + [729] = 729, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 733, + [734] = 734, + [735] = 735, + [736] = 736, + [737] = 737, + [738] = 738, + [739] = 739, + [740] = 734, + [741] = 741, + [742] = 742, + [743] = 743, + [744] = 616, + [745] = 617, + [746] = 619, + [747] = 620, + [748] = 748, + [749] = 749, + [750] = 736, + [751] = 737, + [752] = 738, + [753] = 739, + [754] = 741, + [755] = 742, + [756] = 743, + [757] = 748, + [758] = 749, + [759] = 759, + [760] = 735, + [761] = 759, + [762] = 620, + [763] = 624, + [764] = 713, + [765] = 616, + [766] = 719, + [767] = 621, + [768] = 624, + [769] = 616, + [770] = 617, + [771] = 619, + [772] = 719, + [773] = 773, + [774] = 774, + [775] = 619, + [776] = 620, + [777] = 712, + [778] = 617, + [779] = 719, + [780] = 773, + [781] = 774, + [782] = 621, + [783] = 734, + [784] = 759, + [785] = 735, + [786] = 736, + [787] = 737, + [788] = 738, + [789] = 739, + [790] = 735, + [791] = 741, + [792] = 742, + [793] = 743, + [794] = 621, + [795] = 624, + [796] = 736, + [797] = 748, + [798] = 749, + [799] = 737, + [800] = 738, + [801] = 739, + [802] = 734, + [803] = 759, + [804] = 742, + [805] = 743, + [806] = 695, + [807] = 696, + [808] = 697, + [809] = 698, + [810] = 735, + [811] = 759, + [812] = 736, + [813] = 737, + [814] = 738, + [815] = 739, + [816] = 734, + [817] = 741, + [818] = 742, + [819] = 743, + [820] = 748, + [821] = 749, + [822] = 719, + [823] = 748, + [824] = 749, + [825] = 741, + [826] = 773, + [827] = 696, + [828] = 736, + [829] = 737, + [830] = 698, + [831] = 738, + [832] = 739, + [833] = 734, + [834] = 509, + [835] = 741, + [836] = 742, + [837] = 743, + [838] = 502, + [839] = 839, + [840] = 773, + [841] = 697, + [842] = 774, + [843] = 748, + [844] = 749, + [845] = 759, + [846] = 846, + [847] = 695, + [848] = 735, + [849] = 494, + [850] = 695, + [851] = 698, + [852] = 852, + [853] = 774, + [854] = 854, + [855] = 855, + [856] = 856, + [857] = 513, + [858] = 462, + [859] = 696, + [860] = 860, + [861] = 697, + [862] = 856, + [863] = 773, + [864] = 465, + [865] = 774, + [866] = 720, + [867] = 716, + [868] = 710, + [869] = 705, + [870] = 712, + [871] = 713, + [872] = 706, + [873] = 707, + [874] = 708, + [875] = 709, + [876] = 294, + [877] = 699, + [878] = 732, + [879] = 721, + [880] = 726, + [881] = 727, + [882] = 728, + [883] = 729, + [884] = 730, + [885] = 731, + [886] = 706, + [887] = 722, + [888] = 700, + [889] = 702, + [890] = 307, + [891] = 705, + [892] = 717, + [893] = 714, + [894] = 716, + [895] = 718, + [896] = 732, + [897] = 711, + [898] = 701, + [899] = 703, + [900] = 704, + [901] = 710, + [902] = 708, + [903] = 718, + [904] = 733, + [905] = 712, + [906] = 733, + [907] = 721, + [908] = 724, + [909] = 714, + [910] = 726, + [911] = 773, + [912] = 774, + [913] = 727, + [914] = 701, + [915] = 494, + [916] = 703, + [917] = 704, + [918] = 713, + [919] = 502, + [920] = 728, + [921] = 729, + [922] = 730, + [923] = 731, + [924] = 724, + [925] = 513, + [926] = 723, + [927] = 927, + [928] = 928, + [929] = 722, + [930] = 700, + [931] = 699, + [932] = 932, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 702, + [937] = 707, + [938] = 723, + [939] = 715, + [940] = 717, + [941] = 720, + [942] = 715, + [943] = 711, + [944] = 709, + [945] = 706, + [946] = 710, + [947] = 294, + [948] = 722, + [949] = 699, + [950] = 702, + [951] = 307, + [952] = 715, + [953] = 724, + [954] = 717, + [955] = 714, + [956] = 716, + [957] = 718, + [958] = 720, + [959] = 732, + [960] = 711, + [961] = 701, + [962] = 703, + [963] = 723, + [964] = 964, + [965] = 704, + [966] = 707, + [967] = 721, + [968] = 708, + [969] = 705, + [970] = 726, + [971] = 727, + [972] = 839, + [973] = 852, + [974] = 728, + [975] = 709, + [976] = 729, + [977] = 733, + [978] = 730, + [979] = 979, + [980] = 980, + [981] = 731, + [982] = 982, + [983] = 700, + [984] = 984, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, + [989] = 989, + [990] = 989, + [991] = 991, + [992] = 991, + [993] = 993, + [994] = 994, + [995] = 989, + [996] = 996, + [997] = 991, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 1001, + [1002] = 991, + [1003] = 989, + [1004] = 1004, + [1005] = 1005, + [1006] = 991, + [1007] = 989, + [1008] = 1008, + [1009] = 991, + [1010] = 1010, + [1011] = 989, + [1012] = 1012, + [1013] = 1013, + [1014] = 1014, + [1015] = 1014, + [1016] = 1014, + [1017] = 1014, + [1018] = 1014, + [1019] = 1019, + [1020] = 1014, + [1021] = 1021, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1025, + [1027] = 1023, + [1028] = 1028, + [1029] = 1028, + [1030] = 1030, + [1031] = 1031, + [1032] = 1032, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 1038, + [1039] = 1039, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1033, + [1044] = 1035, + [1045] = 1037, + [1046] = 1034, + [1047] = 1033, + [1048] = 1036, + [1049] = 1049, + [1050] = 1035, + [1051] = 1037, + [1052] = 1052, + [1053] = 1033, + [1054] = 1036, + [1055] = 1035, + [1056] = 1037, + [1057] = 1033, + [1058] = 1036, + [1059] = 1035, + [1060] = 1034, + [1061] = 1034, + [1062] = 1062, + [1063] = 1063, + [1064] = 1064, + [1065] = 1065, + [1066] = 1066, + [1067] = 1067, + [1068] = 1063, + [1069] = 1065, + [1070] = 1070, + [1071] = 1071, + [1072] = 1072, + [1073] = 1066, + [1074] = 1070, + [1075] = 1067, + [1076] = 1067, + [1077] = 1077, + [1078] = 1078, + [1079] = 1066, + [1080] = 1067, + [1081] = 1081, + [1082] = 1064, + [1083] = 1081, + [1084] = 1066, + [1085] = 1071, + [1086] = 1081, + [1087] = 1077, + [1088] = 1081, + [1089] = 1062, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1101, + [1102] = 1071, + [1103] = 1064, + [1104] = 1062, + [1105] = 1063, + [1106] = 1065, + [1107] = 1070, + [1108] = 1071, + [1109] = 1071, + [1110] = 1110, + [1111] = 1111, + [1112] = 1096, + [1113] = 1113, + [1114] = 1114, + [1115] = 1115, + [1116] = 1116, + [1117] = 1117, + [1118] = 1113, + [1119] = 1119, + [1120] = 1120, + [1121] = 1063, + [1122] = 1122, + [1123] = 1065, + [1124] = 1124, + [1125] = 1125, + [1126] = 1126, + [1127] = 1127, + [1128] = 1128, + [1129] = 1031, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, + [1135] = 1030, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, + [1139] = 1139, + [1140] = 1140, + [1141] = 1096, + [1142] = 1142, + [1143] = 1143, + [1144] = 1070, + [1145] = 1077, + [1146] = 1146, + [1147] = 1147, + [1148] = 1093, + [1149] = 1077, + [1150] = 1064, + [1151] = 1062, + [1152] = 1063, + [1153] = 1065, + [1154] = 1154, + [1155] = 1155, + [1156] = 1064, + [1157] = 1070, + [1158] = 1031, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1162, + [1163] = 1062, + [1164] = 1117, + [1165] = 1077, + [1166] = 1125, + [1167] = 1167, + [1168] = 1030, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1031, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1173, + [1182] = 1182, + [1183] = 1183, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1171, + [1188] = 1077, + [1189] = 1183, + [1190] = 1170, + [1191] = 1125, + [1192] = 1064, + [1193] = 1062, + [1194] = 1063, + [1195] = 1065, + [1196] = 1196, + [1197] = 1197, + [1198] = 1170, + [1199] = 1117, + [1200] = 1200, + [1201] = 1201, + [1202] = 1093, + [1203] = 1203, + [1204] = 1204, + [1205] = 1186, + [1206] = 1206, + [1207] = 1204, + [1208] = 1070, + [1209] = 1071, + [1210] = 1030, + [1211] = 1211, + [1212] = 1170, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1217, + [1218] = 1218, + [1219] = 1216, + [1220] = 1220, + [1221] = 1221, + [1222] = 1221, + [1223] = 1223, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 1231, + [1232] = 1215, + [1233] = 1233, + [1234] = 1032, + [1235] = 1235, + [1236] = 1236, + [1237] = 1235, + [1238] = 1238, + [1239] = 1239, + [1240] = 1236, + [1241] = 1233, + [1242] = 1242, + [1243] = 1243, + [1244] = 1244, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, + [1250] = 1172, + [1251] = 1229, + [1252] = 1252, + [1253] = 1253, + [1254] = 1230, + [1255] = 1255, + [1256] = 1256, + [1257] = 1257, + [1258] = 1183, + [1259] = 1259, + [1260] = 1215, + [1261] = 1261, + [1262] = 1262, + [1263] = 1263, + [1264] = 1264, + [1265] = 1265, + [1266] = 1266, + [1267] = 1267, + [1268] = 1268, + [1269] = 1269, + [1270] = 1270, + [1271] = 1271, + [1272] = 1272, + [1273] = 1267, + [1274] = 1274, + [1275] = 1275, + [1276] = 1276, + [1277] = 1277, + [1278] = 1229, + [1279] = 1279, + [1280] = 1221, + [1281] = 1256, + [1282] = 1214, + [1283] = 1283, + [1284] = 1284, + [1285] = 1285, + [1286] = 1286, + [1287] = 1265, + [1288] = 1288, + [1289] = 1049, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 1293, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, + [1299] = 1299, + [1300] = 1300, + [1301] = 1301, + [1302] = 1302, + [1303] = 1303, + [1304] = 1304, + [1305] = 1298, + [1306] = 1306, + [1307] = 1297, + [1308] = 1308, + [1309] = 1309, + [1310] = 1302, + [1311] = 1311, + [1312] = 1312, + [1313] = 1313, + [1314] = 1314, + [1315] = 1315, + [1316] = 1316, + [1317] = 1039, + [1318] = 1040, + [1319] = 1319, + [1320] = 1320, + [1321] = 1321, + [1322] = 1322, + [1323] = 1323, + [1324] = 1324, + [1325] = 1325, + [1326] = 1326, + [1327] = 1327, + [1328] = 1271, + [1329] = 1275, + [1330] = 1290, + [1331] = 1331, + [1332] = 1332, + [1333] = 1303, + [1334] = 1334, + [1335] = 1297, + [1336] = 1336, + [1337] = 1337, + [1338] = 1338, + [1339] = 1297, + [1340] = 1340, + [1341] = 1341, + [1342] = 1342, + [1343] = 1303, + [1344] = 1344, + [1345] = 1297, + [1346] = 1322, + [1347] = 1334, + [1348] = 1332, + [1349] = 1349, + [1350] = 1295, + [1351] = 1351, + [1352] = 1349, + [1353] = 1353, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, + [1357] = 1357, + [1358] = 1267, + [1359] = 1359, + [1360] = 1360, + [1361] = 1351, + [1362] = 1362, + [1363] = 1304, + [1364] = 1364, + [1365] = 1365, + [1366] = 1297, + [1367] = 1255, + [1368] = 1368, + [1369] = 1301, + [1370] = 1323, + [1371] = 1371, + [1372] = 1372, + [1373] = 1332, + [1374] = 1374, + [1375] = 1375, + [1376] = 1376, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, + [1380] = 1223, + [1381] = 1381, + [1382] = 1306, + [1383] = 1383, + [1384] = 1309, + [1385] = 1385, + [1386] = 1386, + [1387] = 1387, + [1388] = 1388, + [1389] = 1389, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1394, + [1395] = 1368, + [1396] = 1396, + [1397] = 1387, + [1398] = 1388, + [1399] = 1399, + [1400] = 1383, + [1401] = 1401, + [1402] = 1402, + [1403] = 1403, + [1404] = 697, + [1405] = 1405, + [1406] = 1406, + [1407] = 1377, + [1408] = 1389, + [1409] = 1409, + [1410] = 1403, + [1411] = 1387, + [1412] = 1388, + [1413] = 1413, + [1414] = 1377, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, + [1419] = 1419, + [1420] = 1420, + [1421] = 1421, + [1422] = 1422, + [1423] = 1383, + [1424] = 1424, + [1425] = 1403, + [1426] = 1389, + [1427] = 1409, + [1428] = 1385, + [1429] = 1387, + [1430] = 1388, + [1431] = 1431, + [1432] = 1377, + [1433] = 1409, + [1434] = 1434, + [1435] = 1415, + [1436] = 1417, + [1437] = 1418, + [1438] = 1438, + [1439] = 1439, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, + [1445] = 1445, + [1446] = 1446, + [1447] = 1447, + [1448] = 1415, + [1449] = 1449, + [1450] = 1417, + [1451] = 1418, + [1452] = 1452, + [1453] = 1453, + [1454] = 1454, + [1455] = 1253, + [1456] = 1390, + [1457] = 1457, + [1458] = 1419, + [1459] = 1459, + [1460] = 1460, + [1461] = 1461, + [1462] = 1415, + [1463] = 1308, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, + [1468] = 1468, + [1469] = 1469, + [1470] = 695, + [1471] = 1376, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, + [1477] = 1477, + [1478] = 1478, + [1479] = 1342, + [1480] = 1480, + [1481] = 1417, + [1482] = 1218, + [1483] = 1418, + [1484] = 1484, + [1485] = 1389, + [1486] = 1486, + [1487] = 1353, + [1488] = 1359, + [1489] = 1383, + [1490] = 1403, + [1491] = 1409, + [1492] = 1492, + [1493] = 1453, + [1494] = 1457, + [1495] = 1495, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, + [1499] = 1460, + [1500] = 1500, + [1501] = 1501, + [1502] = 1217, + [1503] = 1503, + [1504] = 1496, + [1505] = 1473, + [1506] = 1443, + [1507] = 1507, + [1508] = 1508, + [1509] = 1509, + [1510] = 1510, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 313, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1442, + [1521] = 320, + [1522] = 1522, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 1526, + [1527] = 1527, + [1528] = 1528, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, + [1533] = 1533, + [1534] = 1534, + [1535] = 1535, + [1536] = 314, + [1537] = 1196, + [1538] = 317, + [1539] = 1539, + [1540] = 1486, + [1541] = 1541, + [1542] = 1542, + [1543] = 1511, + [1544] = 1544, + [1545] = 1421, + [1546] = 1513, + [1547] = 1547, + [1548] = 1548, + [1549] = 1510, + [1550] = 1550, + [1551] = 1551, + [1552] = 1548, + [1553] = 1553, + [1554] = 1541, + [1555] = 1555, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, + [1564] = 1564, + [1565] = 1550, + [1566] = 1566, + [1567] = 1510, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1557, + [1577] = 1577, + [1578] = 1512, + [1579] = 1579, + [1580] = 334, + [1581] = 1581, + [1582] = 1539, + [1583] = 1583, + [1584] = 1584, + [1585] = 1585, + [1586] = 1584, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1594, + [1595] = 1595, + [1596] = 1596, + [1597] = 1597, + [1598] = 1598, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1600, + [1603] = 1603, + [1604] = 1593, + [1605] = 1605, + [1606] = 1588, + [1607] = 1589, + [1608] = 1608, + [1609] = 1609, + [1610] = 1610, + [1611] = 1611, + [1612] = 1612, + [1613] = 1592, + [1614] = 1614, + [1615] = 1591, + [1616] = 1616, + [1617] = 1617, + [1618] = 1617, + [1619] = 1619, + [1620] = 1620, + [1621] = 1621, + [1622] = 1622, + [1623] = 1623, + [1624] = 1614, + [1625] = 1610, + [1626] = 1591, + [1627] = 1627, + [1628] = 1628, + [1629] = 1629, + [1630] = 1630, + [1631] = 1631, + [1632] = 1605, + [1633] = 1594, + [1634] = 1612, + [1635] = 1584, + [1636] = 1636, + [1637] = 1603, + [1638] = 1638, + [1639] = 1583, + [1640] = 1640, + [1641] = 1641, + [1642] = 1616, + [1643] = 1643, + [1644] = 1644, + [1645] = 1627, + [1646] = 1609, + [1647] = 1647, + [1648] = 1648, + [1649] = 1627, + [1650] = 1631, + [1651] = 1605, + [1652] = 1587, + [1653] = 1653, + [1654] = 1654, + [1655] = 1655, + [1656] = 1594, + [1657] = 1657, + [1658] = 1658, + [1659] = 1659, + [1660] = 1653, + [1661] = 1661, + [1662] = 1662, + [1663] = 1663, + [1664] = 1664, + [1665] = 1596, + [1666] = 1608, + [1667] = 1667, + [1668] = 1593, + [1669] = 1653, + [1670] = 1597, + [1671] = 1612, + [1672] = 1672, + [1673] = 1593, + [1674] = 1612, + [1675] = 1591, + [1676] = 1590, + [1677] = 1614, + [1678] = 1596, + [1679] = 1594, + [1680] = 1680, + [1681] = 1636, + [1682] = 1682, + [1683] = 1596, + [1684] = 1684, + [1685] = 1685, + [1686] = 1592, + [1687] = 1600, + [1688] = 1688, + [1689] = 1621, + [1690] = 1593, + [1691] = 1629, + [1692] = 1641, + [1693] = 1653, + [1694] = 1584, + [1695] = 1605, + [1696] = 1696, + [1697] = 1622, + [1698] = 1667, + [1699] = 1644, + [1700] = 1612, + [1701] = 1701, + [1702] = 1702, + [1703] = 1703, + [1704] = 1611, + [1705] = 1600, + [1706] = 1592, + [1707] = 1707, + [1708] = 1614, + [1709] = 1709, + [1710] = 1601, + [1711] = 1593, + [1712] = 1688, + [1713] = 1619, + [1714] = 1599, + [1715] = 1627, + [1716] = 1661, + [1717] = 1685, + [1718] = 1631, + [1719] = 1672, + [1720] = 1612, + [1721] = 1631, + [1722] = 1722, +}; -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 43052 - ? (c < 3718 - ? (c < 2730 - ? (c < 2042 - ? (c < 1015 - ? (c < 710 - ? (c < 181 - ? (c < '_' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 170 - ? (c >= 'a' && c <= 'z') - : c <= 170))) - : (c <= 181 || (c < 192 - ? (c < 186 - ? c == 183 - : c <= 186) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 891 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c < 886 - ? (c >= 768 && c <= 884) - : c <= 887))) - : (c <= 893 || (c < 908 - ? (c < 902 - ? c == 895 - : c <= 906) - : (c <= 908 || (c < 931 - ? (c >= 910 && c <= 929) - : c <= 1013))))))) - : (c <= 1153 || (c < 1519 - ? (c < 1425 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1155 && c <= 1159) - : c <= 1327) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))) - : (c <= 1469 || (c < 1476 - ? (c < 1473 - ? c == 1471 - : c <= 1474) - : (c <= 1477 || (c < 1488 - ? c == 1479 - : c <= 1514))))) - : (c <= 1522 || (c < 1770 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1552 && c <= 1562) - : c <= 1641) - : (c <= 1747 || (c < 1759 - ? (c >= 1749 && c <= 1756) - : c <= 1768))) - : (c <= 1788 || (c < 1869 - ? (c < 1808 - ? c == 1791 - : c <= 1866) - : (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 < 2763 - ? (c >= 2759 && c <= 2761) - : c <= 2765))) - : (c <= 2768 || (c < 2809 - ? (c < 2790 - ? (c >= 2784 && c <= 2787) - : c <= 2799) - : (c <= 2815 || (c < 2821 - ? (c >= 2817 && c <= 2819) - : c <= 2828))))) - : (c <= 2832 || (c < 2887 - ? (c < 2866 - ? (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864) - : (c <= 2867 || (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884))) - : (c <= 2888 || (c < 2908 - ? (c < 2901 - ? (c >= 2891 && c <= 2893) - : 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 < 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 < 4704 - ? (c < 4698 - ? c == 4696 - : c <= 4701) - : (c <= 4744 || (c < 4752 - ? (c >= 4746 && c <= 4749) - : 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 < 4969 - ? (c < 4957 - ? (c >= 4888 && c <= 4954) - : c <= 4959) - : (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 < 6528 - ? (c >= 6512 && c <= 6516) - : c <= 6571))) - : (c <= 6601 || (c < 6688 - ? (c < 6656 - ? (c >= 6608 && c <= 6618) - : c <= 6683) - : (c <= 6750 || (c < 6783 - ? (c >= 6752 && c <= 6780) - : c <= 6793))))) - : (c <= 6809 || (c < 7019 - ? (c < 6847 - ? (c < 6832 - ? c == 6823 - : 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 >= 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) - : c <= 8256) - : (c <= 8276 || (c < 8319 - ? c == 8305 - : c <= 8319))) - : (c <= 8348 || (c < 8421 - ? (c < 8417 - ? (c >= 8400 && c <= 8412) - : c <= 8417) - : (c <= 8432 || (c < 8455 - ? c == 8450 - : c <= 8455))))) - : (c <= 8467 || (c < 8490 - ? (c < 8484 - ? (c < 8472 - ? c == 8469 - : c <= 8477) - : (c <= 8484 || (c < 8488 - ? 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 < 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 < 11647 - ? (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631) - : (c <= 11670 || (c < 11688 - ? (c >= 11680 && c <= 11686) - : c <= 11694))))) - : (c <= 11702 || (c < 11744 - ? (c < 11720 - ? (c < 11712 - ? (c >= 11704 && c <= 11710) - : c <= 11718) - : (c <= 11726 || (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742))) - : (c <= 11775 || (c < 12337 - ? (c < 12321 - ? (c >= 12293 && c <= 12295) - : 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 < 43785 - ? (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782) - : (c <= 43790 || (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814))))))) - : (c <= 43822 || (c < 64275 - ? (c < 44032 - ? (c < 43888 - ? (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881) - : (c <= 44010 || (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025))) - : (c <= 55203 || (c < 63744 - ? (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291) - : (c <= 64109 || (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262))))) - : (c <= 64279 || (c < 64323 - ? (c < 64312 - ? (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310) - : (c <= 64316 || (c < 64320 - ? c == 64318 - : c <= 64321))) - : (c <= 64324 || (c < 64612 - ? (c < 64467 - ? (c >= 64326 && c <= 64433) - : 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 < 71296 - ? (c >= 71248 && c <= 71257) - : 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 < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 82944 - ? (c < 77824 - ? (c >= 74880 && c <= 75075) - : 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 < 93952 - ? (c < 93760 - ? (c >= 93053 && c <= 93071) - : c <= 93823) - : (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 < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993))) - : (c <= 119995 || (c < 120071 - ? (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069) - : (c <= 120074 || (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092))))) - : (c <= 120121 || (c < 120488 - ? (c < 120134 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c < 120146 - ? (c >= 120138 && c <= 120144) - : c <= 120485))) - : (c <= 120512 || (c < 120572 - ? (c < 120540 - ? (c >= 120514 && c <= 120538) - : 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 < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922))) - : (c <= 123180 || (c < 123214 - ? (c < 123200 - ? (c >= 123184 && c <= 123197) - : 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 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} +static const TSCharacterRange sym_identifier_character_set_1[] = { + {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, + {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, + {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, + {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x66e, 0x66f}, {0x671, 0x6d3}, + {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, + {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, + {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, + {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, + {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, + {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa72, 0xa74}, + {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, + {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, + {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, + {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xc05, 0xc0c}, + {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc80, 0xc80}, + {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, + {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, {0xd5f, 0xd61}, + {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xe01, 0xe30}, {0xe32, 0xe32}, + {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb2}, + {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, + {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, + {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, + {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, + {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, + {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, + {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, + {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, + {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, + {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, + {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, + {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, + {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, + {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, + {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, + {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, + {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, + {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, + {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, + {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, + {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, + {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, + {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, + {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xac00, 0xd7a3}, + {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, + {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, + {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, + {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xff9d}, {0xffa0, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, + {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, + {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, + {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, + {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, + {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, + {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, + {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, + {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, + {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, + {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, + {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, + {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, + {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, + {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, + {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, + {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, + {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, + {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, + {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, + {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, + {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, + {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, + {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, + {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, + {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, + {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, + {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, + {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, + {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, + {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, + {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, + {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, + {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, + {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, + {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, + {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, +}; + +static const TSCharacterRange sym_identifier_character_set_2[] = { + {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, + {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, + {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, + {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, + {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, + {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, + {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, + {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, + {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, + {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, + {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa66, 0xa75}, + {0xa81, 0xa83}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabc, 0xac5}, + {0xac7, 0xac9}, {0xacb, 0xacd}, {0xad0, 0xad0}, {0xae0, 0xae3}, {0xae6, 0xaef}, {0xaf9, 0xaff}, {0xb01, 0xb03}, {0xb05, 0xb0c}, + {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3c, 0xb44}, {0xb47, 0xb48}, {0xb4b, 0xb4d}, + {0xb55, 0xb57}, {0xb5c, 0xb5d}, {0xb5f, 0xb63}, {0xb66, 0xb6f}, {0xb71, 0xb71}, {0xb82, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, + {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbbe, 0xbc2}, + {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, + {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, + {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, + {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf3}, {0xd00, 0xd0c}, + {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, + {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, + {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, + {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xec8, 0xece}, + {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, + {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, + {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, + {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, + {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x135d, 0x135f}, {0x1369, 0x1371}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, + {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1715}, {0x171f, 0x1734}, + {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17d3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, + {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, + {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, + {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, + {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, + {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, + {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, + {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, + {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, + {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, + {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, + {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, + {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, + {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, + {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, + {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, + {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, + {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, + {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, + {0xab5c, 0xab69}, {0xab70, 0xabea}, {0xabec, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, + {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, + {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, + {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, + {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, {0xff65, 0xffbe}, {0xffc2, 0xffc7}, + {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, + {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, + {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, + {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, + {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, + {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, + {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, + {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, + {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, + {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, + {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, + {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, + {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, + {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, + {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, + {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, + {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, + {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, + {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, + {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, + {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, + {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, + {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, + {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, + {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, + {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, + {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, + {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, + {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, + {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, + {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, + {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, + {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, + {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, + {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, + {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, + {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, + {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, {0xe0100, 0xe01ef}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(51); - if (lookahead == '!') ADVANCE(21); - if (lookahead == '#') ADVANCE(124); - if (lookahead == '%') ADVANCE(75); - if (lookahead == '&') ADVANCE(77); - if (lookahead == '(') ADVANCE(54); - if (lookahead == ')') ADVANCE(55); - if (lookahead == '*') ADVANCE(57); - if (lookahead == '+') ADVANCE(65); - if (lookahead == ',') ADVANCE(56); - if (lookahead == '-') ADVANCE(64); - if (lookahead == '.') ADVANCE(53); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '0') ADVANCE(113); - if (lookahead == ':') ADVANCE(61); - if (lookahead == ';') ADVANCE(125); - if (lookahead == '<') ADVANCE(81); - if (lookahead == '=') ADVANCE(71); - if (lookahead == '>') ADVANCE(86); - if (lookahead == '@') ADVANCE(73); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') SKIP(46) - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(78); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '|') ADVANCE(62); - if (lookahead == '}') ADVANCE(69); - if (lookahead == '~') ADVANCE(80); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (eof) ADVANCE(52); + ADVANCE_MAP( + '!', 22, + '#', 141, + '%', 85, + '&', 89, + '(', 55, + ')', 56, + '*', 58, + '+', 71, + ',', 57, + '-', 69, + '.', 54, + '/', 82, + '0', 129, + ':', 123, + ';', 142, + '<', 95, + '=', 78, + '>', 101, + '@', 81, + '[', 72, + ); + if (lookahead == '\\') SKIP(47); + if (lookahead == ']') ADVANCE(73); + if (lookahead == '^') ADVANCE(91); + if (lookahead == '{') ADVANCE(118); + if (lookahead == '|') ADVANCE(66); + if (lookahead == '}') ADVANCE(75); + if (lookahead == '~') ADVANCE(94); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(49) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(123); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(50); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(140); END_STATE(); case 1: - if (lookahead == '\n') SKIP(14) + if (lookahead == '\n') SKIP(14); END_STATE(); case 2: - if (lookahead == '\n') SKIP(14) - if (lookahead == '\r') SKIP(1) + if (lookahead == '\n') SKIP(14); + if (lookahead == '\r') SKIP(1); END_STATE(); case 3: - if (lookahead == '\n') SKIP(16) + if (lookahead == '\n') SKIP(16); END_STATE(); case 4: - if (lookahead == '\n') SKIP(16) - if (lookahead == '\r') SKIP(3) + if (lookahead == '\n') SKIP(16); + if (lookahead == '\r') SKIP(3); END_STATE(); case 5: - if (lookahead == '\n') SKIP(19) + if (lookahead == '\n') SKIP(15); END_STATE(); case 6: - if (lookahead == '\n') SKIP(19) - if (lookahead == '\r') SKIP(5) + if (lookahead == '\n') SKIP(15); + if (lookahead == '\r') SKIP(5); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(105); + if (lookahead == '\n') SKIP(19); END_STATE(); case 8: - if (lookahead == '\n') SKIP(9) - if (lookahead == '#') ADVANCE(109); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == '{') ADVANCE(102); - if (lookahead == '}') ADVANCE(69); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(108); - if (lookahead != 0) ADVANCE(109); + if (lookahead == '\n') SKIP(19); + if (lookahead == '\r') SKIP(7); END_STATE(); case 9: - if (lookahead == '\n') SKIP(9) - if (lookahead == '#') ADVANCE(109); - if (lookahead == '\\') ADVANCE(107); - if (lookahead == '}') ADVANCE(69); - if (lookahead == '\t' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(108); - if (lookahead != 0 && - lookahead != '{') ADVANCE(109); + if (lookahead == '\n') ADVANCE(121); END_STATE(); case 10: - if (lookahead == '\n') SKIP(17) + if (lookahead == '\n') SKIP(11); + if (lookahead == '#') ADVANCE(126); + if (lookahead == '\\') ADVANCE(124); + if (lookahead == '{') ADVANCE(118); + if (lookahead == '}') ADVANCE(75); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(125); + if (lookahead != 0) ADVANCE(126); END_STATE(); case 11: - if (lookahead == '\n') SKIP(17) - if (lookahead == '\r') SKIP(10) + if (lookahead == '\n') SKIP(11); + if (lookahead == '#') ADVANCE(126); + if (lookahead == '\\') ADVANCE(124); + if (lookahead == '}') ADVANCE(75); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(125); + if (lookahead != 0 && + lookahead != '{') ADVANCE(126); END_STATE(); case 12: - if (lookahead == '\n') SKIP(15) + if (lookahead == '\n') SKIP(17); END_STATE(); case 13: - if (lookahead == '\n') SKIP(15) - if (lookahead == '\r') SKIP(12) + if (lookahead == '\n') SKIP(17); + if (lookahead == '\r') SKIP(12); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(21); - if (lookahead == '#') ADVANCE(124); - if (lookahead == '%') ADVANCE(75); - if (lookahead == '&') ADVANCE(77); - if (lookahead == '(') ADVANCE(54); - if (lookahead == ')') ADVANCE(55); - if (lookahead == '*') ADVANCE(57); - if (lookahead == '+') ADVANCE(65); - if (lookahead == ',') ADVANCE(56); - if (lookahead == '-') ADVANCE(63); - if (lookahead == '.') ADVANCE(53); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '0') ADVANCE(113); - if (lookahead == ':') ADVANCE(60); - if (lookahead == '<') ADVANCE(81); - if (lookahead == '=') ADVANCE(71); - if (lookahead == '>') ADVANCE(86); - if (lookahead == '@') ADVANCE(73); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') SKIP(2) - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(78); - if (lookahead == '{') ADVANCE(68); - if (lookahead == '|') ADVANCE(62); - if (lookahead == '}') ADVANCE(69); - if (lookahead == '~') ADVANCE(80); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + ADVANCE_MAP( + '!', 22, + '#', 141, + '%', 84, + '&', 88, + '(', 55, + ')', 56, + '*', 59, + '+', 70, + ',', 57, + '-', 67, + '.', 54, + '/', 83, + '0', 129, + ':', 123, + '<', 96, + '=', 78, + '>', 102, + '@', 80, + '[', 72, + ); + if (lookahead == '\\') SKIP(2); + if (lookahead == ']') ADVANCE(73); + if (lookahead == '^') ADVANCE(90); + if (lookahead == '{') ADVANCE(74); + if (lookahead == '|') ADVANCE(65); + if (lookahead == '}') ADVANCE(75); + if (lookahead == '~') ADVANCE(94); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(14) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(123); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(14); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(140); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(21); - if (lookahead == '#') ADVANCE(124); - if (lookahead == '%') ADVANCE(75); - if (lookahead == '&') ADVANCE(77); - if (lookahead == '(') ADVANCE(54); - if (lookahead == ')') ADVANCE(55); - if (lookahead == '*') ADVANCE(57); - if (lookahead == '+') ADVANCE(65); - if (lookahead == ',') ADVANCE(56); - if (lookahead == '-') ADVANCE(63); - if (lookahead == '.') ADVANCE(52); - if (lookahead == '/') ADVANCE(74); - if (lookahead == ':') ADVANCE(61); - if (lookahead == ';') ADVANCE(125); - if (lookahead == '<') ADVANCE(81); - if (lookahead == '=') ADVANCE(71); - if (lookahead == '>') ADVANCE(86); - if (lookahead == '@') ADVANCE(73); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') SKIP(13) - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(78); - if (lookahead == '|') ADVANCE(62); - if (lookahead == '}') ADVANCE(69); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + ADVANCE_MAP( + '!', 22, + '#', 141, + '%', 84, + '&', 88, + '(', 55, + ')', 56, + '*', 59, + '+', 70, + ',', 57, + '-', 67, + '.', 53, + '/', 83, + ':', 123, + '<', 96, + '=', 78, + '>', 102, + '@', 80, + '[', 72, + ); + if (lookahead == '\\') SKIP(6); + if (lookahead == ']') ADVANCE(73); + if (lookahead == '^') ADVANCE(90); + if (lookahead == '|') ADVANCE(65); + if (lookahead == '}') ADVANCE(75); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(15) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(123); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(15); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(140); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(21); - if (lookahead == '#') ADVANCE(124); - if (lookahead == '%') ADVANCE(75); - if (lookahead == '&') ADVANCE(77); - if (lookahead == '(') ADVANCE(54); - if (lookahead == ')') ADVANCE(55); - if (lookahead == '*') ADVANCE(57); - if (lookahead == '+') ADVANCE(65); - if (lookahead == ',') ADVANCE(56); - if (lookahead == '-') ADVANCE(63); - if (lookahead == '.') ADVANCE(52); - if (lookahead == '/') ADVANCE(74); - if (lookahead == ':') ADVANCE(60); - if (lookahead == ';') ADVANCE(125); - if (lookahead == '<') ADVANCE(81); - if (lookahead == '=') ADVANCE(71); - if (lookahead == '>') ADVANCE(86); - if (lookahead == '@') ADVANCE(73); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') SKIP(4) - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(78); - if (lookahead == '|') ADVANCE(62); - if (lookahead == '}') ADVANCE(69); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + ADVANCE_MAP( + '!', 21, + '#', 141, + '%', 85, + '&', 89, + '(', 55, + ')', 56, + '*', 58, + '+', 71, + ',', 57, + '-', 68, + '.', 53, + '/', 82, + ':', 64, + ';', 142, + '<', 95, + '=', 78, + '>', 101, + '@', 81, + '[', 72, + ); + if (lookahead == '\\') SKIP(4); + if (lookahead == ']') ADVANCE(73); + if (lookahead == '^') ADVANCE(91); + if (lookahead == '|') ADVANCE(66); + if (lookahead == '}') ADVANCE(75); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(16) - if (sym_identifier_character_set_1(lookahead)) ADVANCE(123); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(16); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(140); END_STATE(); case 17: - if (lookahead == '#') ADVANCE(124); - if (lookahead == '-') ADVANCE(22); - if (lookahead == ':') ADVANCE(60); - if (lookahead == '\\') SKIP(11) - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (lookahead == '#') ADVANCE(141); + if (lookahead == '-') ADVANCE(23); + if (lookahead == ':') ADVANCE(63); + if (lookahead == '\\') SKIP(13); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(17) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(17); END_STATE(); case 18: - if (lookahead == '#') ADVANCE(124); - if (lookahead == '\\') ADVANCE(106); - if (lookahead == '{') ADVANCE(103); - if (lookahead == '}') ADVANCE(28); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (lookahead == '#') ADVANCE(141); + if (lookahead == '\\') ADVANCE(122); + if (lookahead == '{') ADVANCE(119); + if (lookahead == '}') ADVANCE(29); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(19) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(19); END_STATE(); case 19: - if (lookahead == '#') ADVANCE(124); - if (lookahead == '\\') SKIP(6) - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (lookahead == '#') ADVANCE(141); + if (lookahead == '\\') SKIP(8); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(19) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(19); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(101); + if (lookahead == '.') ADVANCE(117); END_STATE(); case 21: - if (lookahead == '=') ADVANCE(84); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(110); + if (lookahead == '=') ADVANCE(99); END_STATE(); case 22: - if (lookahead == '>') ADVANCE(72); + if (lookahead == '=') ADVANCE(99); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(127); END_STATE(); case 23: - if (lookahead == '_') ADVANCE(30); - if (lookahead == '0' || - lookahead == '1') ADVANCE(115); + if (lookahead == '>') ADVANCE(79); END_STATE(); case 24: if (lookahead == '_') ADVANCE(31); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); + if (lookahead == '0' || + lookahead == '1') ADVANCE(132); END_STATE(); case 25: - if (lookahead == '_') ADVANCE(35); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + if (lookahead == '_') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(133); END_STATE(); case 26: - if (lookahead == '{') ADVANCE(44); + if (lookahead == '_') ADVANCE(36); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); END_STATE(); case 27: - if (lookahead == '}') ADVANCE(105); - if (lookahead != 0) ADVANCE(27); + if (lookahead == '{') ADVANCE(45); END_STATE(); case 28: - if (lookahead == '}') ADVANCE(104); + if (lookahead == '}') ADVANCE(121); + if (lookahead != 0) ADVANCE(28); END_STATE(); case 29: - if (lookahead == '+' || - lookahead == '-') ADVANCE(32); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(120); + if (lookahead == '}') ADVANCE(120); END_STATE(); case 30: - if (lookahead == '0' || - lookahead == '1') ADVANCE(115); + if (lookahead == '+' || + lookahead == '-') ADVANCE(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); case 31: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); + if (lookahead == '0' || + lookahead == '1') ADVANCE(132); END_STATE(); case 32: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(120); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(133); END_STATE(); case 33: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(105); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); case 34: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(33); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(121); END_STATE(); case 35: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34); END_STATE(); case 36: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); END_STATE(); case 37: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); END_STATE(); case 38: if (('0' <= lookahead && lookahead <= '9') || @@ -5110,472 +5316,536 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 44: - if (lookahead != 0 && - lookahead != '}') ADVANCE(27); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); END_STATE(); case 45: - if (eof) ADVANCE(51); - if (lookahead == '\n') SKIP(49) + if (lookahead != 0 && + lookahead != '}') ADVANCE(28); END_STATE(); case 46: - if (eof) ADVANCE(51); - if (lookahead == '\n') SKIP(49) - if (lookahead == '\r') SKIP(45) + if (eof) ADVANCE(52); + if (lookahead == '\n') SKIP(50); END_STATE(); case 47: - if (eof) ADVANCE(51); - if (lookahead == '\n') SKIP(50) + if (eof) ADVANCE(52); + if (lookahead == '\n') SKIP(50); + if (lookahead == '\r') SKIP(46); END_STATE(); case 48: - if (eof) ADVANCE(51); - if (lookahead == '\n') SKIP(50) - if (lookahead == '\r') SKIP(47) + if (eof) ADVANCE(52); + if (lookahead == '\n') SKIP(51); END_STATE(); case 49: - if (eof) ADVANCE(51); - if (lookahead == '!') ADVANCE(21); - if (lookahead == '#') ADVANCE(124); - if (lookahead == '%') ADVANCE(75); - if (lookahead == '&') ADVANCE(77); - if (lookahead == '(') ADVANCE(54); - if (lookahead == ')') ADVANCE(55); - if (lookahead == '*') ADVANCE(57); - if (lookahead == '+') ADVANCE(65); - if (lookahead == ',') ADVANCE(56); - if (lookahead == '-') ADVANCE(64); - if (lookahead == '.') ADVANCE(53); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '0') ADVANCE(113); - if (lookahead == ':') ADVANCE(61); - if (lookahead == ';') ADVANCE(125); - if (lookahead == '<') ADVANCE(81); - if (lookahead == '=') ADVANCE(71); - if (lookahead == '>') ADVANCE(86); - if (lookahead == '@') ADVANCE(73); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') SKIP(46) - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(78); - if (lookahead == '{') ADVANCE(68); - if (lookahead == '|') ADVANCE(62); - if (lookahead == '}') ADVANCE(69); - if (lookahead == '~') ADVANCE(80); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(49) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(123); + if (eof) ADVANCE(52); + if (lookahead == '\n') SKIP(51); + if (lookahead == '\r') SKIP(48); END_STATE(); case 50: - if (eof) ADVANCE(51); - if (lookahead == '!') ADVANCE(21); - if (lookahead == '#') ADVANCE(124); - if (lookahead == '%') ADVANCE(75); - if (lookahead == '&') ADVANCE(77); - if (lookahead == '(') ADVANCE(54); - if (lookahead == ')') ADVANCE(55); - if (lookahead == '*') ADVANCE(57); - if (lookahead == '+') ADVANCE(65); - if (lookahead == ',') ADVANCE(56); - if (lookahead == '-') ADVANCE(63); - if (lookahead == '.') ADVANCE(53); - if (lookahead == '/') ADVANCE(74); - if (lookahead == '0') ADVANCE(113); - if (lookahead == ':') ADVANCE(61); - if (lookahead == ';') ADVANCE(125); - if (lookahead == '<') ADVANCE(81); - if (lookahead == '=') ADVANCE(71); - if (lookahead == '>') ADVANCE(86); - if (lookahead == '@') ADVANCE(73); - if (lookahead == '[') ADVANCE(66); - if (lookahead == '\\') SKIP(48) - if (lookahead == ']') ADVANCE(67); - if (lookahead == '^') ADVANCE(78); - if (lookahead == '{') ADVANCE(68); - if (lookahead == '|') ADVANCE(62); - if (lookahead == '}') ADVANCE(69); - if (lookahead == '~') ADVANCE(80); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (eof) ADVANCE(52); + ADVANCE_MAP( + '!', 22, + '#', 141, + '%', 85, + '&', 89, + '(', 55, + ')', 56, + '*', 58, + '+', 71, + ',', 57, + '-', 69, + '.', 54, + '/', 82, + '0', 129, + ':', 123, + ';', 142, + '<', 95, + '=', 78, + '>', 101, + '@', 81, + '[', 72, + ); + if (lookahead == '\\') SKIP(47); + if (lookahead == ']') ADVANCE(73); + if (lookahead == '^') ADVANCE(91); + if (lookahead == '{') ADVANCE(74); + if (lookahead == '|') ADVANCE(66); + if (lookahead == '}') ADVANCE(75); + if (lookahead == '~') ADVANCE(94); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(50) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(112); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(123); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(50); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(140); END_STATE(); case 51: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(52); + ADVANCE_MAP( + '!', 21, + '#', 141, + '%', 85, + '&', 89, + '(', 55, + ')', 56, + '*', 58, + '+', 71, + ',', 57, + '-', 68, + '.', 54, + '/', 82, + '0', 129, + ':', 64, + ';', 142, + '<', 95, + '=', 78, + '>', 101, + '@', 81, + '[', 72, + ); + if (lookahead == '\\') SKIP(49); + if (lookahead == ']') ADVANCE(73); + if (lookahead == '^') ADVANCE(91); + if (lookahead == '{') ADVANCE(74); + if (lookahead == '|') ADVANCE(66); + if (lookahead == '}') ADVANCE(75); + if (lookahead == '~') ADVANCE(94); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(51); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(130); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(140); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 53: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(119); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(20); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 56: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 57: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(70); - if (lookahead == '=') ADVANCE(90); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 58: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(96); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(77); + if (lookahead == '=') ADVANCE(106); END_STATE(); case 59: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(76); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 61: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(59); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(112); END_STATE(); case 62: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(100); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(89); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(89); - if (lookahead == '>') ADVANCE(72); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(62); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(88); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(116); END_STATE(); case 67: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 68: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(105); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(105); + if (lookahead == '>') ADVANCE(79); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(95); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(83); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(104); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '=') ADVANCE(92); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 74: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(76); - if (lookahead == '=') ADVANCE(91); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(94); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 76: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '=') ADVANCE(93); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(111); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(99); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(98); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(97); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 80: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 81: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(79); - if (lookahead == '=') ADVANCE(82); - if (lookahead == '>') ADVANCE(87); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(108); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(87); + if (lookahead == '=') ADVANCE(107); END_STATE(); case 83: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(86); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(110); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(85); - if (lookahead == '>') ADVANCE(58); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 87: - ACCEPT_TOKEN(anon_sym_LT_GT); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '=') ADVANCE(109); END_STATE(); case 88: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 89: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(114); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 91: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(115); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_AT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(113); END_STATE(); case 94: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 95: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(93); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(103); END_STATE(); case 96: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(92); + if (lookahead == '=') ADVANCE(97); + if (lookahead == '>') ADVANCE(103); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 101: - ACCEPT_TOKEN(sym_ellipsis); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(100); + if (lookahead == '>') ADVANCE(61); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_LBRACE2); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(100); + if (lookahead == '>') ADVANCE(60); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_LBRACE2); - if (lookahead == '{') ADVANCE(104); + ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); case 104: - ACCEPT_TOKEN(sym__escape_interpolation); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 105: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 106: - ACCEPT_TOKEN(sym__not_escape_sequence); - if (lookahead == '\n') ADVANCE(105); - if (lookahead == '\r') ADVANCE(7); - if (lookahead == 'N') ADVANCE(26); - if (lookahead == 'U') ADVANCE(43); - if (lookahead == 'u') ADVANCE(39); - if (lookahead == 'x') ADVANCE(37); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '\\' || - lookahead == 'a' || - lookahead == 'b' || - lookahead == 'f' || - lookahead == 'n' || - lookahead == 'r' || - ('t' <= lookahead && lookahead <= 'v')) ADVANCE(105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 107: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_AT_EQ); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 113: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 117: + ACCEPT_TOKEN(sym_ellipsis); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_LBRACE2); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_LBRACE2); + if (lookahead == '{') ADVANCE(120); + END_STATE(); + case 120: + ACCEPT_TOKEN(sym__escape_interpolation); + END_STATE(); + case 121: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_BSLASH); + ADVANCE_MAP( + '\n', 121, + '\r', 9, + 'N', 27, + 'U', 44, + 'u', 40, + 'x', 38, + '"', 121, + '\'', 121, + '\\', 121, + 'a', 121, + 'b', 121, + 'f', 121, + 'n', 121, + 'r', 121, + 't', 121, + 'v', 121, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(35); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_COLON2); + END_STATE(); + case 124: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == '\r') ADVANCE(109); + if (lookahead == '\r') ADVANCE(126); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(109); + lookahead != '}') ADVANCE(126); END_STATE(); - case 108: + case 125: ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == '#') ADVANCE(109); - if (lookahead == '\\') ADVANCE(107); + if (lookahead == '#') ADVANCE(126); + if (lookahead == '\\') ADVANCE(124); if (lookahead == '\t' || - lookahead == '\f' || - lookahead == '\r' || + (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) ADVANCE(108); + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(125); if (lookahead != 0 && - lookahead != '\n' && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '{' && - lookahead != '}') ADVANCE(109); + lookahead != '}') ADVANCE(126); END_STATE(); - case 109: + case 126: ACCEPT_TOKEN(aux_sym_format_specifier_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '{' && - lookahead != '}') ADVANCE(109); + lookahead != '}') ADVANCE(126); END_STATE(); - case 110: + case 127: ACCEPT_TOKEN(sym_type_conversion); END_STATE(); - case 111: + case 128: ACCEPT_TOKEN(sym_integer); END_STATE(); - case 112: + case 129: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(121); - if (lookahead == '_') ADVANCE(114); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(29); - if (lookahead == 'J' || - lookahead == 'L' || - lookahead == 'j' || - lookahead == 'l') ADVANCE(111); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + ADVANCE_MAP( + '.', 138, + '_', 131, + 'B', 24, + 'b', 24, + 'E', 30, + 'e', 30, + 'O', 25, + 'o', 25, + 'X', 26, + 'x', 26, + 'J', 128, + 'L', 128, + 'j', 128, + 'l', 128, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); - case 113: + case 130: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(121); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(23); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(24); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(25); - if (lookahead == '_') ADVANCE(114); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(29); - if (lookahead == 'J' || - lookahead == 'L' || - lookahead == 'j' || - lookahead == 'l') ADVANCE(111); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + ADVANCE_MAP( + '.', 138, + '_', 131, + 'E', 30, + 'e', 30, + 'J', 128, + 'L', 128, + 'j', 128, + 'l', 128, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); - case 114: + case 131: ACCEPT_TOKEN(sym_integer); - if (lookahead == '.') ADVANCE(121); + if (lookahead == '.') ADVANCE(138); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(29); + lookahead == 'e') ADVANCE(30); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(111); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); + lookahead == 'l') ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(130); END_STATE(); - case 115: + case 132: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(30); + if (lookahead == '_') ADVANCE(31); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(111); + lookahead == 'l') ADVANCE(128); if (lookahead == '0' || - lookahead == '1') ADVANCE(115); + lookahead == '1') ADVANCE(132); END_STATE(); - case 116: + case 133: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(31); + if (lookahead == '_') ADVANCE(32); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(111); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(116); + lookahead == 'l') ADVANCE(128); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(133); END_STATE(); - case 117: + case 134: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(35); + if (lookahead == '_') ADVANCE(36); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(111); + lookahead == 'l') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); END_STATE(); - case 118: + case 135: ACCEPT_TOKEN(sym_float); END_STATE(); - case 119: + case 136: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(121); + if (lookahead == '_') ADVANCE(138); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(29); + lookahead == 'e') ADVANCE(30); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(119); + lookahead == 'l') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); END_STATE(); - case 120: + case 137: ACCEPT_TOKEN(sym_float); - if (lookahead == '_') ADVANCE(122); + if (lookahead == '_') ADVANCE(139); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(120); + lookahead == 'l') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); - case 121: + case 138: ACCEPT_TOKEN(sym_float); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(29); + lookahead == 'e') ADVANCE(30); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(119); + lookahead == 'l') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(136); END_STATE(); - case 122: + case 139: ACCEPT_TOKEN(sym_float); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || - lookahead == 'l') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(120); + lookahead == 'l') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(137); END_STATE(); - case 123: + case 140: ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(123); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(140); END_STATE(); - case 124: + case 141: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(124); + lookahead != '\n') ADVANCE(141); END_STATE(); - case 125: - ACCEPT_TOKEN(sym__semicolon); + case 142: + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); default: return false; @@ -5590,7 +5860,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'F') ADVANCE(1); if (lookahead == 'N') ADVANCE(2); if (lookahead == 'T') ADVANCE(3); - if (lookahead == '\\') SKIP(4) + if (lookahead == '\\') SKIP(4); if (lookahead == '_') ADVANCE(5); if (lookahead == 'a') ADVANCE(6); if (lookahead == 'b') ADVANCE(7); @@ -5609,14 +5879,11 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(20); if (lookahead == 'w') ADVANCE(21); if (lookahead == 'y') ADVANCE(22); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\f' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == 8203 || - lookahead == 8288 || - lookahead == 65279) SKIP(0) + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(0); END_STATE(); case 1: if (lookahead == 'a') ADVANCE(23); @@ -5628,8 +5895,8 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(25); END_STATE(); case 4: - if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(26) + if (lookahead == '\n') SKIP(0); + if (lookahead == '\r') SKIP(26); END_STATE(); case 5: ACCEPT_TOKEN(sym_match_wildcard_pattern); @@ -5710,7 +5977,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(61); END_STATE(); case 26: - if (lookahead == '\n') SKIP(0) + if (lookahead == '\n') SKIP(0); END_STATE(); case 27: if (lookahead == 'f') ADVANCE(62); @@ -6136,817 +6403,817 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 50, .external_lex_state = 2}, - [2] = {.lex_state = 50, .external_lex_state = 3}, - [3] = {.lex_state = 50, .external_lex_state = 3}, - [4] = {.lex_state = 50, .external_lex_state = 3}, - [5] = {.lex_state = 50, .external_lex_state = 3}, - [6] = {.lex_state = 50, .external_lex_state = 3}, - [7] = {.lex_state = 50, .external_lex_state = 3}, - [8] = {.lex_state = 50, .external_lex_state = 3}, - [9] = {.lex_state = 50, .external_lex_state = 3}, - [10] = {.lex_state = 50, .external_lex_state = 3}, - [11] = {.lex_state = 50, .external_lex_state = 3}, - [12] = {.lex_state = 50, .external_lex_state = 3}, - [13] = {.lex_state = 50, .external_lex_state = 3}, - [14] = {.lex_state = 50, .external_lex_state = 3}, - [15] = {.lex_state = 50, .external_lex_state = 3}, - [16] = {.lex_state = 50, .external_lex_state = 3}, - [17] = {.lex_state = 50, .external_lex_state = 3}, - [18] = {.lex_state = 50, .external_lex_state = 3}, - [19] = {.lex_state = 50, .external_lex_state = 3}, - [20] = {.lex_state = 50, .external_lex_state = 3}, - [21] = {.lex_state = 50, .external_lex_state = 3}, - [22] = {.lex_state = 50, .external_lex_state = 3}, - [23] = {.lex_state = 50, .external_lex_state = 3}, - [24] = {.lex_state = 50, .external_lex_state = 3}, - [25] = {.lex_state = 50, .external_lex_state = 3}, - [26] = {.lex_state = 50, .external_lex_state = 3}, - [27] = {.lex_state = 50, .external_lex_state = 3}, - [28] = {.lex_state = 50, .external_lex_state = 3}, - [29] = {.lex_state = 50, .external_lex_state = 3}, - [30] = {.lex_state = 50, .external_lex_state = 3}, - [31] = {.lex_state = 50, .external_lex_state = 3}, - [32] = {.lex_state = 50, .external_lex_state = 3}, - [33] = {.lex_state = 50, .external_lex_state = 3}, - [34] = {.lex_state = 50, .external_lex_state = 3}, - [35] = {.lex_state = 50, .external_lex_state = 3}, - [36] = {.lex_state = 50, .external_lex_state = 3}, - [37] = {.lex_state = 50, .external_lex_state = 3}, - [38] = {.lex_state = 50, .external_lex_state = 3}, - [39] = {.lex_state = 50, .external_lex_state = 3}, - [40] = {.lex_state = 50, .external_lex_state = 3}, - [41] = {.lex_state = 50, .external_lex_state = 3}, - [42] = {.lex_state = 50, .external_lex_state = 3}, - [43] = {.lex_state = 50, .external_lex_state = 3}, - [44] = {.lex_state = 50, .external_lex_state = 3}, - [45] = {.lex_state = 50, .external_lex_state = 3}, - [46] = {.lex_state = 50, .external_lex_state = 3}, - [47] = {.lex_state = 50, .external_lex_state = 3}, - [48] = {.lex_state = 50, .external_lex_state = 3}, - [49] = {.lex_state = 50, .external_lex_state = 3}, - [50] = {.lex_state = 50, .external_lex_state = 3}, - [51] = {.lex_state = 50, .external_lex_state = 3}, - [52] = {.lex_state = 50, .external_lex_state = 3}, - [53] = {.lex_state = 50, .external_lex_state = 3}, - [54] = {.lex_state = 50, .external_lex_state = 3}, - [55] = {.lex_state = 50, .external_lex_state = 3}, - [56] = {.lex_state = 50, .external_lex_state = 3}, - [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 = 3}, - [62] = {.lex_state = 50, .external_lex_state = 3}, - [63] = {.lex_state = 50, .external_lex_state = 3}, - [64] = {.lex_state = 50, .external_lex_state = 2}, - [65] = {.lex_state = 50, .external_lex_state = 2}, - [66] = {.lex_state = 50, .external_lex_state = 4}, - [67] = {.lex_state = 50, .external_lex_state = 4}, - [68] = {.lex_state = 50, .external_lex_state = 5}, - [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 = 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}, - [76] = {.lex_state = 50, .external_lex_state = 5}, - [77] = {.lex_state = 50, .external_lex_state = 5}, - [78] = {.lex_state = 50, .external_lex_state = 5}, - [79] = {.lex_state = 50, .external_lex_state = 5}, - [80] = {.lex_state = 50, .external_lex_state = 5}, - [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}, - [85] = {.lex_state = 50, .external_lex_state = 5}, - [86] = {.lex_state = 50, .external_lex_state = 5}, - [87] = {.lex_state = 50, .external_lex_state = 5}, - [88] = {.lex_state = 50, .external_lex_state = 5}, - [89] = {.lex_state = 50, .external_lex_state = 5}, - [90] = {.lex_state = 50, .external_lex_state = 5}, - [91] = {.lex_state = 50, .external_lex_state = 5}, - [92] = {.lex_state = 50, .external_lex_state = 5}, - [93] = {.lex_state = 50, .external_lex_state = 5}, - [94] = {.lex_state = 50, .external_lex_state = 5}, - [95] = {.lex_state = 50, .external_lex_state = 5}, - [96] = {.lex_state = 50, .external_lex_state = 5}, - [97] = {.lex_state = 50, .external_lex_state = 5}, - [98] = {.lex_state = 50, .external_lex_state = 5}, - [99] = {.lex_state = 50, .external_lex_state = 5}, - [100] = {.lex_state = 50, .external_lex_state = 5}, - [101] = {.lex_state = 50, .external_lex_state = 5}, - [102] = {.lex_state = 50, .external_lex_state = 5}, - [103] = {.lex_state = 50, .external_lex_state = 5}, - [104] = {.lex_state = 50, .external_lex_state = 5}, - [105] = {.lex_state = 50, .external_lex_state = 5}, - [106] = {.lex_state = 50, .external_lex_state = 5}, - [107] = {.lex_state = 50, .external_lex_state = 5}, - [108] = {.lex_state = 50, .external_lex_state = 5}, - [109] = {.lex_state = 50, .external_lex_state = 5}, - [110] = {.lex_state = 50, .external_lex_state = 5}, - [111] = {.lex_state = 50, .external_lex_state = 4}, - [112] = {.lex_state = 50, .external_lex_state = 5}, - [113] = {.lex_state = 50, .external_lex_state = 5}, - [114] = {.lex_state = 50, .external_lex_state = 5}, - [115] = {.lex_state = 50, .external_lex_state = 5}, - [116] = {.lex_state = 50, .external_lex_state = 5}, - [117] = {.lex_state = 50, .external_lex_state = 5}, - [118] = {.lex_state = 50, .external_lex_state = 5}, - [119] = {.lex_state = 50, .external_lex_state = 5}, - [120] = {.lex_state = 50, .external_lex_state = 5}, - [121] = {.lex_state = 50, .external_lex_state = 5}, - [122] = {.lex_state = 50, .external_lex_state = 5}, - [123] = {.lex_state = 50, .external_lex_state = 5}, - [124] = {.lex_state = 50, .external_lex_state = 5}, - [125] = {.lex_state = 50, .external_lex_state = 5}, - [126] = {.lex_state = 50, .external_lex_state = 5}, - [127] = {.lex_state = 50, .external_lex_state = 4}, - [128] = {.lex_state = 50, .external_lex_state = 4}, - [129] = {.lex_state = 50, .external_lex_state = 4}, - [130] = {.lex_state = 50, .external_lex_state = 4}, - [131] = {.lex_state = 50, .external_lex_state = 4}, - [132] = {.lex_state = 50, .external_lex_state = 4}, - [133] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 14, .external_lex_state = 2}, - [138] = {.lex_state = 50, .external_lex_state = 2}, - [139] = {.lex_state = 14, .external_lex_state = 2}, - [140] = {.lex_state = 50, .external_lex_state = 4}, + [1] = {.lex_state = 51, .external_lex_state = 2}, + [2] = {.lex_state = 51, .external_lex_state = 3}, + [3] = {.lex_state = 51, .external_lex_state = 3}, + [4] = {.lex_state = 51, .external_lex_state = 3}, + [5] = {.lex_state = 51, .external_lex_state = 3}, + [6] = {.lex_state = 51, .external_lex_state = 3}, + [7] = {.lex_state = 51, .external_lex_state = 3}, + [8] = {.lex_state = 51, .external_lex_state = 3}, + [9] = {.lex_state = 51, .external_lex_state = 3}, + [10] = {.lex_state = 51, .external_lex_state = 3}, + [11] = {.lex_state = 51, .external_lex_state = 3}, + [12] = {.lex_state = 51, .external_lex_state = 3}, + [13] = {.lex_state = 51, .external_lex_state = 3}, + [14] = {.lex_state = 51, .external_lex_state = 3}, + [15] = {.lex_state = 51, .external_lex_state = 3}, + [16] = {.lex_state = 51, .external_lex_state = 3}, + [17] = {.lex_state = 51, .external_lex_state = 3}, + [18] = {.lex_state = 51, .external_lex_state = 3}, + [19] = {.lex_state = 51, .external_lex_state = 3}, + [20] = {.lex_state = 51, .external_lex_state = 3}, + [21] = {.lex_state = 51, .external_lex_state = 3}, + [22] = {.lex_state = 51, .external_lex_state = 3}, + [23] = {.lex_state = 51, .external_lex_state = 3}, + [24] = {.lex_state = 51, .external_lex_state = 3}, + [25] = {.lex_state = 51, .external_lex_state = 3}, + [26] = {.lex_state = 51, .external_lex_state = 3}, + [27] = {.lex_state = 51, .external_lex_state = 3}, + [28] = {.lex_state = 51, .external_lex_state = 3}, + [29] = {.lex_state = 51, .external_lex_state = 3}, + [30] = {.lex_state = 51, .external_lex_state = 3}, + [31] = {.lex_state = 51, .external_lex_state = 3}, + [32] = {.lex_state = 51, .external_lex_state = 3}, + [33] = {.lex_state = 51, .external_lex_state = 3}, + [34] = {.lex_state = 51, .external_lex_state = 3}, + [35] = {.lex_state = 51, .external_lex_state = 3}, + [36] = {.lex_state = 51, .external_lex_state = 3}, + [37] = {.lex_state = 51, .external_lex_state = 3}, + [38] = {.lex_state = 51, .external_lex_state = 3}, + [39] = {.lex_state = 51, .external_lex_state = 3}, + [40] = {.lex_state = 51, .external_lex_state = 3}, + [41] = {.lex_state = 51, .external_lex_state = 3}, + [42] = {.lex_state = 51, .external_lex_state = 3}, + [43] = {.lex_state = 51, .external_lex_state = 3}, + [44] = {.lex_state = 51, .external_lex_state = 3}, + [45] = {.lex_state = 51, .external_lex_state = 3}, + [46] = {.lex_state = 51, .external_lex_state = 3}, + [47] = {.lex_state = 51, .external_lex_state = 3}, + [48] = {.lex_state = 51, .external_lex_state = 3}, + [49] = {.lex_state = 51, .external_lex_state = 3}, + [50] = {.lex_state = 51, .external_lex_state = 3}, + [51] = {.lex_state = 51, .external_lex_state = 3}, + [52] = {.lex_state = 51, .external_lex_state = 3}, + [53] = {.lex_state = 51, .external_lex_state = 3}, + [54] = {.lex_state = 51, .external_lex_state = 3}, + [55] = {.lex_state = 51, .external_lex_state = 3}, + [56] = {.lex_state = 51, .external_lex_state = 3}, + [57] = {.lex_state = 51, .external_lex_state = 3}, + [58] = {.lex_state = 51, .external_lex_state = 3}, + [59] = {.lex_state = 51, .external_lex_state = 3}, + [60] = {.lex_state = 51, .external_lex_state = 2}, + [61] = {.lex_state = 51, .external_lex_state = 3}, + [62] = {.lex_state = 51, .external_lex_state = 2}, + [63] = {.lex_state = 51, .external_lex_state = 3}, + [64] = {.lex_state = 51, .external_lex_state = 3}, + [65] = {.lex_state = 51, .external_lex_state = 3}, + [66] = {.lex_state = 51, .external_lex_state = 4}, + [67] = {.lex_state = 51, .external_lex_state = 4}, + [68] = {.lex_state = 51, .external_lex_state = 4}, + [69] = {.lex_state = 51, .external_lex_state = 5}, + [70] = {.lex_state = 51, .external_lex_state = 5}, + [71] = {.lex_state = 51, .external_lex_state = 5}, + [72] = {.lex_state = 51, .external_lex_state = 5}, + [73] = {.lex_state = 51, .external_lex_state = 5}, + [74] = {.lex_state = 51, .external_lex_state = 5}, + [75] = {.lex_state = 51, .external_lex_state = 5}, + [76] = {.lex_state = 51, .external_lex_state = 5}, + [77] = {.lex_state = 51, .external_lex_state = 5}, + [78] = {.lex_state = 51, .external_lex_state = 5}, + [79] = {.lex_state = 51, .external_lex_state = 5}, + [80] = {.lex_state = 51, .external_lex_state = 5}, + [81] = {.lex_state = 51, .external_lex_state = 5}, + [82] = {.lex_state = 51, .external_lex_state = 5}, + [83] = {.lex_state = 51, .external_lex_state = 5}, + [84] = {.lex_state = 51, .external_lex_state = 5}, + [85] = {.lex_state = 51, .external_lex_state = 5}, + [86] = {.lex_state = 51, .external_lex_state = 5}, + [87] = {.lex_state = 51, .external_lex_state = 5}, + [88] = {.lex_state = 51, .external_lex_state = 5}, + [89] = {.lex_state = 51, .external_lex_state = 5}, + [90] = {.lex_state = 51, .external_lex_state = 5}, + [91] = {.lex_state = 51, .external_lex_state = 5}, + [92] = {.lex_state = 51, .external_lex_state = 5}, + [93] = {.lex_state = 51, .external_lex_state = 5}, + [94] = {.lex_state = 51, .external_lex_state = 5}, + [95] = {.lex_state = 51, .external_lex_state = 5}, + [96] = {.lex_state = 51, .external_lex_state = 5}, + [97] = {.lex_state = 51, .external_lex_state = 5}, + [98] = {.lex_state = 51, .external_lex_state = 5}, + [99] = {.lex_state = 51, .external_lex_state = 5}, + [100] = {.lex_state = 51, .external_lex_state = 5}, + [101] = {.lex_state = 51, .external_lex_state = 5}, + [102] = {.lex_state = 51, .external_lex_state = 5}, + [103] = {.lex_state = 51, .external_lex_state = 5}, + [104] = {.lex_state = 51, .external_lex_state = 5}, + [105] = {.lex_state = 51, .external_lex_state = 5}, + [106] = {.lex_state = 51, .external_lex_state = 5}, + [107] = {.lex_state = 51, .external_lex_state = 5}, + [108] = {.lex_state = 51, .external_lex_state = 5}, + [109] = {.lex_state = 51, .external_lex_state = 5}, + [110] = {.lex_state = 51, .external_lex_state = 5}, + [111] = {.lex_state = 51, .external_lex_state = 5}, + [112] = {.lex_state = 51, .external_lex_state = 5}, + [113] = {.lex_state = 51, .external_lex_state = 5}, + [114] = {.lex_state = 51, .external_lex_state = 5}, + [115] = {.lex_state = 51, .external_lex_state = 5}, + [116] = {.lex_state = 51, .external_lex_state = 5}, + [117] = {.lex_state = 51, .external_lex_state = 5}, + [118] = {.lex_state = 51, .external_lex_state = 5}, + [119] = {.lex_state = 51, .external_lex_state = 5}, + [120] = {.lex_state = 51, .external_lex_state = 5}, + [121] = {.lex_state = 51, .external_lex_state = 5}, + [122] = {.lex_state = 51, .external_lex_state = 5}, + [123] = {.lex_state = 51, .external_lex_state = 5}, + [124] = {.lex_state = 51, .external_lex_state = 5}, + [125] = {.lex_state = 51, .external_lex_state = 5}, + [126] = {.lex_state = 51, .external_lex_state = 5}, + [127] = {.lex_state = 51, .external_lex_state = 4}, + [128] = {.lex_state = 51, .external_lex_state = 4}, + [129] = {.lex_state = 51, .external_lex_state = 4}, + [130] = {.lex_state = 51, .external_lex_state = 4}, + [131] = {.lex_state = 51, .external_lex_state = 4}, + [132] = {.lex_state = 51, .external_lex_state = 4}, + [133] = {.lex_state = 51, .external_lex_state = 2}, + [134] = {.lex_state = 51, .external_lex_state = 4}, + [135] = {.lex_state = 51, .external_lex_state = 2}, + [136] = {.lex_state = 51, .external_lex_state = 2}, + [137] = {.lex_state = 51, .external_lex_state = 2}, + [138] = {.lex_state = 51, .external_lex_state = 2}, + [139] = {.lex_state = 51, .external_lex_state = 2}, + [140] = {.lex_state = 51, .external_lex_state = 4}, [141] = {.lex_state = 14, .external_lex_state = 2}, - [142] = {.lex_state = 14, .external_lex_state = 2}, - [143] = {.lex_state = 50, .external_lex_state = 2}, - [144] = {.lex_state = 50, .external_lex_state = 2}, - [145] = {.lex_state = 50, .external_lex_state = 4}, - [146] = {.lex_state = 50, .external_lex_state = 2}, - [147] = {.lex_state = 14, .external_lex_state = 2}, - [148] = {.lex_state = 50, .external_lex_state = 2}, - [149] = {.lex_state = 50, .external_lex_state = 2}, - [150] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 50, .external_lex_state = 2}, - [156] = {.lex_state = 50, .external_lex_state = 2}, - [157] = {.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}, - [161] = {.lex_state = 50, .external_lex_state = 2}, - [162] = {.lex_state = 14, .external_lex_state = 2}, - [163] = {.lex_state = 14, .external_lex_state = 2}, - [164] = {.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 = 2}, - [169] = {.lex_state = 50, .external_lex_state = 2}, - [170] = {.lex_state = 50, .external_lex_state = 2}, - [171] = {.lex_state = 50, .external_lex_state = 2}, - [172] = {.lex_state = 50, .external_lex_state = 2}, - [173] = {.lex_state = 50, .external_lex_state = 2}, - [174] = {.lex_state = 50, .external_lex_state = 2}, - [175] = {.lex_state = 50, .external_lex_state = 2}, - [176] = {.lex_state = 50, .external_lex_state = 2}, - [177] = {.lex_state = 50, .external_lex_state = 4}, - [178] = {.lex_state = 50, .external_lex_state = 4}, - [179] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 2}, - [185] = {.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 = 4}, - [189] = {.lex_state = 50, .external_lex_state = 2}, - [190] = {.lex_state = 50, .external_lex_state = 4}, - [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 = 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}, - [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 = 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}, - [207] = {.lex_state = 50, .external_lex_state = 2}, - [208] = {.lex_state = 50, .external_lex_state = 2}, - [209] = {.lex_state = 50, .external_lex_state = 2}, - [210] = {.lex_state = 50, .external_lex_state = 4}, - [211] = {.lex_state = 50, .external_lex_state = 2}, - [212] = {.lex_state = 50, .external_lex_state = 2}, - [213] = {.lex_state = 14, .external_lex_state = 2}, - [214] = {.lex_state = 14, .external_lex_state = 2}, - [215] = {.lex_state = 14, .external_lex_state = 2}, - [216] = {.lex_state = 14, .external_lex_state = 2}, - [217] = {.lex_state = 50, .external_lex_state = 2}, - [218] = {.lex_state = 14, .external_lex_state = 2}, - [219] = {.lex_state = 50, .external_lex_state = 2}, - [220] = {.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 = 14, .external_lex_state = 2}, - [227] = {.lex_state = 50, .external_lex_state = 2}, - [228] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 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 = 50, .external_lex_state = 2}, - [240] = {.lex_state = 50, .external_lex_state = 2}, - [241] = {.lex_state = 50, .external_lex_state = 2}, - [242] = {.lex_state = 50, .external_lex_state = 2}, - [243] = {.lex_state = 14, .external_lex_state = 2}, - [244] = {.lex_state = 16}, - [245] = {.lex_state = 16}, - [246] = {.lex_state = 14, .external_lex_state = 2}, - [247] = {.lex_state = 50, .external_lex_state = 2}, - [248] = {.lex_state = 50, .external_lex_state = 2}, - [249] = {.lex_state = 50, .external_lex_state = 2}, - [250] = {.lex_state = 50, .external_lex_state = 3}, - [251] = {.lex_state = 50, .external_lex_state = 2}, - [252] = {.lex_state = 50, .external_lex_state = 3}, - [253] = {.lex_state = 50, .external_lex_state = 2}, - [254] = {.lex_state = 50, .external_lex_state = 2}, - [255] = {.lex_state = 50, .external_lex_state = 3}, - [256] = {.lex_state = 50, .external_lex_state = 2}, - [257] = {.lex_state = 50, .external_lex_state = 3}, - [258] = {.lex_state = 50, .external_lex_state = 2}, - [259] = {.lex_state = 50, .external_lex_state = 2}, - [260] = {.lex_state = 50, .external_lex_state = 2}, - [261] = {.lex_state = 50, .external_lex_state = 2}, - [262] = {.lex_state = 14, .external_lex_state = 2}, - [263] = {.lex_state = 14, .external_lex_state = 2}, - [264] = {.lex_state = 50, .external_lex_state = 2}, - [265] = {.lex_state = 50, .external_lex_state = 4}, - [266] = {.lex_state = 50, .external_lex_state = 2}, - [267] = {.lex_state = 14, .external_lex_state = 2}, - [268] = {.lex_state = 50, .external_lex_state = 2}, - [269] = {.lex_state = 50, .external_lex_state = 2}, - [270] = {.lex_state = 50, .external_lex_state = 2}, - [271] = {.lex_state = 50, .external_lex_state = 4}, - [272] = {.lex_state = 50, .external_lex_state = 4}, - [273] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 14, .external_lex_state = 2}, - [278] = {.lex_state = 50, .external_lex_state = 2}, - [279] = {.lex_state = 50, .external_lex_state = 2}, - [280] = {.lex_state = 50, .external_lex_state = 2}, - [281] = {.lex_state = 50, .external_lex_state = 2}, - [282] = {.lex_state = 50, .external_lex_state = 2}, - [283] = {.lex_state = 50, .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 = 4}, - [287] = {.lex_state = 50, .external_lex_state = 2}, - [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}, - [292] = {.lex_state = 50, .external_lex_state = 3}, - [293] = {.lex_state = 50, .external_lex_state = 3}, - [294] = {.lex_state = 50, .external_lex_state = 2}, - [295] = {.lex_state = 50, .external_lex_state = 2}, - [296] = {.lex_state = 50, .external_lex_state = 3}, - [297] = {.lex_state = 50, .external_lex_state = 2}, - [298] = {.lex_state = 15, .external_lex_state = 6}, - [299] = {.lex_state = 15, .external_lex_state = 6}, - [300] = {.lex_state = 50, .external_lex_state = 3}, - [301] = {.lex_state = 50, .external_lex_state = 3}, - [302] = {.lex_state = 50, .external_lex_state = 2}, - [303] = {.lex_state = 50, .external_lex_state = 2}, - [304] = {.lex_state = 50, .external_lex_state = 3}, - [305] = {.lex_state = 50, .external_lex_state = 2}, - [306] = {.lex_state = 50, .external_lex_state = 3}, - [307] = {.lex_state = 50, .external_lex_state = 3}, - [308] = {.lex_state = 50, .external_lex_state = 2}, - [309] = {.lex_state = 50, .external_lex_state = 2}, - [310] = {.lex_state = 50, .external_lex_state = 3}, - [311] = {.lex_state = 50, .external_lex_state = 2}, - [312] = {.lex_state = 50, .external_lex_state = 3}, - [313] = {.lex_state = 50, .external_lex_state = 3}, - [314] = {.lex_state = 50, .external_lex_state = 2}, - [315] = {.lex_state = 50, .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}, - [323] = {.lex_state = 50, .external_lex_state = 2}, - [324] = {.lex_state = 50, .external_lex_state = 2}, - [325] = {.lex_state = 50, .external_lex_state = 2}, - [326] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 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}, - [348] = {.lex_state = 50, .external_lex_state = 2}, - [349] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 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}, - [358] = {.lex_state = 50, .external_lex_state = 2}, - [359] = {.lex_state = 50, .external_lex_state = 2}, - [360] = {.lex_state = 50, .external_lex_state = 2}, - [361] = {.lex_state = 50, .external_lex_state = 2}, - [362] = {.lex_state = 50, .external_lex_state = 2}, - [363] = {.lex_state = 50, .external_lex_state = 2}, - [364] = {.lex_state = 50, .external_lex_state = 2}, - [365] = {.lex_state = 50, .external_lex_state = 2}, - [366] = {.lex_state = 50, .external_lex_state = 2}, - [367] = {.lex_state = 50, .external_lex_state = 2}, - [368] = {.lex_state = 50, .external_lex_state = 2}, - [369] = {.lex_state = 50, .external_lex_state = 3}, - [370] = {.lex_state = 50, .external_lex_state = 2}, - [371] = {.lex_state = 50, .external_lex_state = 2}, - [372] = {.lex_state = 50, .external_lex_state = 2}, - [373] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 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 = 15, .external_lex_state = 7}, - [382] = {.lex_state = 50, .external_lex_state = 2}, - [383] = {.lex_state = 50, .external_lex_state = 2}, - [384] = {.lex_state = 50, .external_lex_state = 2}, - [385] = {.lex_state = 50, .external_lex_state = 2}, - [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}, - [391] = {.lex_state = 50, .external_lex_state = 2}, - [392] = {.lex_state = 50, .external_lex_state = 3}, - [393] = {.lex_state = 50, .external_lex_state = 3}, - [394] = {.lex_state = 50, .external_lex_state = 2}, - [395] = {.lex_state = 50, .external_lex_state = 2}, - [396] = {.lex_state = 50, .external_lex_state = 2}, - [397] = {.lex_state = 15, .external_lex_state = 6}, - [398] = {.lex_state = 50, .external_lex_state = 2}, - [399] = {.lex_state = 50, .external_lex_state = 2}, - [400] = {.lex_state = 50, .external_lex_state = 2}, - [401] = {.lex_state = 50, .external_lex_state = 3}, - [402] = {.lex_state = 50, .external_lex_state = 3}, - [403] = {.lex_state = 50, .external_lex_state = 3}, - [404] = {.lex_state = 50, .external_lex_state = 3}, - [405] = {.lex_state = 50, .external_lex_state = 2}, - [406] = {.lex_state = 50, .external_lex_state = 3}, - [407] = {.lex_state = 50, .external_lex_state = 2}, - [408] = {.lex_state = 50, .external_lex_state = 3}, - [409] = {.lex_state = 50, .external_lex_state = 2}, - [410] = {.lex_state = 50, .external_lex_state = 3}, - [411] = {.lex_state = 50, .external_lex_state = 2}, - [412] = {.lex_state = 50, .external_lex_state = 3}, - [413] = {.lex_state = 50, .external_lex_state = 3}, - [414] = {.lex_state = 50, .external_lex_state = 2}, - [415] = {.lex_state = 50, .external_lex_state = 2}, - [416] = {.lex_state = 15}, - [417] = {.lex_state = 50, .external_lex_state = 2}, - [418] = {.lex_state = 50, .external_lex_state = 3}, - [419] = {.lex_state = 50, .external_lex_state = 3}, - [420] = {.lex_state = 50, .external_lex_state = 2}, - [421] = {.lex_state = 50, .external_lex_state = 3}, - [422] = {.lex_state = 16, .external_lex_state = 6}, - [423] = {.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 = 2}, - [427] = {.lex_state = 50, .external_lex_state = 3}, - [428] = {.lex_state = 50, .external_lex_state = 2}, - [429] = {.lex_state = 15, .external_lex_state = 6}, - [430] = {.lex_state = 50, .external_lex_state = 3}, - [431] = {.lex_state = 50, .external_lex_state = 3}, - [432] = {.lex_state = 50, .external_lex_state = 2}, - [433] = {.lex_state = 50, .external_lex_state = 3}, - [434] = {.lex_state = 50, .external_lex_state = 2}, - [435] = {.lex_state = 50, .external_lex_state = 2}, - [436] = {.lex_state = 50, .external_lex_state = 3}, - [437] = {.lex_state = 50, .external_lex_state = 2}, - [438] = {.lex_state = 50, .external_lex_state = 2}, - [439] = {.lex_state = 50, .external_lex_state = 3}, - [440] = {.lex_state = 15, .external_lex_state = 6}, - [441] = {.lex_state = 50, .external_lex_state = 2}, - [442] = {.lex_state = 15}, - [443] = {.lex_state = 16, .external_lex_state = 6}, - [444] = {.lex_state = 50, .external_lex_state = 2}, - [445] = {.lex_state = 50, .external_lex_state = 2}, - [446] = {.lex_state = 16, .external_lex_state = 6}, - [447] = {.lex_state = 50, .external_lex_state = 2}, - [448] = {.lex_state = 50, .external_lex_state = 2}, - [449] = {.lex_state = 50, .external_lex_state = 2}, - [450] = {.lex_state = 50, .external_lex_state = 2}, - [451] = {.lex_state = 16, .external_lex_state = 6}, - [452] = {.lex_state = 16}, - [453] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 2}, - [459] = {.lex_state = 16, .external_lex_state = 6}, - [460] = {.lex_state = 50, .external_lex_state = 3}, - [461] = {.lex_state = 50, .external_lex_state = 2}, - [462] = {.lex_state = 50, .external_lex_state = 3}, - [463] = {.lex_state = 50, .external_lex_state = 3}, - [464] = {.lex_state = 50, .external_lex_state = 3}, - [465] = {.lex_state = 50, .external_lex_state = 2}, - [466] = {.lex_state = 50, .external_lex_state = 3}, - [467] = {.lex_state = 50, .external_lex_state = 2}, - [468] = {.lex_state = 50, .external_lex_state = 3}, - [469] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 3}, - [474] = {.lex_state = 50, .external_lex_state = 3}, - [475] = {.lex_state = 50, .external_lex_state = 3}, - [476] = {.lex_state = 50, .external_lex_state = 2}, - [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}, - [482] = {.lex_state = 50, .external_lex_state = 2}, - [483] = {.lex_state = 50, .external_lex_state = 2}, - [484] = {.lex_state = 50, .external_lex_state = 2}, - [485] = {.lex_state = 50, .external_lex_state = 2}, - [486] = {.lex_state = 50, .external_lex_state = 3}, - [487] = {.lex_state = 50, .external_lex_state = 2}, - [488] = {.lex_state = 50, .external_lex_state = 3}, - [489] = {.lex_state = 50, .external_lex_state = 3}, - [490] = {.lex_state = 50, .external_lex_state = 2}, - [491] = {.lex_state = 50, .external_lex_state = 2}, - [492] = {.lex_state = 50, .external_lex_state = 3}, - [493] = {.lex_state = 50, .external_lex_state = 3}, - [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}, - [501] = {.lex_state = 50, .external_lex_state = 3}, - [502] = {.lex_state = 50, .external_lex_state = 2}, - [503] = {.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 = 2}, - [507] = {.lex_state = 50, .external_lex_state = 2}, - [508] = {.lex_state = 50, .external_lex_state = 2}, - [509] = {.lex_state = 50, .external_lex_state = 3}, - [510] = {.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 = 2}, - [514] = {.lex_state = 50, .external_lex_state = 3}, - [515] = {.lex_state = 50, .external_lex_state = 2}, - [516] = {.lex_state = 50, .external_lex_state = 3}, - [517] = {.lex_state = 50, .external_lex_state = 3}, - [518] = {.lex_state = 50, .external_lex_state = 2}, - [519] = {.lex_state = 50, .external_lex_state = 2}, - [520] = {.lex_state = 50, .external_lex_state = 2}, - [521] = {.lex_state = 50, .external_lex_state = 2}, - [522] = {.lex_state = 50, .external_lex_state = 3}, - [523] = {.lex_state = 50, .external_lex_state = 2}, - [524] = {.lex_state = 50, .external_lex_state = 2}, - [525] = {.lex_state = 50, .external_lex_state = 3}, - [526] = {.lex_state = 50, .external_lex_state = 3}, - [527] = {.lex_state = 50, .external_lex_state = 2}, - [528] = {.lex_state = 50, .external_lex_state = 2}, - [529] = {.lex_state = 50, .external_lex_state = 3}, - [530] = {.lex_state = 50, .external_lex_state = 3}, - [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 = 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 = 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}, - [548] = {.lex_state = 50, .external_lex_state = 3}, - [549] = {.lex_state = 50, .external_lex_state = 2}, - [550] = {.lex_state = 50, .external_lex_state = 3}, - [551] = {.lex_state = 50, .external_lex_state = 3}, - [552] = {.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 = 3}, - [556] = {.lex_state = 50, .external_lex_state = 2}, - [557] = {.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 = 3}, - [561] = {.lex_state = 50, .external_lex_state = 3}, - [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 = 50, .external_lex_state = 2}, - [566] = {.lex_state = 50, .external_lex_state = 2}, - [567] = {.lex_state = 50, .external_lex_state = 2}, - [568] = {.lex_state = 14, .external_lex_state = 2}, - [569] = {.lex_state = 16, .external_lex_state = 8}, - [570] = {.lex_state = 16, .external_lex_state = 9}, - [571] = {.lex_state = 16, .external_lex_state = 9}, - [572] = {.lex_state = 16, .external_lex_state = 9}, - [573] = {.lex_state = 16, .external_lex_state = 8}, - [574] = {.lex_state = 16, .external_lex_state = 8}, - [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 = 16, .external_lex_state = 8}, - [581] = {.lex_state = 16, .external_lex_state = 9}, - [582] = {.lex_state = 50, .external_lex_state = 2}, - [583] = {.lex_state = 50, .external_lex_state = 2}, - [584] = {.lex_state = 16, .external_lex_state = 8}, - [585] = {.lex_state = 50, .external_lex_state = 2}, - [586] = {.lex_state = 50, .external_lex_state = 2}, - [587] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 50, .external_lex_state = 2}, - [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 = 50, .external_lex_state = 2}, - [609] = {.lex_state = 50, .external_lex_state = 2}, - [610] = {.lex_state = 50, .external_lex_state = 2}, - [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 = 50, .external_lex_state = 2}, - [619] = {.lex_state = 50, .external_lex_state = 2}, - [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}, + [142] = {.lex_state = 51, .external_lex_state = 2}, + [143] = {.lex_state = 51, .external_lex_state = 2}, + [144] = {.lex_state = 51, .external_lex_state = 2}, + [145] = {.lex_state = 14, .external_lex_state = 2}, + [146] = {.lex_state = 51, .external_lex_state = 2}, + [147] = {.lex_state = 51, .external_lex_state = 2}, + [148] = {.lex_state = 51, .external_lex_state = 2}, + [149] = {.lex_state = 51, .external_lex_state = 4}, + [150] = {.lex_state = 51, .external_lex_state = 2}, + [151] = {.lex_state = 51, .external_lex_state = 2}, + [152] = {.lex_state = 51, .external_lex_state = 2}, + [153] = {.lex_state = 51, .external_lex_state = 2}, + [154] = {.lex_state = 51, .external_lex_state = 2}, + [155] = {.lex_state = 51, .external_lex_state = 2}, + [156] = {.lex_state = 51, .external_lex_state = 2}, + [157] = {.lex_state = 51, .external_lex_state = 2}, + [158] = {.lex_state = 51, .external_lex_state = 2}, + [159] = {.lex_state = 51, .external_lex_state = 2}, + [160] = {.lex_state = 51, .external_lex_state = 2}, + [161] = {.lex_state = 51, .external_lex_state = 2}, + [162] = {.lex_state = 51, .external_lex_state = 2}, + [163] = {.lex_state = 51, .external_lex_state = 2}, + [164] = {.lex_state = 51, .external_lex_state = 2}, + [165] = {.lex_state = 51, .external_lex_state = 2}, + [166] = {.lex_state = 51, .external_lex_state = 2}, + [167] = {.lex_state = 51, .external_lex_state = 2}, + [168] = {.lex_state = 51, .external_lex_state = 2}, + [169] = {.lex_state = 14, .external_lex_state = 2}, + [170] = {.lex_state = 51, .external_lex_state = 2}, + [171] = {.lex_state = 51, .external_lex_state = 2}, + [172] = {.lex_state = 51, .external_lex_state = 2}, + [173] = {.lex_state = 51, .external_lex_state = 2}, + [174] = {.lex_state = 51, .external_lex_state = 4}, + [175] = {.lex_state = 51, .external_lex_state = 2}, + [176] = {.lex_state = 51, .external_lex_state = 2}, + [177] = {.lex_state = 51, .external_lex_state = 2}, + [178] = {.lex_state = 14, .external_lex_state = 2}, + [179] = {.lex_state = 14, .external_lex_state = 2}, + [180] = {.lex_state = 14, .external_lex_state = 2}, + [181] = {.lex_state = 51, .external_lex_state = 2}, + [182] = {.lex_state = 51, .external_lex_state = 2}, + [183] = {.lex_state = 51, .external_lex_state = 2}, + [184] = {.lex_state = 51, .external_lex_state = 4}, + [185] = {.lex_state = 51, .external_lex_state = 2}, + [186] = {.lex_state = 51, .external_lex_state = 2}, + [187] = {.lex_state = 51, .external_lex_state = 2}, + [188] = {.lex_state = 51, .external_lex_state = 2}, + [189] = {.lex_state = 51, .external_lex_state = 2}, + [190] = {.lex_state = 51, .external_lex_state = 2}, + [191] = {.lex_state = 51, .external_lex_state = 4}, + [192] = {.lex_state = 51, .external_lex_state = 2}, + [193] = {.lex_state = 51, .external_lex_state = 4}, + [194] = {.lex_state = 51, .external_lex_state = 2}, + [195] = {.lex_state = 51, .external_lex_state = 2}, + [196] = {.lex_state = 51, .external_lex_state = 2}, + [197] = {.lex_state = 51, .external_lex_state = 2}, + [198] = {.lex_state = 51, .external_lex_state = 2}, + [199] = {.lex_state = 51, .external_lex_state = 2}, + [200] = {.lex_state = 51, .external_lex_state = 2}, + [201] = {.lex_state = 51, .external_lex_state = 2}, + [202] = {.lex_state = 51, .external_lex_state = 2}, + [203] = {.lex_state = 51, .external_lex_state = 2}, + [204] = {.lex_state = 51, .external_lex_state = 2}, + [205] = {.lex_state = 51, .external_lex_state = 2}, + [206] = {.lex_state = 51, .external_lex_state = 2}, + [207] = {.lex_state = 51, .external_lex_state = 2}, + [208] = {.lex_state = 51, .external_lex_state = 2}, + [209] = {.lex_state = 51, .external_lex_state = 2}, + [210] = {.lex_state = 51, .external_lex_state = 2}, + [211] = {.lex_state = 51, .external_lex_state = 2}, + [212] = {.lex_state = 51, .external_lex_state = 2}, + [213] = {.lex_state = 51, .external_lex_state = 2}, + [214] = {.lex_state = 51, .external_lex_state = 2}, + [215] = {.lex_state = 51, .external_lex_state = 2}, + [216] = {.lex_state = 51, .external_lex_state = 2}, + [217] = {.lex_state = 51, .external_lex_state = 4}, + [218] = {.lex_state = 51, .external_lex_state = 2}, + [219] = {.lex_state = 51, .external_lex_state = 2}, + [220] = {.lex_state = 51, .external_lex_state = 4}, + [221] = {.lex_state = 51, .external_lex_state = 2}, + [222] = {.lex_state = 51, .external_lex_state = 2}, + [223] = {.lex_state = 51, .external_lex_state = 2}, + [224] = {.lex_state = 51, .external_lex_state = 2}, + [225] = {.lex_state = 51, .external_lex_state = 2}, + [226] = {.lex_state = 51, .external_lex_state = 2}, + [227] = {.lex_state = 51, .external_lex_state = 2}, + [228] = {.lex_state = 51, .external_lex_state = 2}, + [229] = {.lex_state = 51, .external_lex_state = 2}, + [230] = {.lex_state = 51, .external_lex_state = 2}, + [231] = {.lex_state = 51, .external_lex_state = 2}, + [232] = {.lex_state = 51, .external_lex_state = 2}, + [233] = {.lex_state = 51, .external_lex_state = 2}, + [234] = {.lex_state = 51, .external_lex_state = 2}, + [235] = {.lex_state = 51, .external_lex_state = 2}, + [236] = {.lex_state = 51, .external_lex_state = 2}, + [237] = {.lex_state = 51, .external_lex_state = 2}, + [238] = {.lex_state = 51, .external_lex_state = 2}, + [239] = {.lex_state = 51, .external_lex_state = 2}, + [240] = {.lex_state = 51, .external_lex_state = 2}, + [241] = {.lex_state = 51, .external_lex_state = 2}, + [242] = {.lex_state = 51, .external_lex_state = 2}, + [243] = {.lex_state = 51, .external_lex_state = 2}, + [244] = {.lex_state = 51, .external_lex_state = 2}, + [245] = {.lex_state = 51, .external_lex_state = 2}, + [246] = {.lex_state = 51, .external_lex_state = 2}, + [247] = {.lex_state = 51, .external_lex_state = 2}, + [248] = {.lex_state = 51, .external_lex_state = 2}, + [249] = {.lex_state = 51, .external_lex_state = 2}, + [250] = {.lex_state = 51, .external_lex_state = 2}, + [251] = {.lex_state = 51, .external_lex_state = 2}, + [252] = {.lex_state = 51, .external_lex_state = 2}, + [253] = {.lex_state = 51, .external_lex_state = 2}, + [254] = {.lex_state = 51, .external_lex_state = 2}, + [255] = {.lex_state = 51, .external_lex_state = 2}, + [256] = {.lex_state = 51, .external_lex_state = 2}, + [257] = {.lex_state = 51, .external_lex_state = 2}, + [258] = {.lex_state = 51, .external_lex_state = 2}, + [259] = {.lex_state = 51, .external_lex_state = 2}, + [260] = {.lex_state = 51, .external_lex_state = 2}, + [261] = {.lex_state = 51, .external_lex_state = 2}, + [262] = {.lex_state = 51, .external_lex_state = 2}, + [263] = {.lex_state = 51, .external_lex_state = 2}, + [264] = {.lex_state = 51, .external_lex_state = 2}, + [265] = {.lex_state = 51, .external_lex_state = 2}, + [266] = {.lex_state = 51, .external_lex_state = 3}, + [267] = {.lex_state = 51, .external_lex_state = 3}, + [268] = {.lex_state = 51, .external_lex_state = 2}, + [269] = {.lex_state = 51, .external_lex_state = 2}, + [270] = {.lex_state = 51, .external_lex_state = 2}, + [271] = {.lex_state = 51, .external_lex_state = 2}, + [272] = {.lex_state = 51, .external_lex_state = 2}, + [273] = {.lex_state = 51, .external_lex_state = 2}, + [274] = {.lex_state = 51, .external_lex_state = 2}, + [275] = {.lex_state = 51, .external_lex_state = 2}, + [276] = {.lex_state = 51, .external_lex_state = 2}, + [277] = {.lex_state = 51, .external_lex_state = 2}, + [278] = {.lex_state = 51, .external_lex_state = 2}, + [279] = {.lex_state = 51, .external_lex_state = 3}, + [280] = {.lex_state = 51, .external_lex_state = 2}, + [281] = {.lex_state = 51, .external_lex_state = 2}, + [282] = {.lex_state = 51, .external_lex_state = 2}, + [283] = {.lex_state = 51, .external_lex_state = 3}, + [284] = {.lex_state = 51, .external_lex_state = 2}, + [285] = {.lex_state = 51, .external_lex_state = 2}, + [286] = {.lex_state = 51, .external_lex_state = 2}, + [287] = {.lex_state = 51, .external_lex_state = 2}, + [288] = {.lex_state = 51, .external_lex_state = 2}, + [289] = {.lex_state = 51, .external_lex_state = 4}, + [290] = {.lex_state = 51, .external_lex_state = 4}, + [291] = {.lex_state = 51, .external_lex_state = 4}, + [292] = {.lex_state = 51, .external_lex_state = 2}, + [293] = {.lex_state = 51, .external_lex_state = 2}, + [294] = {.lex_state = 16}, + [295] = {.lex_state = 51, .external_lex_state = 2}, + [296] = {.lex_state = 51, .external_lex_state = 2}, + [297] = {.lex_state = 51, .external_lex_state = 2}, + [298] = {.lex_state = 51, .external_lex_state = 2}, + [299] = {.lex_state = 51, .external_lex_state = 2}, + [300] = {.lex_state = 51, .external_lex_state = 4}, + [301] = {.lex_state = 51, .external_lex_state = 2}, + [302] = {.lex_state = 51, .external_lex_state = 2}, + [303] = {.lex_state = 51, .external_lex_state = 2}, + [304] = {.lex_state = 51, .external_lex_state = 2}, + [305] = {.lex_state = 51, .external_lex_state = 2}, + [306] = {.lex_state = 51, .external_lex_state = 2}, + [307] = {.lex_state = 16}, + [308] = {.lex_state = 51, .external_lex_state = 2}, + [309] = {.lex_state = 51, .external_lex_state = 2}, + [310] = {.lex_state = 51, .external_lex_state = 2}, + [311] = {.lex_state = 51, .external_lex_state = 2}, + [312] = {.lex_state = 51, .external_lex_state = 2}, + [313] = {.lex_state = 51, .external_lex_state = 3}, + [314] = {.lex_state = 51, .external_lex_state = 3}, + [315] = {.lex_state = 51, .external_lex_state = 2}, + [316] = {.lex_state = 51, .external_lex_state = 2}, + [317] = {.lex_state = 51, .external_lex_state = 2}, + [318] = {.lex_state = 51, .external_lex_state = 2}, + [319] = {.lex_state = 51, .external_lex_state = 3}, + [320] = {.lex_state = 51, .external_lex_state = 3}, + [321] = {.lex_state = 51, .external_lex_state = 2}, + [322] = {.lex_state = 51, .external_lex_state = 2}, + [323] = {.lex_state = 51, .external_lex_state = 2}, + [324] = {.lex_state = 16, .external_lex_state = 6}, + [325] = {.lex_state = 51, .external_lex_state = 2}, + [326] = {.lex_state = 51, .external_lex_state = 3}, + [327] = {.lex_state = 51, .external_lex_state = 3}, + [328] = {.lex_state = 51, .external_lex_state = 2}, + [329] = {.lex_state = 51, .external_lex_state = 2}, + [330] = {.lex_state = 51, .external_lex_state = 3}, + [331] = {.lex_state = 51, .external_lex_state = 3}, + [332] = {.lex_state = 51, .external_lex_state = 2}, + [333] = {.lex_state = 51, .external_lex_state = 3}, + [334] = {.lex_state = 51, .external_lex_state = 2}, + [335] = {.lex_state = 51, .external_lex_state = 3}, + [336] = {.lex_state = 51, .external_lex_state = 3}, + [337] = {.lex_state = 51, .external_lex_state = 2}, + [338] = {.lex_state = 16, .external_lex_state = 6}, + [339] = {.lex_state = 51, .external_lex_state = 2}, + [340] = {.lex_state = 51, .external_lex_state = 2}, + [341] = {.lex_state = 51, .external_lex_state = 2}, + [342] = {.lex_state = 51, .external_lex_state = 2}, + [343] = {.lex_state = 51, .external_lex_state = 2}, + [344] = {.lex_state = 51, .external_lex_state = 2}, + [345] = {.lex_state = 51, .external_lex_state = 2}, + [346] = {.lex_state = 51, .external_lex_state = 2}, + [347] = {.lex_state = 51, .external_lex_state = 2}, + [348] = {.lex_state = 51, .external_lex_state = 2}, + [349] = {.lex_state = 51, .external_lex_state = 2}, + [350] = {.lex_state = 51, .external_lex_state = 2}, + [351] = {.lex_state = 51, .external_lex_state = 2}, + [352] = {.lex_state = 51, .external_lex_state = 2}, + [353] = {.lex_state = 51, .external_lex_state = 2}, + [354] = {.lex_state = 51, .external_lex_state = 2}, + [355] = {.lex_state = 51, .external_lex_state = 2}, + [356] = {.lex_state = 51, .external_lex_state = 2}, + [357] = {.lex_state = 51, .external_lex_state = 2}, + [358] = {.lex_state = 51, .external_lex_state = 2}, + [359] = {.lex_state = 51, .external_lex_state = 2}, + [360] = {.lex_state = 51, .external_lex_state = 2}, + [361] = {.lex_state = 51, .external_lex_state = 2}, + [362] = {.lex_state = 51, .external_lex_state = 2}, + [363] = {.lex_state = 51, .external_lex_state = 2}, + [364] = {.lex_state = 51, .external_lex_state = 2}, + [365] = {.lex_state = 51, .external_lex_state = 2}, + [366] = {.lex_state = 51, .external_lex_state = 2}, + [367] = {.lex_state = 16, .external_lex_state = 7}, + [368] = {.lex_state = 51, .external_lex_state = 2}, + [369] = {.lex_state = 51, .external_lex_state = 2}, + [370] = {.lex_state = 51, .external_lex_state = 2}, + [371] = {.lex_state = 51, .external_lex_state = 2}, + [372] = {.lex_state = 51, .external_lex_state = 2}, + [373] = {.lex_state = 51, .external_lex_state = 2}, + [374] = {.lex_state = 51, .external_lex_state = 2}, + [375] = {.lex_state = 51, .external_lex_state = 2}, + [376] = {.lex_state = 51, .external_lex_state = 2}, + [377] = {.lex_state = 51, .external_lex_state = 2}, + [378] = {.lex_state = 51, .external_lex_state = 2}, + [379] = {.lex_state = 51, .external_lex_state = 2}, + [380] = {.lex_state = 51, .external_lex_state = 2}, + [381] = {.lex_state = 51, .external_lex_state = 2}, + [382] = {.lex_state = 51, .external_lex_state = 2}, + [383] = {.lex_state = 51, .external_lex_state = 2}, + [384] = {.lex_state = 51, .external_lex_state = 2}, + [385] = {.lex_state = 51, .external_lex_state = 2}, + [386] = {.lex_state = 51, .external_lex_state = 2}, + [387] = {.lex_state = 51, .external_lex_state = 2}, + [388] = {.lex_state = 51, .external_lex_state = 2}, + [389] = {.lex_state = 51, .external_lex_state = 2}, + [390] = {.lex_state = 51, .external_lex_state = 2}, + [391] = {.lex_state = 51, .external_lex_state = 2}, + [392] = {.lex_state = 51, .external_lex_state = 2}, + [393] = {.lex_state = 51, .external_lex_state = 2}, + [394] = {.lex_state = 51, .external_lex_state = 2}, + [395] = {.lex_state = 51, .external_lex_state = 2}, + [396] = {.lex_state = 51, .external_lex_state = 2}, + [397] = {.lex_state = 51, .external_lex_state = 2}, + [398] = {.lex_state = 51, .external_lex_state = 2}, + [399] = {.lex_state = 51, .external_lex_state = 3}, + [400] = {.lex_state = 51, .external_lex_state = 2}, + [401] = {.lex_state = 51, .external_lex_state = 2}, + [402] = {.lex_state = 51, .external_lex_state = 2}, + [403] = {.lex_state = 51, .external_lex_state = 2}, + [404] = {.lex_state = 51, .external_lex_state = 2}, + [405] = {.lex_state = 51, .external_lex_state = 2}, + [406] = {.lex_state = 51, .external_lex_state = 2}, + [407] = {.lex_state = 51, .external_lex_state = 2}, + [408] = {.lex_state = 51, .external_lex_state = 2}, + [409] = {.lex_state = 51, .external_lex_state = 2}, + [410] = {.lex_state = 51, .external_lex_state = 2}, + [411] = {.lex_state = 51, .external_lex_state = 2}, + [412] = {.lex_state = 51, .external_lex_state = 2}, + [413] = {.lex_state = 51, .external_lex_state = 2}, + [414] = {.lex_state = 51, .external_lex_state = 2}, + [415] = {.lex_state = 51, .external_lex_state = 2}, + [416] = {.lex_state = 51, .external_lex_state = 2}, + [417] = {.lex_state = 51, .external_lex_state = 2}, + [418] = {.lex_state = 51, .external_lex_state = 2}, + [419] = {.lex_state = 51, .external_lex_state = 2}, + [420] = {.lex_state = 51, .external_lex_state = 2}, + [421] = {.lex_state = 51, .external_lex_state = 2}, + [422] = {.lex_state = 51, .external_lex_state = 2}, + [423] = {.lex_state = 51, .external_lex_state = 2}, + [424] = {.lex_state = 51, .external_lex_state = 2}, + [425] = {.lex_state = 51, .external_lex_state = 2}, + [426] = {.lex_state = 51, .external_lex_state = 2}, + [427] = {.lex_state = 51, .external_lex_state = 2}, + [428] = {.lex_state = 51, .external_lex_state = 2}, + [429] = {.lex_state = 51, .external_lex_state = 2}, + [430] = {.lex_state = 51, .external_lex_state = 2}, + [431] = {.lex_state = 51, .external_lex_state = 2}, + [432] = {.lex_state = 51, .external_lex_state = 2}, + [433] = {.lex_state = 51, .external_lex_state = 2}, + [434] = {.lex_state = 51, .external_lex_state = 2}, + [435] = {.lex_state = 51, .external_lex_state = 2}, + [436] = {.lex_state = 51, .external_lex_state = 2}, + [437] = {.lex_state = 51, .external_lex_state = 3}, + [438] = {.lex_state = 51, .external_lex_state = 3}, + [439] = {.lex_state = 51, .external_lex_state = 3}, + [440] = {.lex_state = 51, .external_lex_state = 3}, + [441] = {.lex_state = 51, .external_lex_state = 3}, + [442] = {.lex_state = 51, .external_lex_state = 2}, + [443] = {.lex_state = 51, .external_lex_state = 3}, + [444] = {.lex_state = 51, .external_lex_state = 3}, + [445] = {.lex_state = 51, .external_lex_state = 3}, + [446] = {.lex_state = 51, .external_lex_state = 3}, + [447] = {.lex_state = 51, .external_lex_state = 3}, + [448] = {.lex_state = 51, .external_lex_state = 2}, + [449] = {.lex_state = 51, .external_lex_state = 2}, + [450] = {.lex_state = 51, .external_lex_state = 2}, + [451] = {.lex_state = 51, .external_lex_state = 2}, + [452] = {.lex_state = 51, .external_lex_state = 3}, + [453] = {.lex_state = 51, .external_lex_state = 2}, + [454] = {.lex_state = 51, .external_lex_state = 2}, + [455] = {.lex_state = 51, .external_lex_state = 2}, + [456] = {.lex_state = 51, .external_lex_state = 2}, + [457] = {.lex_state = 51, .external_lex_state = 2}, + [458] = {.lex_state = 16, .external_lex_state = 6}, + [459] = {.lex_state = 51, .external_lex_state = 2}, + [460] = {.lex_state = 51, .external_lex_state = 3}, + [461] = {.lex_state = 51, .external_lex_state = 2}, + [462] = {.lex_state = 16, .external_lex_state = 6}, + [463] = {.lex_state = 51, .external_lex_state = 2}, + [464] = {.lex_state = 51, .external_lex_state = 2}, + [465] = {.lex_state = 16, .external_lex_state = 6}, + [466] = {.lex_state = 51, .external_lex_state = 3}, + [467] = {.lex_state = 51, .external_lex_state = 2}, + [468] = {.lex_state = 51, .external_lex_state = 2}, + [469] = {.lex_state = 51, .external_lex_state = 3}, + [470] = {.lex_state = 51, .external_lex_state = 3}, + [471] = {.lex_state = 51, .external_lex_state = 2}, + [472] = {.lex_state = 51, .external_lex_state = 2}, + [473] = {.lex_state = 51, .external_lex_state = 3}, + [474] = {.lex_state = 16}, + [475] = {.lex_state = 16, .external_lex_state = 6}, + [476] = {.lex_state = 51, .external_lex_state = 2}, + [477] = {.lex_state = 51, .external_lex_state = 3}, + [478] = {.lex_state = 51, .external_lex_state = 2}, + [479] = {.lex_state = 51, .external_lex_state = 3}, + [480] = {.lex_state = 51, .external_lex_state = 3}, + [481] = {.lex_state = 51, .external_lex_state = 2}, + [482] = {.lex_state = 51, .external_lex_state = 2}, + [483] = {.lex_state = 16, .external_lex_state = 6}, + [484] = {.lex_state = 51, .external_lex_state = 2}, + [485] = {.lex_state = 51, .external_lex_state = 2}, + [486] = {.lex_state = 51, .external_lex_state = 3}, + [487] = {.lex_state = 16}, + [488] = {.lex_state = 51, .external_lex_state = 3}, + [489] = {.lex_state = 51, .external_lex_state = 3}, + [490] = {.lex_state = 51, .external_lex_state = 2}, + [491] = {.lex_state = 51, .external_lex_state = 3}, + [492] = {.lex_state = 51, .external_lex_state = 3}, + [493] = {.lex_state = 51, .external_lex_state = 2}, + [494] = {.lex_state = 16, .external_lex_state = 6}, + [495] = {.lex_state = 51, .external_lex_state = 2}, + [496] = {.lex_state = 51, .external_lex_state = 2}, + [497] = {.lex_state = 51, .external_lex_state = 2}, + [498] = {.lex_state = 51, .external_lex_state = 2}, + [499] = {.lex_state = 51, .external_lex_state = 2}, + [500] = {.lex_state = 51, .external_lex_state = 2}, + [501] = {.lex_state = 51, .external_lex_state = 2}, + [502] = {.lex_state = 16, .external_lex_state = 6}, + [503] = {.lex_state = 51, .external_lex_state = 3}, + [504] = {.lex_state = 51, .external_lex_state = 3}, + [505] = {.lex_state = 51, .external_lex_state = 3}, + [506] = {.lex_state = 51, .external_lex_state = 3}, + [507] = {.lex_state = 51, .external_lex_state = 3}, + [508] = {.lex_state = 51, .external_lex_state = 2}, + [509] = {.lex_state = 16}, + [510] = {.lex_state = 51, .external_lex_state = 2}, + [511] = {.lex_state = 51, .external_lex_state = 2}, + [512] = {.lex_state = 51, .external_lex_state = 2}, + [513] = {.lex_state = 16, .external_lex_state = 6}, + [514] = {.lex_state = 51, .external_lex_state = 2}, + [515] = {.lex_state = 51, .external_lex_state = 2}, + [516] = {.lex_state = 51, .external_lex_state = 2}, + [517] = {.lex_state = 51, .external_lex_state = 2}, + [518] = {.lex_state = 51, .external_lex_state = 2}, + [519] = {.lex_state = 51, .external_lex_state = 2}, + [520] = {.lex_state = 51, .external_lex_state = 2}, + [521] = {.lex_state = 51, .external_lex_state = 2}, + [522] = {.lex_state = 51, .external_lex_state = 2}, + [523] = {.lex_state = 51, .external_lex_state = 2}, + [524] = {.lex_state = 51, .external_lex_state = 2}, + [525] = {.lex_state = 51, .external_lex_state = 2}, + [526] = {.lex_state = 51, .external_lex_state = 2}, + [527] = {.lex_state = 51, .external_lex_state = 2}, + [528] = {.lex_state = 51, .external_lex_state = 2}, + [529] = {.lex_state = 51, .external_lex_state = 2}, + [530] = {.lex_state = 51, .external_lex_state = 2}, + [531] = {.lex_state = 51, .external_lex_state = 2}, + [532] = {.lex_state = 51, .external_lex_state = 2}, + [533] = {.lex_state = 51, .external_lex_state = 2}, + [534] = {.lex_state = 51, .external_lex_state = 2}, + [535] = {.lex_state = 51, .external_lex_state = 2}, + [536] = {.lex_state = 51, .external_lex_state = 2}, + [537] = {.lex_state = 51, .external_lex_state = 2}, + [538] = {.lex_state = 51, .external_lex_state = 2}, + [539] = {.lex_state = 51, .external_lex_state = 2}, + [540] = {.lex_state = 51, .external_lex_state = 2}, + [541] = {.lex_state = 51, .external_lex_state = 2}, + [542] = {.lex_state = 51, .external_lex_state = 2}, + [543] = {.lex_state = 51, .external_lex_state = 2}, + [544] = {.lex_state = 51, .external_lex_state = 2}, + [545] = {.lex_state = 51, .external_lex_state = 2}, + [546] = {.lex_state = 51, .external_lex_state = 2}, + [547] = {.lex_state = 51, .external_lex_state = 2}, + [548] = {.lex_state = 51, .external_lex_state = 2}, + [549] = {.lex_state = 51, .external_lex_state = 2}, + [550] = {.lex_state = 51, .external_lex_state = 2}, + [551] = {.lex_state = 51, .external_lex_state = 2}, + [552] = {.lex_state = 51, .external_lex_state = 3}, + [553] = {.lex_state = 51, .external_lex_state = 3}, + [554] = {.lex_state = 51, .external_lex_state = 3}, + [555] = {.lex_state = 51, .external_lex_state = 3}, + [556] = {.lex_state = 51, .external_lex_state = 3}, + [557] = {.lex_state = 51, .external_lex_state = 3}, + [558] = {.lex_state = 51, .external_lex_state = 3}, + [559] = {.lex_state = 51, .external_lex_state = 3}, + [560] = {.lex_state = 51, .external_lex_state = 3}, + [561] = {.lex_state = 51, .external_lex_state = 3}, + [562] = {.lex_state = 51, .external_lex_state = 3}, + [563] = {.lex_state = 51, .external_lex_state = 3}, + [564] = {.lex_state = 51, .external_lex_state = 3}, + [565] = {.lex_state = 51, .external_lex_state = 3}, + [566] = {.lex_state = 51, .external_lex_state = 3}, + [567] = {.lex_state = 51, .external_lex_state = 3}, + [568] = {.lex_state = 51, .external_lex_state = 3}, + [569] = {.lex_state = 51, .external_lex_state = 3}, + [570] = {.lex_state = 51, .external_lex_state = 3}, + [571] = {.lex_state = 51, .external_lex_state = 3}, + [572] = {.lex_state = 51, .external_lex_state = 3}, + [573] = {.lex_state = 51, .external_lex_state = 3}, + [574] = {.lex_state = 51, .external_lex_state = 3}, + [575] = {.lex_state = 51, .external_lex_state = 3}, + [576] = {.lex_state = 51, .external_lex_state = 3}, + [577] = {.lex_state = 51, .external_lex_state = 3}, + [578] = {.lex_state = 51, .external_lex_state = 3}, + [579] = {.lex_state = 51, .external_lex_state = 3}, + [580] = {.lex_state = 51, .external_lex_state = 3}, + [581] = {.lex_state = 51, .external_lex_state = 2}, + [582] = {.lex_state = 51, .external_lex_state = 3}, + [583] = {.lex_state = 51, .external_lex_state = 3}, + [584] = {.lex_state = 51, .external_lex_state = 3}, + [585] = {.lex_state = 51, .external_lex_state = 3}, + [586] = {.lex_state = 51, .external_lex_state = 3}, + [587] = {.lex_state = 51, .external_lex_state = 3}, + [588] = {.lex_state = 51, .external_lex_state = 2}, + [589] = {.lex_state = 51, .external_lex_state = 3}, + [590] = {.lex_state = 51, .external_lex_state = 3}, + [591] = {.lex_state = 51, .external_lex_state = 3}, + [592] = {.lex_state = 51, .external_lex_state = 3}, + [593] = {.lex_state = 51, .external_lex_state = 3}, + [594] = {.lex_state = 51, .external_lex_state = 3}, + [595] = {.lex_state = 51, .external_lex_state = 3}, + [596] = {.lex_state = 51, .external_lex_state = 2}, + [597] = {.lex_state = 51, .external_lex_state = 2}, + [598] = {.lex_state = 51, .external_lex_state = 3}, + [599] = {.lex_state = 51, .external_lex_state = 3}, + [600] = {.lex_state = 51, .external_lex_state = 3}, + [601] = {.lex_state = 51, .external_lex_state = 3}, + [602] = {.lex_state = 51, .external_lex_state = 3}, + [603] = {.lex_state = 51, .external_lex_state = 3}, + [604] = {.lex_state = 51, .external_lex_state = 3}, + [605] = {.lex_state = 51, .external_lex_state = 2}, + [606] = {.lex_state = 51, .external_lex_state = 2}, + [607] = {.lex_state = 51, .external_lex_state = 2}, + [608] = {.lex_state = 51, .external_lex_state = 2}, + [609] = {.lex_state = 51, .external_lex_state = 2}, + [610] = {.lex_state = 51, .external_lex_state = 2}, + [611] = {.lex_state = 51, .external_lex_state = 2}, + [612] = {.lex_state = 51, .external_lex_state = 2}, + [613] = {.lex_state = 51, .external_lex_state = 2}, + [614] = {.lex_state = 51, .external_lex_state = 2}, + [615] = {.lex_state = 51, .external_lex_state = 2}, + [616] = {.lex_state = 16, .external_lex_state = 8}, + [617] = {.lex_state = 16, .external_lex_state = 9}, + [618] = {.lex_state = 51, .external_lex_state = 2}, + [619] = {.lex_state = 16, .external_lex_state = 8}, + [620] = {.lex_state = 16, .external_lex_state = 9}, + [621] = {.lex_state = 16, .external_lex_state = 8}, + [622] = {.lex_state = 51, .external_lex_state = 2}, + [623] = {.lex_state = 51, .external_lex_state = 2}, [624] = {.lex_state = 16, .external_lex_state = 9}, - [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 = 50, .external_lex_state = 2}, - [629] = {.lex_state = 16}, - [630] = {.lex_state = 16}, - [631] = {.lex_state = 16}, - [632] = {.lex_state = 16}, - [633] = {.lex_state = 16}, - [634] = {.lex_state = 16}, - [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 = 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 = 16}, - [686] = {.lex_state = 16, .external_lex_state = 9}, - [687] = {.lex_state = 15}, - [688] = {.lex_state = 16, .external_lex_state = 8}, - [689] = {.lex_state = 16, .external_lex_state = 9}, - [690] = {.lex_state = 16}, - [691] = {.lex_state = 16, .external_lex_state = 8}, - [692] = {.lex_state = 15}, - [693] = {.lex_state = 15}, - [694] = {.lex_state = 15}, - [695] = {.lex_state = 16}, - [696] = {.lex_state = 16, .external_lex_state = 10}, - [697] = {.lex_state = 16}, - [698] = {.lex_state = 16, .external_lex_state = 7}, - [699] = {.lex_state = 16, .external_lex_state = 7}, - [700] = {.lex_state = 16, .external_lex_state = 10}, - [701] = {.lex_state = 16, .external_lex_state = 10}, - [702] = {.lex_state = 16, .external_lex_state = 6}, + [625] = {.lex_state = 51, .external_lex_state = 2}, + [626] = {.lex_state = 51, .external_lex_state = 2}, + [627] = {.lex_state = 51, .external_lex_state = 2}, + [628] = {.lex_state = 51, .external_lex_state = 2}, + [629] = {.lex_state = 51, .external_lex_state = 2}, + [630] = {.lex_state = 51, .external_lex_state = 2}, + [631] = {.lex_state = 51, .external_lex_state = 2}, + [632] = {.lex_state = 51, .external_lex_state = 2}, + [633] = {.lex_state = 51, .external_lex_state = 2}, + [634] = {.lex_state = 51, .external_lex_state = 2}, + [635] = {.lex_state = 51, .external_lex_state = 2}, + [636] = {.lex_state = 51, .external_lex_state = 2}, + [637] = {.lex_state = 51, .external_lex_state = 2}, + [638] = {.lex_state = 51, .external_lex_state = 2}, + [639] = {.lex_state = 51, .external_lex_state = 2}, + [640] = {.lex_state = 51, .external_lex_state = 2}, + [641] = {.lex_state = 51, .external_lex_state = 2}, + [642] = {.lex_state = 51, .external_lex_state = 2}, + [643] = {.lex_state = 51, .external_lex_state = 2}, + [644] = {.lex_state = 51, .external_lex_state = 2}, + [645] = {.lex_state = 51, .external_lex_state = 2}, + [646] = {.lex_state = 51, .external_lex_state = 2}, + [647] = {.lex_state = 51, .external_lex_state = 2}, + [648] = {.lex_state = 51, .external_lex_state = 2}, + [649] = {.lex_state = 51, .external_lex_state = 2}, + [650] = {.lex_state = 51, .external_lex_state = 2}, + [651] = {.lex_state = 51, .external_lex_state = 2}, + [652] = {.lex_state = 51, .external_lex_state = 2}, + [653] = {.lex_state = 51, .external_lex_state = 2}, + [654] = {.lex_state = 51, .external_lex_state = 2}, + [655] = {.lex_state = 51, .external_lex_state = 2}, + [656] = {.lex_state = 51, .external_lex_state = 2}, + [657] = {.lex_state = 51, .external_lex_state = 2}, + [658] = {.lex_state = 51, .external_lex_state = 2}, + [659] = {.lex_state = 51, .external_lex_state = 2}, + [660] = {.lex_state = 51, .external_lex_state = 2}, + [661] = {.lex_state = 51, .external_lex_state = 2}, + [662] = {.lex_state = 51, .external_lex_state = 2}, + [663] = {.lex_state = 51, .external_lex_state = 2}, + [664] = {.lex_state = 51, .external_lex_state = 2}, + [665] = {.lex_state = 51, .external_lex_state = 2}, + [666] = {.lex_state = 51, .external_lex_state = 2}, + [667] = {.lex_state = 51, .external_lex_state = 2}, + [668] = {.lex_state = 51, .external_lex_state = 2}, + [669] = {.lex_state = 51, .external_lex_state = 2}, + [670] = {.lex_state = 51, .external_lex_state = 2}, + [671] = {.lex_state = 51, .external_lex_state = 2}, + [672] = {.lex_state = 51, .external_lex_state = 2}, + [673] = {.lex_state = 51, .external_lex_state = 2}, + [674] = {.lex_state = 51, .external_lex_state = 2}, + [675] = {.lex_state = 51, .external_lex_state = 2}, + [676] = {.lex_state = 51, .external_lex_state = 2}, + [677] = {.lex_state = 51, .external_lex_state = 2}, + [678] = {.lex_state = 51, .external_lex_state = 2}, + [679] = {.lex_state = 51, .external_lex_state = 2}, + [680] = {.lex_state = 51, .external_lex_state = 2}, + [681] = {.lex_state = 51, .external_lex_state = 2}, + [682] = {.lex_state = 51, .external_lex_state = 2}, + [683] = {.lex_state = 51, .external_lex_state = 2}, + [684] = {.lex_state = 51, .external_lex_state = 2}, + [685] = {.lex_state = 51, .external_lex_state = 2}, + [686] = {.lex_state = 51, .external_lex_state = 2}, + [687] = {.lex_state = 51, .external_lex_state = 2}, + [688] = {.lex_state = 51, .external_lex_state = 2}, + [689] = {.lex_state = 51, .external_lex_state = 2}, + [690] = {.lex_state = 51, .external_lex_state = 2}, + [691] = {.lex_state = 51, .external_lex_state = 2}, + [692] = {.lex_state = 51, .external_lex_state = 2}, + [693] = {.lex_state = 51, .external_lex_state = 2}, + [694] = {.lex_state = 51, .external_lex_state = 2}, + [695] = {.lex_state = 16, .external_lex_state = 8}, + [696] = {.lex_state = 16, .external_lex_state = 9}, + [697] = {.lex_state = 16, .external_lex_state = 8}, + [698] = {.lex_state = 16, .external_lex_state = 9}, + [699] = {.lex_state = 16}, + [700] = {.lex_state = 16}, + [701] = {.lex_state = 16}, + [702] = {.lex_state = 16}, [703] = {.lex_state = 16}, - [704] = {.lex_state = 16, .external_lex_state = 7}, - [705] = {.lex_state = 16, .external_lex_state = 6}, - [706] = {.lex_state = 16, .external_lex_state = 6}, - [707] = {.lex_state = 16, .external_lex_state = 6}, - [708] = {.lex_state = 16, .external_lex_state = 6}, - [709] = {.lex_state = 16, .external_lex_state = 8}, - [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 = 9}, - [716] = {.lex_state = 16, .external_lex_state = 8}, - [717] = {.lex_state = 16, .external_lex_state = 6}, + [704] = {.lex_state = 16}, + [705] = {.lex_state = 16}, + [706] = {.lex_state = 16}, + [707] = {.lex_state = 16}, + [708] = {.lex_state = 16}, + [709] = {.lex_state = 16}, + [710] = {.lex_state = 16}, + [711] = {.lex_state = 16}, + [712] = {.lex_state = 15}, + [713] = {.lex_state = 15}, + [714] = {.lex_state = 16}, + [715] = {.lex_state = 16}, + [716] = {.lex_state = 16}, + [717] = {.lex_state = 16}, [718] = {.lex_state = 16}, - [719] = {.lex_state = 16, .external_lex_state = 9}, - [720] = {.lex_state = 16, .external_lex_state = 8}, - [721] = {.lex_state = 16, .external_lex_state = 6}, - [722] = {.lex_state = 16, .external_lex_state = 9}, - [723] = {.lex_state = 16, .external_lex_state = 6}, + [719] = {.lex_state = 16}, + [720] = {.lex_state = 16}, + [721] = {.lex_state = 16}, + [722] = {.lex_state = 16}, + [723] = {.lex_state = 16}, [724] = {.lex_state = 16}, - [725] = {.lex_state = 16, .external_lex_state = 10}, - [726] = {.lex_state = 16, .external_lex_state = 10}, - [727] = {.lex_state = 15, .external_lex_state = 6}, - [728] = {.lex_state = 50, .external_lex_state = 2}, - [729] = {.lex_state = 15}, - [730] = {.lex_state = 15, .external_lex_state = 6}, + [725] = {.lex_state = 16}, + [726] = {.lex_state = 16}, + [727] = {.lex_state = 16}, + [728] = {.lex_state = 16}, + [729] = {.lex_state = 16}, + [730] = {.lex_state = 16}, [731] = {.lex_state = 16}, [732] = {.lex_state = 16}, - [733] = {.lex_state = 50, .external_lex_state = 2}, + [733] = {.lex_state = 16}, [734] = {.lex_state = 16}, [735] = {.lex_state = 16}, [736] = {.lex_state = 16}, - [737] = {.lex_state = 14, .external_lex_state = 2}, + [737] = {.lex_state = 16}, [738] = {.lex_state = 16}, [739] = {.lex_state = 16}, [740] = {.lex_state = 16}, [741] = {.lex_state = 16}, [742] = {.lex_state = 16}, - [743] = {.lex_state = 16, .external_lex_state = 7}, - [744] = {.lex_state = 16}, - [745] = {.lex_state = 16}, - [746] = {.lex_state = 16}, - [747] = {.lex_state = 15}, + [743] = {.lex_state = 16}, + [744] = {.lex_state = 16, .external_lex_state = 8}, + [745] = {.lex_state = 16, .external_lex_state = 9}, + [746] = {.lex_state = 16, .external_lex_state = 8}, + [747] = {.lex_state = 16, .external_lex_state = 9}, [748] = {.lex_state = 16}, - [749] = {.lex_state = 15}, - [750] = {.lex_state = 14, .external_lex_state = 2}, + [749] = {.lex_state = 16}, + [750] = {.lex_state = 16}, [751] = {.lex_state = 16}, [752] = {.lex_state = 16}, [753] = {.lex_state = 16}, - [754] = {.lex_state = 15}, - [755] = {.lex_state = 16, .external_lex_state = 7}, + [754] = {.lex_state = 16}, + [755] = {.lex_state = 16}, [756] = {.lex_state = 16}, - [757] = {.lex_state = 16, .external_lex_state = 6}, - [758] = {.lex_state = 16, .external_lex_state = 6}, - [759] = {.lex_state = 16, .external_lex_state = 6}, - [760] = {.lex_state = 16, .external_lex_state = 6}, - [761] = {.lex_state = 16, .external_lex_state = 6}, - [762] = {.lex_state = 15}, - [763] = {.lex_state = 16, .external_lex_state = 6}, - [764] = {.lex_state = 16, .external_lex_state = 6}, - [765] = {.lex_state = 50, .external_lex_state = 2}, - [766] = {.lex_state = 50, .external_lex_state = 2}, - [767] = {.lex_state = 16, .external_lex_state = 6}, - [768] = {.lex_state = 50, .external_lex_state = 2}, - [769] = {.lex_state = 16, .external_lex_state = 6}, - [770] = {.lex_state = 16}, - [771] = {.lex_state = 50, .external_lex_state = 2}, - [772] = {.lex_state = 16, .external_lex_state = 6}, - [773] = {.lex_state = 50, .external_lex_state = 2}, - [774] = {.lex_state = 50, .external_lex_state = 2}, - [775] = {.lex_state = 16, .external_lex_state = 6}, - [776] = {.lex_state = 16, .external_lex_state = 6}, - [777] = {.lex_state = 16, .external_lex_state = 6}, - [778] = {.lex_state = 15}, + [757] = {.lex_state = 16}, + [758] = {.lex_state = 16}, + [759] = {.lex_state = 16}, + [760] = {.lex_state = 16}, + [761] = {.lex_state = 16}, + [762] = {.lex_state = 15, .external_lex_state = 9}, + [763] = {.lex_state = 16, .external_lex_state = 10}, + [764] = {.lex_state = 16}, + [765] = {.lex_state = 16, .external_lex_state = 7}, + [766] = {.lex_state = 15}, + [767] = {.lex_state = 15, .external_lex_state = 8}, + [768] = {.lex_state = 15, .external_lex_state = 9}, + [769] = {.lex_state = 15, .external_lex_state = 8}, + [770] = {.lex_state = 15, .external_lex_state = 9}, + [771] = {.lex_state = 15, .external_lex_state = 8}, + [772] = {.lex_state = 16}, + [773] = {.lex_state = 16}, + [774] = {.lex_state = 16}, + [775] = {.lex_state = 16, .external_lex_state = 7}, + [776] = {.lex_state = 16, .external_lex_state = 10}, + [777] = {.lex_state = 16}, + [778] = {.lex_state = 16, .external_lex_state = 10}, [779] = {.lex_state = 16, .external_lex_state = 6}, - [780] = {.lex_state = 16, .external_lex_state = 6}, - [781] = {.lex_state = 16, .external_lex_state = 6}, - [782] = {.lex_state = 16, .external_lex_state = 6}, - [783] = {.lex_state = 16, .external_lex_state = 6}, - [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 = 16, .external_lex_state = 6}, - [789] = {.lex_state = 16, .external_lex_state = 6}, - [790] = {.lex_state = 16, .external_lex_state = 6}, - [791] = {.lex_state = 16, .external_lex_state = 6}, - [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}, - [797] = {.lex_state = 16, .external_lex_state = 6}, - [798] = {.lex_state = 16, .external_lex_state = 6}, + [780] = {.lex_state = 16}, + [781] = {.lex_state = 16}, + [782] = {.lex_state = 16, .external_lex_state = 7}, + [783] = {.lex_state = 15}, + [784] = {.lex_state = 15}, + [785] = {.lex_state = 15}, + [786] = {.lex_state = 15}, + [787] = {.lex_state = 15}, + [788] = {.lex_state = 15}, + [789] = {.lex_state = 15}, + [790] = {.lex_state = 16}, + [791] = {.lex_state = 15}, + [792] = {.lex_state = 15}, + [793] = {.lex_state = 15}, + [794] = {.lex_state = 16, .external_lex_state = 8}, + [795] = {.lex_state = 16, .external_lex_state = 9}, + [796] = {.lex_state = 16, .external_lex_state = 6}, + [797] = {.lex_state = 15}, + [798] = {.lex_state = 15}, [799] = {.lex_state = 16, .external_lex_state = 6}, - [800] = {.lex_state = 16}, - [801] = {.lex_state = 16}, - [802] = {.lex_state = 16}, - [803] = {.lex_state = 15}, - [804] = {.lex_state = 50, .external_lex_state = 2}, - [805] = {.lex_state = 16}, - [806] = {.lex_state = 16}, - [807] = {.lex_state = 50, .external_lex_state = 2}, - [808] = {.lex_state = 16}, - [809] = {.lex_state = 16}, - [810] = {.lex_state = 50, .external_lex_state = 2}, - [811] = {.lex_state = 16}, + [800] = {.lex_state = 16, .external_lex_state = 6}, + [801] = {.lex_state = 16, .external_lex_state = 6}, + [802] = {.lex_state = 16, .external_lex_state = 6}, + [803] = {.lex_state = 16}, + [804] = {.lex_state = 16, .external_lex_state = 6}, + [805] = {.lex_state = 16, .external_lex_state = 6}, + [806] = {.lex_state = 16, .external_lex_state = 8}, + [807] = {.lex_state = 16, .external_lex_state = 9}, + [808] = {.lex_state = 16, .external_lex_state = 8}, + [809] = {.lex_state = 16, .external_lex_state = 9}, + [810] = {.lex_state = 16, .external_lex_state = 6}, + [811] = {.lex_state = 16, .external_lex_state = 6}, [812] = {.lex_state = 16}, [813] = {.lex_state = 16}, [814] = {.lex_state = 16}, @@ -6958,14 +7225,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [820] = {.lex_state = 16}, [821] = {.lex_state = 16}, [822] = {.lex_state = 16}, - [823] = {.lex_state = 50, .external_lex_state = 2}, - [824] = {.lex_state = 16}, - [825] = {.lex_state = 15}, - [826] = {.lex_state = 16}, - [827] = {.lex_state = 16}, + [823] = {.lex_state = 16, .external_lex_state = 6}, + [824] = {.lex_state = 16, .external_lex_state = 6}, + [825] = {.lex_state = 16, .external_lex_state = 6}, + [826] = {.lex_state = 16, .external_lex_state = 6}, + [827] = {.lex_state = 16, .external_lex_state = 10}, [828] = {.lex_state = 16}, [829] = {.lex_state = 16}, - [830] = {.lex_state = 16}, + [830] = {.lex_state = 16, .external_lex_state = 10}, [831] = {.lex_state = 16}, [832] = {.lex_state = 16}, [833] = {.lex_state = 16}, @@ -6974,754 +7241,894 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [836] = {.lex_state = 16}, [837] = {.lex_state = 16}, [838] = {.lex_state = 16}, - [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 = 50, .external_lex_state = 2}, - [844] = {.lex_state = 14}, - [845] = {.lex_state = 14}, - [846] = {.lex_state = 14}, - [847] = {.lex_state = 14}, - [848] = {.lex_state = 14}, - [849] = {.lex_state = 14}, - [850] = {.lex_state = 0, .external_lex_state = 6}, - [851] = {.lex_state = 50, .external_lex_state = 2}, + [839] = {.lex_state = 16}, + [840] = {.lex_state = 15}, + [841] = {.lex_state = 15, .external_lex_state = 8}, + [842] = {.lex_state = 16}, + [843] = {.lex_state = 16}, + [844] = {.lex_state = 16}, + [845] = {.lex_state = 16}, + [846] = {.lex_state = 51, .external_lex_state = 2}, + [847] = {.lex_state = 16, .external_lex_state = 7}, + [848] = {.lex_state = 16}, + [849] = {.lex_state = 16}, + [850] = {.lex_state = 15, .external_lex_state = 8}, + [851] = {.lex_state = 15, .external_lex_state = 9}, [852] = {.lex_state = 16}, - [853] = {.lex_state = 14}, - [854] = {.lex_state = 14}, - [855] = {.lex_state = 50, .external_lex_state = 2}, - [856] = {.lex_state = 0, .external_lex_state = 6}, - [857] = {.lex_state = 14}, - [858] = {.lex_state = 50, .external_lex_state = 2}, - [859] = {.lex_state = 16}, - [860] = {.lex_state = 14}, - [861] = {.lex_state = 14}, - [862] = {.lex_state = 16}, - [863] = {.lex_state = 14}, - [864] = {.lex_state = 14}, - [865] = {.lex_state = 14}, - [866] = {.lex_state = 14}, - [867] = {.lex_state = 14}, - [868] = {.lex_state = 14}, - [869] = {.lex_state = 14}, - [870] = {.lex_state = 50, .external_lex_state = 2}, - [871] = {.lex_state = 0}, - [872] = {.lex_state = 0}, - [873] = {.lex_state = 0}, - [874] = {.lex_state = 14}, - [875] = {.lex_state = 14}, - [876] = {.lex_state = 14}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 0}, - [879] = {.lex_state = 14}, - [880] = {.lex_state = 14}, - [881] = {.lex_state = 16}, - [882] = {.lex_state = 16}, - [883] = {.lex_state = 14}, - [884] = {.lex_state = 14}, - [885] = {.lex_state = 14}, - [886] = {.lex_state = 14}, - [887] = {.lex_state = 14}, - [888] = {.lex_state = 14}, - [889] = {.lex_state = 14}, - [890] = {.lex_state = 14}, - [891] = {.lex_state = 14, .external_lex_state = 9}, - [892] = {.lex_state = 14, .external_lex_state = 8}, - [893] = {.lex_state = 14}, - [894] = {.lex_state = 16}, - [895] = {.lex_state = 14}, - [896] = {.lex_state = 14}, - [897] = {.lex_state = 14}, - [898] = {.lex_state = 14}, - [899] = {.lex_state = 14}, - [900] = {.lex_state = 14}, - [901] = {.lex_state = 14}, - [902] = {.lex_state = 16}, - [903] = {.lex_state = 0}, - [904] = {.lex_state = 14}, - [905] = {.lex_state = 14}, - [906] = {.lex_state = 18, .external_lex_state = 11}, - [907] = {.lex_state = 18, .external_lex_state = 11}, - [908] = {.lex_state = 0}, - [909] = {.lex_state = 0}, - [910] = {.lex_state = 14}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 0}, - [913] = {.lex_state = 18, .external_lex_state = 11}, - [914] = {.lex_state = 18, .external_lex_state = 11}, - [915] = {.lex_state = 18, .external_lex_state = 11}, - [916] = {.lex_state = 18, .external_lex_state = 11}, - [917] = {.lex_state = 14}, - [918] = {.lex_state = 18, .external_lex_state = 11}, - [919] = {.lex_state = 18, .external_lex_state = 11}, - [920] = {.lex_state = 18, .external_lex_state = 11}, - [921] = {.lex_state = 0}, - [922] = {.lex_state = 18, .external_lex_state = 11}, - [923] = {.lex_state = 18, .external_lex_state = 11}, - [924] = {.lex_state = 14}, - [925] = {.lex_state = 18, .external_lex_state = 11}, - [926] = {.lex_state = 18, .external_lex_state = 11}, - [927] = {.lex_state = 14}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 18, .external_lex_state = 11}, - [930] = {.lex_state = 0}, - [931] = {.lex_state = 14}, - [932] = {.lex_state = 18, .external_lex_state = 11}, - [933] = {.lex_state = 0}, - [934] = {.lex_state = 14}, - [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 = 0}, - [943] = {.lex_state = 0}, - [944] = {.lex_state = 14}, - [945] = {.lex_state = 0}, - [946] = {.lex_state = 14}, - [947] = {.lex_state = 14}, - [948] = {.lex_state = 14}, - [949] = {.lex_state = 14}, - [950] = {.lex_state = 14}, - [951] = {.lex_state = 0, .external_lex_state = 6}, - [952] = {.lex_state = 14}, - [953] = {.lex_state = 0, .external_lex_state = 6}, - [954] = {.lex_state = 14}, - [955] = {.lex_state = 0, .external_lex_state = 6}, - [956] = {.lex_state = 14}, - [957] = {.lex_state = 14}, - [958] = {.lex_state = 14}, - [959] = {.lex_state = 14}, - [960] = {.lex_state = 0}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 14}, - [963] = {.lex_state = 0, .external_lex_state = 6}, - [964] = {.lex_state = 14}, - [965] = {.lex_state = 14}, - [966] = {.lex_state = 14}, - [967] = {.lex_state = 0}, - [968] = {.lex_state = 14}, - [969] = {.lex_state = 0, .external_lex_state = 6}, - [970] = {.lex_state = 0, .external_lex_state = 6}, - [971] = {.lex_state = 14}, - [972] = {.lex_state = 0, .external_lex_state = 6}, - [973] = {.lex_state = 0}, - [974] = {.lex_state = 14}, - [975] = {.lex_state = 14}, - [976] = {.lex_state = 0}, - [977] = {.lex_state = 14}, - [978] = {.lex_state = 0}, - [979] = {.lex_state = 0, .external_lex_state = 6}, - [980] = {.lex_state = 14}, + [853] = {.lex_state = 16, .external_lex_state = 6}, + [854] = {.lex_state = 51, .external_lex_state = 2}, + [855] = {.lex_state = 16}, + [856] = {.lex_state = 51, .external_lex_state = 2}, + [857] = {.lex_state = 16}, + [858] = {.lex_state = 16}, + [859] = {.lex_state = 15, .external_lex_state = 9}, + [860] = {.lex_state = 16}, + [861] = {.lex_state = 16, .external_lex_state = 7}, + [862] = {.lex_state = 51, .external_lex_state = 2}, + [863] = {.lex_state = 16}, + [864] = {.lex_state = 16}, + [865] = {.lex_state = 15}, + [866] = {.lex_state = 15}, + [867] = {.lex_state = 16, .external_lex_state = 6}, + [868] = {.lex_state = 15}, + [869] = {.lex_state = 15}, + [870] = {.lex_state = 16}, + [871] = {.lex_state = 16}, + [872] = {.lex_state = 15}, + [873] = {.lex_state = 15}, + [874] = {.lex_state = 15}, + [875] = {.lex_state = 15}, + [876] = {.lex_state = 15}, + [877] = {.lex_state = 15}, + [878] = {.lex_state = 16, .external_lex_state = 6}, + [879] = {.lex_state = 15}, + [880] = {.lex_state = 15}, + [881] = {.lex_state = 15}, + [882] = {.lex_state = 15}, + [883] = {.lex_state = 15}, + [884] = {.lex_state = 15}, + [885] = {.lex_state = 15}, + [886] = {.lex_state = 16, .external_lex_state = 6}, + [887] = {.lex_state = 15}, + [888] = {.lex_state = 15}, + [889] = {.lex_state = 15}, + [890] = {.lex_state = 15}, + [891] = {.lex_state = 16, .external_lex_state = 6}, + [892] = {.lex_state = 15}, + [893] = {.lex_state = 15}, + [894] = {.lex_state = 15}, + [895] = {.lex_state = 15}, + [896] = {.lex_state = 15}, + [897] = {.lex_state = 15}, + [898] = {.lex_state = 15}, + [899] = {.lex_state = 15}, + [900] = {.lex_state = 15}, + [901] = {.lex_state = 16, .external_lex_state = 6}, + [902] = {.lex_state = 16, .external_lex_state = 6}, + [903] = {.lex_state = 16, .external_lex_state = 6}, + [904] = {.lex_state = 16, .external_lex_state = 6}, + [905] = {.lex_state = 16, .external_lex_state = 6}, + [906] = {.lex_state = 15}, + [907] = {.lex_state = 16, .external_lex_state = 6}, + [908] = {.lex_state = 16, .external_lex_state = 6}, + [909] = {.lex_state = 16, .external_lex_state = 6}, + [910] = {.lex_state = 16, .external_lex_state = 6}, + [911] = {.lex_state = 16}, + [912] = {.lex_state = 16}, + [913] = {.lex_state = 16, .external_lex_state = 6}, + [914] = {.lex_state = 16, .external_lex_state = 6}, + [915] = {.lex_state = 16}, + [916] = {.lex_state = 16, .external_lex_state = 6}, + [917] = {.lex_state = 16, .external_lex_state = 6}, + [918] = {.lex_state = 16, .external_lex_state = 6}, + [919] = {.lex_state = 16}, + [920] = {.lex_state = 16, .external_lex_state = 6}, + [921] = {.lex_state = 16, .external_lex_state = 6}, + [922] = {.lex_state = 16, .external_lex_state = 6}, + [923] = {.lex_state = 16, .external_lex_state = 6}, + [924] = {.lex_state = 15}, + [925] = {.lex_state = 16}, + [926] = {.lex_state = 16, .external_lex_state = 6}, + [927] = {.lex_state = 51, .external_lex_state = 2}, + [928] = {.lex_state = 51, .external_lex_state = 2}, + [929] = {.lex_state = 16, .external_lex_state = 6}, + [930] = {.lex_state = 16, .external_lex_state = 6}, + [931] = {.lex_state = 16, .external_lex_state = 6}, + [932] = {.lex_state = 51, .external_lex_state = 2}, + [933] = {.lex_state = 51, .external_lex_state = 2}, + [934] = {.lex_state = 51, .external_lex_state = 2}, + [935] = {.lex_state = 51, .external_lex_state = 2}, + [936] = {.lex_state = 16, .external_lex_state = 6}, + [937] = {.lex_state = 16, .external_lex_state = 6}, + [938] = {.lex_state = 15}, + [939] = {.lex_state = 15}, + [940] = {.lex_state = 16, .external_lex_state = 6}, + [941] = {.lex_state = 16, .external_lex_state = 6}, + [942] = {.lex_state = 16, .external_lex_state = 6}, + [943] = {.lex_state = 16, .external_lex_state = 6}, + [944] = {.lex_state = 16, .external_lex_state = 6}, + [945] = {.lex_state = 16}, + [946] = {.lex_state = 16}, + [947] = {.lex_state = 16}, + [948] = {.lex_state = 16}, + [949] = {.lex_state = 16}, + [950] = {.lex_state = 16}, + [951] = {.lex_state = 16}, + [952] = {.lex_state = 16}, + [953] = {.lex_state = 16}, + [954] = {.lex_state = 16}, + [955] = {.lex_state = 16}, + [956] = {.lex_state = 16}, + [957] = {.lex_state = 16}, + [958] = {.lex_state = 16}, + [959] = {.lex_state = 16}, + [960] = {.lex_state = 16}, + [961] = {.lex_state = 16}, + [962] = {.lex_state = 16}, + [963] = {.lex_state = 16}, + [964] = {.lex_state = 51, .external_lex_state = 2}, + [965] = {.lex_state = 16}, + [966] = {.lex_state = 16}, + [967] = {.lex_state = 16}, + [968] = {.lex_state = 16}, + [969] = {.lex_state = 16}, + [970] = {.lex_state = 16}, + [971] = {.lex_state = 16}, + [972] = {.lex_state = 16}, + [973] = {.lex_state = 16}, + [974] = {.lex_state = 16}, + [975] = {.lex_state = 16}, + [976] = {.lex_state = 16}, + [977] = {.lex_state = 16}, + [978] = {.lex_state = 16}, + [979] = {.lex_state = 51, .external_lex_state = 2}, + [980] = {.lex_state = 51, .external_lex_state = 2}, [981] = {.lex_state = 16}, - [982] = {.lex_state = 14}, - [983] = {.lex_state = 14}, - [984] = {.lex_state = 0, .external_lex_state = 6}, - [985] = {.lex_state = 0, .external_lex_state = 6}, - [986] = {.lex_state = 14}, - [987] = {.lex_state = 0}, - [988] = {.lex_state = 0}, - [989] = {.lex_state = 0, .external_lex_state = 6}, - [990] = {.lex_state = 14}, - [991] = {.lex_state = 14}, + [982] = {.lex_state = 51, .external_lex_state = 2}, + [983] = {.lex_state = 16}, + [984] = {.lex_state = 51, .external_lex_state = 2}, + [985] = {.lex_state = 51, .external_lex_state = 2}, + [986] = {.lex_state = 51, .external_lex_state = 2}, + [987] = {.lex_state = 51, .external_lex_state = 2}, + [988] = {.lex_state = 51, .external_lex_state = 2}, + [989] = {.lex_state = 51}, + [990] = {.lex_state = 0}, + [991] = {.lex_state = 51}, [992] = {.lex_state = 0}, - [993] = {.lex_state = 14}, - [994] = {.lex_state = 14}, - [995] = {.lex_state = 0}, - [996] = {.lex_state = 14}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 0}, - [999] = {.lex_state = 14}, - [1000] = {.lex_state = 14}, - [1001] = {.lex_state = 14}, + [993] = {.lex_state = 51}, + [994] = {.lex_state = 51, .external_lex_state = 2}, + [995] = {.lex_state = 14}, + [996] = {.lex_state = 51, .external_lex_state = 2}, + [997] = {.lex_state = 51}, + [998] = {.lex_state = 51}, + [999] = {.lex_state = 51}, + [1000] = {.lex_state = 16}, + [1001] = {.lex_state = 16}, [1002] = {.lex_state = 0, .external_lex_state = 6}, [1003] = {.lex_state = 0, .external_lex_state = 6}, - [1004] = {.lex_state = 0}, - [1005] = {.lex_state = 0, .external_lex_state = 6}, - [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 0}, - [1008] = {.lex_state = 0, .external_lex_state = 6}, - [1009] = {.lex_state = 0, .external_lex_state = 6}, - [1010] = {.lex_state = 14}, - [1011] = {.lex_state = 0}, - [1012] = {.lex_state = 0, .external_lex_state = 6}, - [1013] = {.lex_state = 16}, - [1014] = {.lex_state = 14}, - [1015] = {.lex_state = 14}, - [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 0}, - [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 14}, - [1020] = {.lex_state = 0}, - [1021] = {.lex_state = 14}, - [1022] = {.lex_state = 14}, - [1023] = {.lex_state = 0}, - [1024] = {.lex_state = 14}, - [1025] = {.lex_state = 0}, - [1026] = {.lex_state = 0, .external_lex_state = 6}, - [1027] = {.lex_state = 14}, + [1004] = {.lex_state = 51}, + [1005] = {.lex_state = 51}, + [1006] = {.lex_state = 14}, + [1007] = {.lex_state = 51}, + [1008] = {.lex_state = 51, .external_lex_state = 2}, + [1009] = {.lex_state = 51}, + [1010] = {.lex_state = 51}, + [1011] = {.lex_state = 51}, + [1012] = {.lex_state = 16}, + [1013] = {.lex_state = 51}, + [1014] = {.lex_state = 51}, + [1015] = {.lex_state = 51}, + [1016] = {.lex_state = 51}, + [1017] = {.lex_state = 51}, + [1018] = {.lex_state = 51}, + [1019] = {.lex_state = 51}, + [1020] = {.lex_state = 51}, + [1021] = {.lex_state = 51, .external_lex_state = 2}, + [1022] = {.lex_state = 0}, + [1023] = {.lex_state = 51}, + [1024] = {.lex_state = 51}, + [1025] = {.lex_state = 51}, + [1026] = {.lex_state = 0}, + [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, - [1029] = {.lex_state = 14}, - [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 = 14}, - [1034] = {.lex_state = 14}, + [1029] = {.lex_state = 0}, + [1030] = {.lex_state = 51}, + [1031] = {.lex_state = 51}, + [1032] = {.lex_state = 16}, + [1033] = {.lex_state = 18, .external_lex_state = 11}, + [1034] = {.lex_state = 51}, [1035] = {.lex_state = 18, .external_lex_state = 11}, - [1036] = {.lex_state = 14}, + [1036] = {.lex_state = 18, .external_lex_state = 11}, [1037] = {.lex_state = 18, .external_lex_state = 11}, - [1038] = {.lex_state = 16, .external_lex_state = 6}, - [1039] = {.lex_state = 16}, - [1040] = {.lex_state = 14}, - [1041] = {.lex_state = 16, .external_lex_state = 6}, - [1042] = {.lex_state = 14}, - [1043] = {.lex_state = 0}, + [1038] = {.lex_state = 16}, + [1039] = {.lex_state = 51, .external_lex_state = 8}, + [1040] = {.lex_state = 51, .external_lex_state = 9}, + [1041] = {.lex_state = 0}, + [1042] = {.lex_state = 16}, + [1043] = {.lex_state = 18, .external_lex_state = 11}, [1044] = {.lex_state = 18, .external_lex_state = 11}, - [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 18, .external_lex_state = 11}, - [1047] = {.lex_state = 16, .external_lex_state = 6}, + [1045] = {.lex_state = 18, .external_lex_state = 11}, + [1046] = {.lex_state = 51}, + [1047] = {.lex_state = 18, .external_lex_state = 11}, [1048] = {.lex_state = 18, .external_lex_state = 11}, - [1049] = {.lex_state = 14}, - [1050] = {.lex_state = 14}, - [1051] = {.lex_state = 16}, - [1052] = {.lex_state = 14}, - [1053] = {.lex_state = 0, .external_lex_state = 6}, + [1049] = {.lex_state = 16}, + [1050] = {.lex_state = 18, .external_lex_state = 11}, + [1051] = {.lex_state = 18, .external_lex_state = 11}, + [1052] = {.lex_state = 18, .external_lex_state = 11}, + [1053] = {.lex_state = 18, .external_lex_state = 11}, [1054] = {.lex_state = 18, .external_lex_state = 11}, - [1055] = {.lex_state = 14}, + [1055] = {.lex_state = 18, .external_lex_state = 11}, [1056] = {.lex_state = 18, .external_lex_state = 11}, - [1057] = {.lex_state = 14}, - [1058] = {.lex_state = 14}, - [1059] = {.lex_state = 14}, - [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 14}, - [1062] = {.lex_state = 14}, - [1063] = {.lex_state = 0, .external_lex_state = 6}, - [1064] = {.lex_state = 14}, - [1065] = {.lex_state = 14}, - [1066] = {.lex_state = 14}, - [1067] = {.lex_state = 18, .external_lex_state = 11}, - [1068] = {.lex_state = 0, .external_lex_state = 6}, - [1069] = {.lex_state = 0, .external_lex_state = 6}, - [1070] = {.lex_state = 14}, - [1071] = {.lex_state = 14}, - [1072] = {.lex_state = 8}, - [1073] = {.lex_state = 0, .external_lex_state = 6}, + [1057] = {.lex_state = 18, .external_lex_state = 11}, + [1058] = {.lex_state = 18, .external_lex_state = 11}, + [1059] = {.lex_state = 18, .external_lex_state = 11}, + [1060] = {.lex_state = 51}, + [1061] = {.lex_state = 51}, + [1062] = {.lex_state = 0}, + [1063] = {.lex_state = 51}, + [1064] = {.lex_state = 0}, + [1065] = {.lex_state = 51}, + [1066] = {.lex_state = 0}, + [1067] = {.lex_state = 0}, + [1068] = {.lex_state = 0}, + [1069] = {.lex_state = 0}, + [1070] = {.lex_state = 51}, + [1071] = {.lex_state = 51}, + [1072] = {.lex_state = 51}, + [1073] = {.lex_state = 0}, [1074] = {.lex_state = 0}, [1075] = {.lex_state = 0}, - [1076] = {.lex_state = 14}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0, .external_lex_state = 6}, + [1076] = {.lex_state = 0}, + [1077] = {.lex_state = 51}, + [1078] = {.lex_state = 51}, [1079] = {.lex_state = 0}, - [1080] = {.lex_state = 0, .external_lex_state = 6}, - [1081] = {.lex_state = 0, .external_lex_state = 6}, - [1082] = {.lex_state = 0, .external_lex_state = 6}, + [1080] = {.lex_state = 0}, + [1081] = {.lex_state = 0}, + [1082] = {.lex_state = 51}, [1083] = {.lex_state = 0}, - [1084] = {.lex_state = 14}, + [1084] = {.lex_state = 0}, [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 14}, + [1086] = {.lex_state = 0}, [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 14}, - [1089] = {.lex_state = 14}, + [1088] = {.lex_state = 0}, + [1089] = {.lex_state = 51}, [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 0, .external_lex_state = 6}, + [1091] = {.lex_state = 51}, [1092] = {.lex_state = 0}, - [1093] = {.lex_state = 0, .external_lex_state = 6}, - [1094] = {.lex_state = 0, .external_lex_state = 6}, - [1095] = {.lex_state = 0}, - [1096] = {.lex_state = 0, .external_lex_state = 6}, - [1097] = {.lex_state = 0, .external_lex_state = 6}, - [1098] = {.lex_state = 8}, + [1093] = {.lex_state = 14}, + [1094] = {.lex_state = 0}, + [1095] = {.lex_state = 14}, + [1096] = {.lex_state = 51}, + [1097] = {.lex_state = 51}, + [1098] = {.lex_state = 0}, [1099] = {.lex_state = 0}, [1100] = {.lex_state = 0}, - [1101] = {.lex_state = 0, .external_lex_state = 6}, - [1102] = {.lex_state = 0}, + [1101] = {.lex_state = 51}, + [1102] = {.lex_state = 51}, [1103] = {.lex_state = 14}, - [1104] = {.lex_state = 8}, - [1105] = {.lex_state = 0, .external_lex_state = 6}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 16, .external_lex_state = 6}, - [1108] = {.lex_state = 0}, + [1104] = {.lex_state = 14}, + [1105] = {.lex_state = 14}, + [1106] = {.lex_state = 14}, + [1107] = {.lex_state = 14}, + [1108] = {.lex_state = 14}, [1109] = {.lex_state = 0, .external_lex_state = 6}, - [1110] = {.lex_state = 0, .external_lex_state = 6}, - [1111] = {.lex_state = 0, .external_lex_state = 6}, + [1110] = {.lex_state = 51}, + [1111] = {.lex_state = 0}, [1112] = {.lex_state = 14}, [1113] = {.lex_state = 0}, - [1114] = {.lex_state = 16}, - [1115] = {.lex_state = 14}, - [1116] = {.lex_state = 0}, - [1117] = {.lex_state = 14}, + [1114] = {.lex_state = 51}, + [1115] = {.lex_state = 51}, + [1116] = {.lex_state = 51}, + [1117] = {.lex_state = 51}, [1118] = {.lex_state = 0}, - [1119] = {.lex_state = 14, .external_lex_state = 9}, - [1120] = {.lex_state = 14, .external_lex_state = 8}, - [1121] = {.lex_state = 14}, - [1122] = {.lex_state = 0}, - [1123] = {.lex_state = 0}, - [1124] = {.lex_state = 0, .external_lex_state = 6}, + [1119] = {.lex_state = 51}, + [1120] = {.lex_state = 51}, + [1121] = {.lex_state = 0, .external_lex_state = 6}, + [1122] = {.lex_state = 0, .external_lex_state = 6}, + [1123] = {.lex_state = 0, .external_lex_state = 6}, + [1124] = {.lex_state = 51}, [1125] = {.lex_state = 14}, - [1126] = {.lex_state = 14}, - [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 14}, - [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0, .external_lex_state = 6}, - [1131] = {.lex_state = 0, .external_lex_state = 6}, - [1132] = {.lex_state = 0, .external_lex_state = 6}, - [1133] = {.lex_state = 0, .external_lex_state = 6}, - [1134] = {.lex_state = 0, .external_lex_state = 6}, + [1126] = {.lex_state = 51}, + [1127] = {.lex_state = 51}, + [1128] = {.lex_state = 0}, + [1129] = {.lex_state = 14}, + [1130] = {.lex_state = 51}, + [1131] = {.lex_state = 51}, + [1132] = {.lex_state = 51}, + [1133] = {.lex_state = 18, .external_lex_state = 11}, + [1134] = {.lex_state = 51}, [1135] = {.lex_state = 0, .external_lex_state = 6}, [1136] = {.lex_state = 0}, - [1137] = {.lex_state = 0}, - [1138] = {.lex_state = 0}, - [1139] = {.lex_state = 14}, - [1140] = {.lex_state = 0, .external_lex_state = 6}, - [1141] = {.lex_state = 14}, - [1142] = {.lex_state = 0}, - [1143] = {.lex_state = 0, .external_lex_state = 6}, + [1137] = {.lex_state = 51}, + [1138] = {.lex_state = 51}, + [1139] = {.lex_state = 16}, + [1140] = {.lex_state = 51}, + [1141] = {.lex_state = 0, .external_lex_state = 6}, + [1142] = {.lex_state = 51}, + [1143] = {.lex_state = 51}, [1144] = {.lex_state = 0, .external_lex_state = 6}, [1145] = {.lex_state = 0, .external_lex_state = 6}, [1146] = {.lex_state = 0}, - [1147] = {.lex_state = 0}, + [1147] = {.lex_state = 18, .external_lex_state = 11}, [1148] = {.lex_state = 0}, - [1149] = {.lex_state = 0}, - [1150] = {.lex_state = 14}, - [1151] = {.lex_state = 14}, - [1152] = {.lex_state = 14}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 14}, - [1155] = {.lex_state = 0, .external_lex_state = 6}, + [1149] = {.lex_state = 51}, + [1150] = {.lex_state = 51}, + [1151] = {.lex_state = 51}, + [1152] = {.lex_state = 51}, + [1153] = {.lex_state = 51}, + [1154] = {.lex_state = 51}, + [1155] = {.lex_state = 0}, [1156] = {.lex_state = 0, .external_lex_state = 6}, - [1157] = {.lex_state = 14}, - [1158] = {.lex_state = 14}, - [1159] = {.lex_state = 0, .external_lex_state = 6}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 14}, - [1162] = {.lex_state = 14}, - [1163] = {.lex_state = 0}, - [1164] = {.lex_state = 0}, - [1165] = {.lex_state = 0}, - [1166] = {.lex_state = 14}, - [1167] = {.lex_state = 0, .external_lex_state = 6}, - [1168] = {.lex_state = 0, .external_lex_state = 6}, - [1169] = {.lex_state = 14}, + [1157] = {.lex_state = 51}, + [1158] = {.lex_state = 0, .external_lex_state = 6}, + [1159] = {.lex_state = 51}, + [1160] = {.lex_state = 51}, + [1161] = {.lex_state = 51}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 0, .external_lex_state = 6}, + [1164] = {.lex_state = 14}, + [1165] = {.lex_state = 14}, + [1166] = {.lex_state = 51}, + [1167] = {.lex_state = 51}, + [1168] = {.lex_state = 14}, + [1169] = {.lex_state = 0}, [1170] = {.lex_state = 0}, - [1171] = {.lex_state = 16}, - [1172] = {.lex_state = 0}, + [1171] = {.lex_state = 0}, + [1172] = {.lex_state = 51}, [1173] = {.lex_state = 0}, [1174] = {.lex_state = 0}, - [1175] = {.lex_state = 0}, - [1176] = {.lex_state = 0}, - [1177] = {.lex_state = 0}, - [1178] = {.lex_state = 14}, - [1179] = {.lex_state = 14}, - [1180] = {.lex_state = 0}, - [1181] = {.lex_state = 0, .external_lex_state = 6}, + [1175] = {.lex_state = 0, .external_lex_state = 6}, + [1176] = {.lex_state = 51}, + [1177] = {.lex_state = 0, .external_lex_state = 6}, + [1178] = {.lex_state = 0}, + [1179] = {.lex_state = 0, .external_lex_state = 6}, + [1180] = {.lex_state = 0, .external_lex_state = 6}, + [1181] = {.lex_state = 0}, [1182] = {.lex_state = 0}, [1183] = {.lex_state = 14}, - [1184] = {.lex_state = 14}, + [1184] = {.lex_state = 51}, [1185] = {.lex_state = 0, .external_lex_state = 6}, - [1186] = {.lex_state = 14}, + [1186] = {.lex_state = 51}, [1187] = {.lex_state = 0}, - [1188] = {.lex_state = 0}, + [1188] = {.lex_state = 51}, [1189] = {.lex_state = 0}, [1190] = {.lex_state = 0}, - [1191] = {.lex_state = 8}, - [1192] = {.lex_state = 0}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 0, .external_lex_state = 6}, - [1196] = {.lex_state = 0, .external_lex_state = 6}, - [1197] = {.lex_state = 0}, - [1198] = {.lex_state = 14}, + [1191] = {.lex_state = 0, .external_lex_state = 6}, + [1192] = {.lex_state = 51}, + [1193] = {.lex_state = 51}, + [1194] = {.lex_state = 51}, + [1195] = {.lex_state = 51}, + [1196] = {.lex_state = 14}, + [1197] = {.lex_state = 0, .external_lex_state = 6}, + [1198] = {.lex_state = 0}, [1199] = {.lex_state = 0, .external_lex_state = 6}, - [1200] = {.lex_state = 0}, - [1201] = {.lex_state = 0}, - [1202] = {.lex_state = 0}, + [1200] = {.lex_state = 51}, + [1201] = {.lex_state = 16}, + [1202] = {.lex_state = 0, .external_lex_state = 6}, [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 0}, - [1205] = {.lex_state = 0}, + [1204] = {.lex_state = 51}, + [1205] = {.lex_state = 51}, [1206] = {.lex_state = 0}, - [1207] = {.lex_state = 0}, - [1208] = {.lex_state = 0}, - [1209] = {.lex_state = 14}, - [1210] = {.lex_state = 14}, - [1211] = {.lex_state = 0, .external_lex_state = 6}, - [1212] = {.lex_state = 0, .external_lex_state = 6}, - [1213] = {.lex_state = 0}, + [1207] = {.lex_state = 51}, + [1208] = {.lex_state = 51}, + [1209] = {.lex_state = 51}, + [1210] = {.lex_state = 51}, + [1211] = {.lex_state = 0}, + [1212] = {.lex_state = 0}, + [1213] = {.lex_state = 0, .external_lex_state = 6}, [1214] = {.lex_state = 0}, - [1215] = {.lex_state = 0}, - [1216] = {.lex_state = 0}, - [1217] = {.lex_state = 0, .external_lex_state = 6}, - [1218] = {.lex_state = 0}, - [1219] = {.lex_state = 0}, - [1220] = {.lex_state = 0}, - [1221] = {.lex_state = 0}, - [1222] = {.lex_state = 14}, - [1223] = {.lex_state = 0}, - [1224] = {.lex_state = 16}, + [1215] = {.lex_state = 14}, + [1216] = {.lex_state = 16}, + [1217] = {.lex_state = 18, .external_lex_state = 11}, + [1218] = {.lex_state = 18, .external_lex_state = 11}, + [1219] = {.lex_state = 16, .external_lex_state = 6}, + [1220] = {.lex_state = 51}, + [1221] = {.lex_state = 14}, + [1222] = {.lex_state = 51}, + [1223] = {.lex_state = 18, .external_lex_state = 11}, + [1224] = {.lex_state = 0, .external_lex_state = 6}, [1225] = {.lex_state = 0}, - [1226] = {.lex_state = 0}, + [1226] = {.lex_state = 0, .external_lex_state = 6}, [1227] = {.lex_state = 0, .external_lex_state = 6}, - [1228] = {.lex_state = 0, .external_lex_state = 6}, - [1229] = {.lex_state = 0}, - [1230] = {.lex_state = 0}, - [1231] = {.lex_state = 0, .external_lex_state = 6}, - [1232] = {.lex_state = 0}, - [1233] = {.lex_state = 0}, - [1234] = {.lex_state = 0}, - [1235] = {.lex_state = 0}, - [1236] = {.lex_state = 0}, - [1237] = {.lex_state = 0}, - [1238] = {.lex_state = 14}, - [1239] = {.lex_state = 14}, - [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 8}, - [1242] = {.lex_state = 0}, - [1243] = {.lex_state = 0}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 8}, - [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 0}, + [1228] = {.lex_state = 51}, + [1229] = {.lex_state = 51}, + [1230] = {.lex_state = 51}, + [1231] = {.lex_state = 51}, + [1232] = {.lex_state = 51}, + [1233] = {.lex_state = 16, .external_lex_state = 6}, + [1234] = {.lex_state = 16, .external_lex_state = 6}, + [1235] = {.lex_state = 51}, + [1236] = {.lex_state = 51}, + [1237] = {.lex_state = 51}, + [1238] = {.lex_state = 0}, + [1239] = {.lex_state = 51}, + [1240] = {.lex_state = 51}, + [1241] = {.lex_state = 16}, + [1242] = {.lex_state = 51}, + [1243] = {.lex_state = 51}, + [1244] = {.lex_state = 51}, + [1245] = {.lex_state = 18, .external_lex_state = 11}, + [1246] = {.lex_state = 51}, + [1247] = {.lex_state = 51}, [1248] = {.lex_state = 0}, - [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 0}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 14}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 8}, - [1255] = {.lex_state = 8}, - [1256] = {.lex_state = 0, .external_lex_state = 6}, + [1249] = {.lex_state = 51}, + [1250] = {.lex_state = 0, .external_lex_state = 6}, + [1251] = {.lex_state = 14}, + [1252] = {.lex_state = 18, .external_lex_state = 11}, + [1253] = {.lex_state = 18, .external_lex_state = 11}, + [1254] = {.lex_state = 51}, + [1255] = {.lex_state = 0, .external_lex_state = 6}, + [1256] = {.lex_state = 51}, [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0}, + [1258] = {.lex_state = 0, .external_lex_state = 6}, [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 0}, + [1260] = {.lex_state = 0, .external_lex_state = 6}, [1261] = {.lex_state = 0}, - [1262] = {.lex_state = 0, .external_lex_state = 6}, - [1263] = {.lex_state = 0}, + [1262] = {.lex_state = 0}, + [1263] = {.lex_state = 51}, [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 14}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 14}, - [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 14}, - [1271] = {.lex_state = 14}, - [1272] = {.lex_state = 14}, - [1273] = {.lex_state = 0}, + [1265] = {.lex_state = 14}, + [1266] = {.lex_state = 0}, + [1267] = {.lex_state = 51}, + [1268] = {.lex_state = 0}, + [1269] = {.lex_state = 0, .external_lex_state = 6}, + [1270] = {.lex_state = 0}, + [1271] = {.lex_state = 0, .external_lex_state = 6}, + [1272] = {.lex_state = 0}, + [1273] = {.lex_state = 14}, [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 0}, - [1276] = {.lex_state = 14}, - [1277] = {.lex_state = 14}, - [1278] = {.lex_state = 14}, - [1279] = {.lex_state = 0}, - [1280] = {.lex_state = 0}, - [1281] = {.lex_state = 0}, - [1282] = {.lex_state = 14}, - [1283] = {.lex_state = 0}, - [1284] = {.lex_state = 14}, - [1285] = {.lex_state = 0}, + [1275] = {.lex_state = 0, .external_lex_state = 6}, + [1276] = {.lex_state = 0}, + [1277] = {.lex_state = 51}, + [1278] = {.lex_state = 0, .external_lex_state = 6}, + [1279] = {.lex_state = 0, .external_lex_state = 6}, + [1280] = {.lex_state = 0, .external_lex_state = 6}, + [1281] = {.lex_state = 51}, + [1282] = {.lex_state = 0}, + [1283] = {.lex_state = 10}, + [1284] = {.lex_state = 10}, + [1285] = {.lex_state = 0, .external_lex_state = 6}, [1286] = {.lex_state = 0}, [1287] = {.lex_state = 14}, - [1288] = {.lex_state = 14}, - [1289] = {.lex_state = 0, .external_lex_state = 6}, + [1288] = {.lex_state = 10}, + [1289] = {.lex_state = 16, .external_lex_state = 6}, [1290] = {.lex_state = 0, .external_lex_state = 6}, [1291] = {.lex_state = 0}, - [1292] = {.lex_state = 14}, + [1292] = {.lex_state = 0, .external_lex_state = 6}, [1293] = {.lex_state = 0}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 0}, - [1296] = {.lex_state = 0}, + [1294] = {.lex_state = 51}, + [1295] = {.lex_state = 51}, + [1296] = {.lex_state = 51}, [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 14}, + [1298] = {.lex_state = 0}, [1299] = {.lex_state = 0, .external_lex_state = 6}, [1300] = {.lex_state = 0}, [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0}, + [1302] = {.lex_state = 14}, + [1303] = {.lex_state = 0, .external_lex_state = 6}, [1304] = {.lex_state = 0}, [1305] = {.lex_state = 0}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 14}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0, .external_lex_state = 6}, + [1306] = {.lex_state = 0, .external_lex_state = 6}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 51}, + [1309] = {.lex_state = 0, .external_lex_state = 6}, + [1310] = {.lex_state = 14}, + [1311] = {.lex_state = 0}, [1312] = {.lex_state = 0}, [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0, .external_lex_state = 6}, - [1315] = {.lex_state = 0, .external_lex_state = 6}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 0}, [1316] = {.lex_state = 0, .external_lex_state = 6}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 0}, - [1319] = {.lex_state = 0}, - [1320] = {.lex_state = 17}, + [1317] = {.lex_state = 51, .external_lex_state = 8}, + [1318] = {.lex_state = 51, .external_lex_state = 9}, + [1319] = {.lex_state = 0, .external_lex_state = 6}, + [1320] = {.lex_state = 0, .external_lex_state = 6}, [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 0}, + [1322] = {.lex_state = 51}, [1323] = {.lex_state = 0}, - [1324] = {.lex_state = 0}, - [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 0}, + [1324] = {.lex_state = 0, .external_lex_state = 6}, + [1325] = {.lex_state = 51}, + [1326] = {.lex_state = 0, .external_lex_state = 6}, [1327] = {.lex_state = 0}, [1328] = {.lex_state = 0}, - [1329] = {.lex_state = 0, .external_lex_state = 6}, - [1330] = {.lex_state = 0, .external_lex_state = 6}, - [1331] = {.lex_state = 14}, - [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 0}, - [1334] = {.lex_state = 17}, - [1335] = {.lex_state = 0, .external_lex_state = 6}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 0, .external_lex_state = 6}, + [1329] = {.lex_state = 0}, + [1330] = {.lex_state = 0}, + [1331] = {.lex_state = 51}, + [1332] = {.lex_state = 0, .external_lex_state = 6}, + [1333] = {.lex_state = 0, .external_lex_state = 6}, + [1334] = {.lex_state = 51}, + [1335] = {.lex_state = 0}, + [1336] = {.lex_state = 16}, + [1337] = {.lex_state = 0, .external_lex_state = 6}, + [1338] = {.lex_state = 51}, [1339] = {.lex_state = 0}, [1340] = {.lex_state = 0, .external_lex_state = 6}, - [1341] = {.lex_state = 16}, - [1342] = {.lex_state = 0}, + [1341] = {.lex_state = 51}, + [1342] = {.lex_state = 51}, [1343] = {.lex_state = 0, .external_lex_state = 6}, - [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 14}, - [1346] = {.lex_state = 14}, - [1347] = {.lex_state = 17}, - [1348] = {.lex_state = 17}, - [1349] = {.lex_state = 17}, - [1350] = {.lex_state = 17}, - [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 0, .external_lex_state = 6}, - [1353] = {.lex_state = 17}, - [1354] = {.lex_state = 14}, - [1355] = {.lex_state = 17}, - [1356] = {.lex_state = 0, .external_lex_state = 6}, + [1344] = {.lex_state = 0, .external_lex_state = 6}, + [1345] = {.lex_state = 0}, + [1346] = {.lex_state = 51}, + [1347] = {.lex_state = 51}, + [1348] = {.lex_state = 0, .external_lex_state = 6}, + [1349] = {.lex_state = 51}, + [1350] = {.lex_state = 51}, + [1351] = {.lex_state = 51}, + [1352] = {.lex_state = 51}, + [1353] = {.lex_state = 0, .external_lex_state = 6}, + [1354] = {.lex_state = 0, .external_lex_state = 6}, + [1355] = {.lex_state = 0, .external_lex_state = 6}, + [1356] = {.lex_state = 0}, [1357] = {.lex_state = 0, .external_lex_state = 6}, - [1358] = {.lex_state = 0}, - [1359] = {.lex_state = 17}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 17}, - [1364] = {.lex_state = 0}, + [1358] = {.lex_state = 0, .external_lex_state = 6}, + [1359] = {.lex_state = 0, .external_lex_state = 6}, + [1360] = {.lex_state = 0, .external_lex_state = 6}, + [1361] = {.lex_state = 51}, + [1362] = {.lex_state = 16}, + [1363] = {.lex_state = 0}, + [1364] = {.lex_state = 51}, [1365] = {.lex_state = 0, .external_lex_state = 6}, [1366] = {.lex_state = 0}, [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0}, - [1369] = {.lex_state = 0, .external_lex_state = 6}, + [1368] = {.lex_state = 0, .external_lex_state = 6}, + [1369] = {.lex_state = 0}, [1370] = {.lex_state = 0}, [1371] = {.lex_state = 0}, [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 0}, + [1373] = {.lex_state = 0, .external_lex_state = 6}, [1374] = {.lex_state = 0}, [1375] = {.lex_state = 0}, [1376] = {.lex_state = 0}, - [1377] = {.lex_state = 0, .external_lex_state = 6}, + [1377] = {.lex_state = 0}, [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 14}, - [1380] = {.lex_state = 0, .external_lex_state = 6}, - [1381] = {.lex_state = 0, .external_lex_state = 6}, + [1379] = {.lex_state = 51}, + [1380] = {.lex_state = 10}, + [1381] = {.lex_state = 0}, [1382] = {.lex_state = 0}, [1383] = {.lex_state = 0}, [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 14}, + [1385] = {.lex_state = 51}, [1386] = {.lex_state = 0}, [1387] = {.lex_state = 0}, [1388] = {.lex_state = 0}, [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 0}, + [1390] = {.lex_state = 51}, + [1391] = {.lex_state = 51}, [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 14}, + [1393] = {.lex_state = 0, .external_lex_state = 6}, + [1394] = {.lex_state = 51}, + [1395] = {.lex_state = 0}, [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 14}, + [1397] = {.lex_state = 0}, [1398] = {.lex_state = 0}, [1399] = {.lex_state = 0}, [1400] = {.lex_state = 0}, [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 14}, + [1402] = {.lex_state = 0}, [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, + [1404] = {.lex_state = 0, .external_lex_state = 6}, [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 14}, + [1406] = {.lex_state = 0, .external_lex_state = 6}, [1407] = {.lex_state = 0}, [1408] = {.lex_state = 0}, [1409] = {.lex_state = 0}, [1410] = {.lex_state = 0}, [1411] = {.lex_state = 0}, [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 14}, + [1413] = {.lex_state = 0}, [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 14}, + [1415] = {.lex_state = 0}, [1416] = {.lex_state = 0}, [1417] = {.lex_state = 0}, [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 0}, - [1421] = {.lex_state = 0}, + [1419] = {.lex_state = 14}, + [1420] = {.lex_state = 0, .external_lex_state = 6}, + [1421] = {.lex_state = 0, .external_lex_state = 6}, [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 14}, + [1423] = {.lex_state = 0}, [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 14}, + [1425] = {.lex_state = 0}, [1426] = {.lex_state = 0}, [1427] = {.lex_state = 0}, [1428] = {.lex_state = 0}, [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 14}, - [1431] = {.lex_state = 14}, - [1432] = {.lex_state = 14}, - [1433] = {.lex_state = 14}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 14}, + [1430] = {.lex_state = 0}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 0}, + [1433] = {.lex_state = 0}, + [1434] = {.lex_state = 51}, + [1435] = {.lex_state = 0}, [1436] = {.lex_state = 0}, - [1437] = {.lex_state = 14}, + [1437] = {.lex_state = 0}, [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 14}, - [1440] = {.lex_state = 14}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 0}, [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 0}, + [1442] = {.lex_state = 51}, [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 14}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 14}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 14}, - [1449] = {.lex_state = 14}, - [1450] = {.lex_state = 14}, - [1451] = {.lex_state = 14}, - [1452] = {.lex_state = 14}, - [1453] = {.lex_state = 14}, + [1444] = {.lex_state = 51}, + [1445] = {.lex_state = 51}, + [1446] = {.lex_state = 51}, + [1447] = {.lex_state = 51}, + [1448] = {.lex_state = 0}, + [1449] = {.lex_state = 0}, + [1450] = {.lex_state = 0}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 51}, + [1453] = {.lex_state = 51}, [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 0}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 0}, - [1459] = {.lex_state = 14}, + [1455] = {.lex_state = 10}, + [1456] = {.lex_state = 51}, + [1457] = {.lex_state = 14}, + [1458] = {.lex_state = 14}, + [1459] = {.lex_state = 0}, [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 14}, + [1461] = {.lex_state = 0}, [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 14}, - [1465] = {.lex_state = 14}, - [1466] = {.lex_state = 14}, + [1463] = {.lex_state = 0, .external_lex_state = 6}, + [1464] = {.lex_state = 51}, + [1465] = {.lex_state = 51}, + [1466] = {.lex_state = 0}, [1467] = {.lex_state = 0}, [1468] = {.lex_state = 0}, [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 14}, - [1472] = {.lex_state = 14}, + [1470] = {.lex_state = 0, .external_lex_state = 6}, + [1471] = {.lex_state = 51}, + [1472] = {.lex_state = 0}, [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 14}, - [1475] = {.lex_state = 0}, + [1474] = {.lex_state = 0}, + [1475] = {.lex_state = 0, .external_lex_state = 6}, [1476] = {.lex_state = 0}, [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 14}, - [1479] = {.lex_state = 14}, + [1478] = {.lex_state = 16}, + [1479] = {.lex_state = 51}, [1480] = {.lex_state = 0}, [1481] = {.lex_state = 0}, - [1482] = {.lex_state = 0}, + [1482] = {.lex_state = 10}, [1483] = {.lex_state = 0}, [1484] = {.lex_state = 0}, [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 0}, + [1486] = {.lex_state = 0, .external_lex_state = 6}, [1487] = {.lex_state = 0}, [1488] = {.lex_state = 0}, [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 14}, + [1490] = {.lex_state = 0}, [1491] = {.lex_state = 0}, [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 0}, - [1494] = {.lex_state = 0}, + [1493] = {.lex_state = 51}, + [1494] = {.lex_state = 14}, [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 14}, - [1497] = {.lex_state = 0}, + [1496] = {.lex_state = 0}, + [1497] = {.lex_state = 10}, [1498] = {.lex_state = 0}, [1499] = {.lex_state = 0}, [1500] = {.lex_state = 0}, - [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 14}, + [1501] = {.lex_state = 51}, + [1502] = {.lex_state = 10}, + [1503] = {.lex_state = 0}, [1504] = {.lex_state = 0}, [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 14}, - [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 14}, + [1506] = {.lex_state = 51}, + [1507] = {.lex_state = 0, .external_lex_state = 6}, + [1508] = {.lex_state = 0}, [1509] = {.lex_state = 0}, -}; - -enum { - ts_external_token__newline = 0, - ts_external_token__indent = 1, - ts_external_token__dedent = 2, - 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] = { - [ts_external_token__newline] = sym__newline, - [ts_external_token__indent] = sym__indent, - [ts_external_token__dedent] = sym__dedent, - [ts_external_token__string_start] = sym__string_start, - [ts_external_token__string_content] = sym__string_content, - [ts_external_token__string_end] = sym__string_end, - [ts_external_token__template_string_start] = sym__template_string_start, -}; - -static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token__newline] = true, - [ts_external_token__indent] = true, - [ts_external_token__dedent] = true, - [ts_external_token__string_start] = true, - [ts_external_token__string_content] = true, - [ts_external_token__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__string_start] = true, - }, - [9] = { - [ts_external_token__template_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, - }, + [1510] = {.lex_state = 0}, + [1511] = {.lex_state = 17}, + [1512] = {.lex_state = 0}, + [1513] = {.lex_state = 17}, + [1514] = {.lex_state = 0, .external_lex_state = 6}, + [1515] = {.lex_state = 0}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 0, .external_lex_state = 6}, + [1518] = {.lex_state = 0, .external_lex_state = 6}, + [1519] = {.lex_state = 0}, + [1520] = {.lex_state = 51}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 0}, + [1523] = {.lex_state = 0, .external_lex_state = 6}, + [1524] = {.lex_state = 0}, + [1525] = {.lex_state = 0, .external_lex_state = 6}, + [1526] = {.lex_state = 0}, + [1527] = {.lex_state = 0, .external_lex_state = 6}, + [1528] = {.lex_state = 0, .external_lex_state = 6}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 0, .external_lex_state = 6}, + [1531] = {.lex_state = 0, .external_lex_state = 6}, + [1532] = {.lex_state = 0, .external_lex_state = 6}, + [1533] = {.lex_state = 0, .external_lex_state = 6}, + [1534] = {.lex_state = 0}, + [1535] = {.lex_state = 0, .external_lex_state = 6}, + [1536] = {.lex_state = 0}, + [1537] = {.lex_state = 0, .external_lex_state = 6}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 17}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 17}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 17}, + [1544] = {.lex_state = 0}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 17}, + [1547] = {.lex_state = 17}, + [1548] = {.lex_state = 51}, + [1549] = {.lex_state = 0}, + [1550] = {.lex_state = 51}, + [1551] = {.lex_state = 0, .external_lex_state = 6}, + [1552] = {.lex_state = 51}, + [1553] = {.lex_state = 0}, + [1554] = {.lex_state = 17}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 0}, + [1557] = {.lex_state = 0}, + [1558] = {.lex_state = 0}, + [1559] = {.lex_state = 0}, + [1560] = {.lex_state = 0}, + [1561] = {.lex_state = 0}, + [1562] = {.lex_state = 16}, + [1563] = {.lex_state = 0}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 51}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 0}, + [1568] = {.lex_state = 0, .external_lex_state = 6}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 0}, + [1571] = {.lex_state = 17}, + [1572] = {.lex_state = 0, .external_lex_state = 6}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 0}, + [1575] = {.lex_state = 0}, + [1576] = {.lex_state = 0}, + [1577] = {.lex_state = 0}, + [1578] = {.lex_state = 0}, + [1579] = {.lex_state = 0, .external_lex_state = 6}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 17}, + [1583] = {.lex_state = 51}, + [1584] = {.lex_state = 0}, + [1585] = {.lex_state = 0}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 0}, + [1588] = {.lex_state = 51}, + [1589] = {.lex_state = 51}, + [1590] = {.lex_state = 51}, + [1591] = {.lex_state = 0}, + [1592] = {.lex_state = 0}, + [1593] = {.lex_state = 51}, + [1594] = {.lex_state = 0}, + [1595] = {.lex_state = 0}, + [1596] = {.lex_state = 0}, + [1597] = {.lex_state = 51}, + [1598] = {.lex_state = 51}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 0}, + [1601] = {.lex_state = 51}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 51}, + [1604] = {.lex_state = 51}, + [1605] = {.lex_state = 0}, + [1606] = {.lex_state = 51}, + [1607] = {.lex_state = 51}, + [1608] = {.lex_state = 51}, + [1609] = {.lex_state = 51}, + [1610] = {.lex_state = 51}, + [1611] = {.lex_state = 0}, + [1612] = {.lex_state = 0}, + [1613] = {.lex_state = 0}, + [1614] = {.lex_state = 0}, + [1615] = {.lex_state = 0}, + [1616] = {.lex_state = 51}, + [1617] = {.lex_state = 51}, + [1618] = {.lex_state = 51}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 51}, + [1621] = {.lex_state = 51}, + [1622] = {.lex_state = 51}, + [1623] = {.lex_state = 0}, + [1624] = {.lex_state = 0}, + [1625] = {.lex_state = 51}, + [1626] = {.lex_state = 0}, + [1627] = {.lex_state = 0}, + [1628] = {.lex_state = 0}, + [1629] = {.lex_state = 0}, + [1630] = {.lex_state = 51}, + [1631] = {.lex_state = 0}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 0}, + [1634] = {.lex_state = 0}, + [1635] = {.lex_state = 0}, + [1636] = {.lex_state = 0}, + [1637] = {.lex_state = 51}, + [1638] = {.lex_state = 0}, + [1639] = {.lex_state = 51}, + [1640] = {.lex_state = 51}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 51}, + [1643] = {.lex_state = 0}, + [1644] = {.lex_state = 0}, + [1645] = {.lex_state = 0}, + [1646] = {.lex_state = 51}, + [1647] = {.lex_state = 0}, + [1648] = {.lex_state = 0}, + [1649] = {.lex_state = 0}, + [1650] = {.lex_state = 0}, + [1651] = {.lex_state = 0}, + [1652] = {.lex_state = 0}, + [1653] = {.lex_state = 0}, + [1654] = {.lex_state = 0}, + [1655] = {.lex_state = 0}, + [1656] = {.lex_state = 0}, + [1657] = {.lex_state = 0}, + [1658] = {.lex_state = 0}, + [1659] = {.lex_state = 0}, + [1660] = {.lex_state = 0}, + [1661] = {.lex_state = 0}, + [1662] = {.lex_state = 0}, + [1663] = {.lex_state = 0}, + [1664] = {.lex_state = 0}, + [1665] = {.lex_state = 0}, + [1666] = {.lex_state = 51}, + [1667] = {.lex_state = 0}, + [1668] = {.lex_state = 51}, + [1669] = {.lex_state = 0}, + [1670] = {.lex_state = 51}, + [1671] = {.lex_state = 0}, + [1672] = {.lex_state = 0}, + [1673] = {.lex_state = 51}, + [1674] = {.lex_state = 0}, + [1675] = {.lex_state = 0}, + [1676] = {.lex_state = 51}, + [1677] = {.lex_state = 0}, + [1678] = {.lex_state = 0}, + [1679] = {.lex_state = 0}, + [1680] = {.lex_state = 0}, + [1681] = {.lex_state = 0}, + [1682] = {.lex_state = 51}, + [1683] = {.lex_state = 0}, + [1684] = {.lex_state = 0}, + [1685] = {.lex_state = 0}, + [1686] = {.lex_state = 0}, + [1687] = {.lex_state = 0}, + [1688] = {.lex_state = 51}, + [1689] = {.lex_state = 51}, + [1690] = {.lex_state = 51}, + [1691] = {.lex_state = 0}, + [1692] = {.lex_state = 0}, + [1693] = {.lex_state = 0}, + [1694] = {.lex_state = 0}, + [1695] = {.lex_state = 0}, + [1696] = {.lex_state = 0}, + [1697] = {.lex_state = 51}, + [1698] = {.lex_state = 0}, + [1699] = {.lex_state = 0}, + [1700] = {.lex_state = 0}, + [1701] = {.lex_state = 0}, + [1702] = {.lex_state = 0}, + [1703] = {.lex_state = 0}, + [1704] = {.lex_state = 0}, + [1705] = {.lex_state = 0}, + [1706] = {.lex_state = 0}, + [1707] = {.lex_state = 0}, + [1708] = {.lex_state = 0}, + [1709] = {.lex_state = 0}, + [1710] = {.lex_state = 51}, + [1711] = {.lex_state = 51}, + [1712] = {.lex_state = 51}, + [1713] = {.lex_state = 0}, + [1714] = {.lex_state = 0}, + [1715] = {.lex_state = 0}, + [1716] = {.lex_state = 0}, + [1717] = {.lex_state = 0}, + [1718] = {.lex_state = 0}, + [1719] = {.lex_state = 0}, + [1720] = {.lex_state = 0}, + [1721] = {.lex_state = 0}, + [1722] = {.lex_state = 51}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), @@ -7810,6 +8217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(1), [sym_ellipsis] = ACTIONS(1), [anon_sym_LBRACE2] = ACTIONS(1), + [anon_sym_COLON2] = ACTIONS(1), [sym_type_conversion] = ACTIONS(1), [sym_integer] = ACTIONS(1), [sym_float] = ACTIONS(1), @@ -7818,7 +8226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(1), [sym_none] = ACTIONS(1), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), [sym__newline] = ACTIONS(1), [sym__indent] = ACTIONS(1), [sym__dedent] = ACTIONS(1), @@ -7827,140 +8235,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_end] = ACTIONS(1), [sym__template_string_start] = ACTIONS(1), }, - [1] = { - [sym_module] = STATE(1488), - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(960), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(960), - [ts_builtin_sym_end] = ACTIONS(5), - [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_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(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(65), - [anon_sym_AT] = ACTIONS(67), - [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), - }, - [2] = { + [STATE(1)] = { + [sym_module] = STATE(1655), [sym__statement] = STATE(62), [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), [sym_if_statement] = STATE(62), [sym_for_statement] = STATE(62), [sym_while_statement] = STATE(62), @@ -7968,171 +8259,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(62), [sym_match_statement] = STATE(62), [sym_function_definition] = STATE(62), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), [sym_class_definition] = STATE(62), [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(535), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1118), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), - [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_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(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(101), - [anon_sym_AT] = ACTIONS(67), - [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__dedent] = ACTIONS(103), - [sym__string_start] = ACTIONS(81), - [sym__template_string_start] = ACTIONS(83), - }, - [3] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(517), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1118), + [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8146,24 +8319,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(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_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(99), + [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(101), + [anon_sym_class] = ACTIONS(65), [anon_sym_AT] = ACTIONS(67), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), @@ -8177,80 +8350,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(105), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [4] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(407), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(2)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(327), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8299,76 +8471,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [5] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(392), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(3)] = { + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(1181), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8417,22 +8589,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [6] = { + [STATE(4)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -8440,53 +8612,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(403), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(322), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8531,80 +8703,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), }, - [7] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(485), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(5)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(490), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8649,80 +8821,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [8] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(291), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(6)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(540), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8767,26 +8939,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(103), + [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [9] = { + [STATE(7)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -8794,53 +8966,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(427), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(547), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -8885,26 +9057,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [10] = { + [STATE(8)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -8912,53 +9084,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(304), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(605), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9003,26 +9175,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [11] = { + [STATE(9)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -9030,53 +9202,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(516), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(519), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9121,80 +9293,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), }, - [12] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(435), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(10)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(522), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9239,80 +9411,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [13] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(497), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(11)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(524), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9357,80 +9529,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [14] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(450), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(12)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(526), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9475,80 +9647,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [15] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(528), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(13)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(484), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9593,80 +9765,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [16] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(398), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(14)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(456), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9711,80 +9883,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [17] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(562), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(15)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(529), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9829,80 +10001,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [18] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(544), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(16)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(532), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -9947,80 +10119,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [19] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(444), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(17)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(533), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10065,26 +10237,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(103), + [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [20] = { + [STATE(18)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -10092,53 +10264,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(514), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(498), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10183,26 +10355,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [21] = { + [STATE(19)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -10210,53 +10382,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(462), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(476), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10301,26 +10473,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [22] = { + [STATE(20)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -10328,53 +10500,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(406), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(538), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10419,26 +10591,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [23] = { + [STATE(21)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -10446,53 +10618,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(503), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(455), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10537,26 +10709,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [24] = { + [STATE(22)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -10564,171 +10736,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(543), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(499), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), - [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_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(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(101), - [anon_sym_AT] = ACTIONS(67), - [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__dedent] = ACTIONS(105), - [sym__string_start] = ACTIONS(81), - [sym__template_string_start] = ACTIONS(83), - }, - [25] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(961), - [sym_block] = STATE(998), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10777,22 +10831,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [26] = { + [STATE(23)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -10800,53 +10854,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(419), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(542), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -10891,80 +10945,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), }, - [27] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(519), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(24)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(471), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11009,26 +11063,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(103), + [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [28] = { + [STATE(25)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -11036,53 +11090,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(512), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(545), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11127,26 +11181,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [29] = { + [STATE(26)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -11154,53 +11208,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(460), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(457), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11245,80 +11299,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), }, - [30] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(454), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(27)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(501), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11363,80 +11417,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [31] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(565), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(28)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(548), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11481,26 +11535,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(103), + [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [32] = { + [STATE(29)] = { [sym__statement] = STATE(63), [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), [sym_if_statement] = STATE(63), [sym_for_statement] = STATE(63), [sym_while_statement] = STATE(63), @@ -11508,53 +11562,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(63), [sym_match_statement] = STATE(63), [sym_function_definition] = STATE(63), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), [sym_class_definition] = STATE(63), [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(496), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(448), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11599,80 +11653,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), }, - [33] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(395), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(30)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(449), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11717,80 +11771,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(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [34] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(402), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(31)] = { + [sym__statement] = STATE(61), + [sym__simple_statements] = STATE(61), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(61), + [sym_decorated_definition] = STATE(61), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(1173), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(61), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11839,76 +11893,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [35] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(546), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(32)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(477), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -11957,76 +12011,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [36] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(470), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(33)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(563), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12071,80 +12125,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), }, - [37] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(556), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(34)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(565), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12193,76 +12247,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [38] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(538), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(35)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(570), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12307,80 +12361,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(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(494), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(36)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(576), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12425,80 +12479,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), }, - [40] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(436), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(37)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(578), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12543,80 +12597,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), }, - [41] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(432), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(38)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(580), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12665,76 +12719,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [42] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(466), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(39)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(583), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12779,80 +12833,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), }, - [43] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(457), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(40)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(469), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -12901,76 +12955,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [44] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(474), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(41)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(438), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13015,80 +13069,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(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(492), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(42)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(586), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13133,80 +13187,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), }, - [46] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(475), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(43)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(590), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13251,80 +13305,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(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(490), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(44)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(591), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13373,76 +13427,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [48] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(488), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(45)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(492), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13487,80 +13541,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), }, - [49] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(400), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(46)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(466), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13609,76 +13663,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [50] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(554), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(47)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(594), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13727,76 +13781,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [51] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(540), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(48)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(441), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13845,76 +13899,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [52] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(506), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(49)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(505), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -13963,76 +14017,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [53] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(480), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(50)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(598), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14077,80 +14131,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), }, - [54] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(426), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(51)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(486), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14199,76 +14253,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [55] = { - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(421), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(52)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(601), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14313,80 +14367,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(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(961), - [sym_block] = STATE(408), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(53)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(443), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14431,80 +14485,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), }, - [57] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(405), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(54)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(507), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14553,76 +14607,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [58] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(961), - [sym_block] = STATE(534), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(55)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(603), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14671,76 +14725,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [59] = { - [sym__statement] = STATE(61), - [sym__simple_statements] = STATE(61), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(61), - [sym_decorated_definition] = STATE(61), - [sym_decorator] = STATE(961), - [sym_block] = STATE(1011), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(61), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(56)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(604), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -14785,196 +14839,198 @@ 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__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [60] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(961), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(961), - [sym_identifier] = ACTIONS(109), - [anon_sym_import] = ACTIONS(112), - [anon_sym_from] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_STAR] = ACTIONS(121), - [anon_sym_print] = ACTIONS(124), - [anon_sym_assert] = ACTIONS(127), - [anon_sym_return] = ACTIONS(130), - [anon_sym_del] = ACTIONS(133), - [anon_sym_raise] = ACTIONS(136), - [anon_sym_pass] = ACTIONS(139), - [anon_sym_break] = ACTIONS(142), - [anon_sym_continue] = ACTIONS(145), - [anon_sym_if] = ACTIONS(148), - [anon_sym_async] = ACTIONS(151), - [anon_sym_for] = ACTIONS(154), - [anon_sym_while] = ACTIONS(157), - [anon_sym_try] = ACTIONS(160), - [anon_sym_with] = ACTIONS(163), - [anon_sym_match] = ACTIONS(166), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(169), - [anon_sym_LBRACK] = ACTIONS(172), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_STAR] = ACTIONS(178), - [anon_sym_def] = ACTIONS(181), - [anon_sym_global] = ACTIONS(184), - [anon_sym_nonlocal] = ACTIONS(187), - [anon_sym_exec] = ACTIONS(190), - [anon_sym_type] = ACTIONS(193), - [anon_sym_class] = ACTIONS(196), - [anon_sym_AT] = ACTIONS(199), - [anon_sym_not] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_lambda] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(208), - [sym_ellipsis] = ACTIONS(211), - [sym_integer] = ACTIONS(214), - [sym_float] = ACTIONS(211), - [anon_sym_await] = ACTIONS(217), - [sym_true] = ACTIONS(214), - [sym_false] = ACTIONS(214), - [sym_none] = ACTIONS(214), + [STATE(57)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(446), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), + [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_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(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(101), + [anon_sym_AT] = ACTIONS(67), + [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__dedent] = ACTIONS(220), - [sym__string_start] = ACTIONS(222), - [sym__template_string_start] = ACTIONS(225), + [sym__dedent] = ACTIONS(103), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), }, - [61] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(961), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(58)] = { + [sym__statement] = STATE(65), + [sym__simple_statements] = STATE(65), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(65), + [sym_decorated_definition] = STATE(65), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(447), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(65), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15019,79 +15075,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(228), + [sym__dedent] = ACTIONS(103), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [62] = { - [sym__statement] = STATE(60), - [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_class_definition] = STATE(60), - [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(961), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [STATE(59)] = { + [sym__statement] = STATE(63), + [sym__simple_statements] = STATE(63), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(63), + [sym_decorated_definition] = STATE(63), + [sym_decorator] = STATE(1113), + [sym_block] = STATE(549), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(63), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15136,26 +15193,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(230), + [sym__dedent] = ACTIONS(107), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [63] = { + [STATE(60)] = { [sym__statement] = STATE(60), [sym__simple_statements] = STATE(60), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), [sym_if_statement] = STATE(60), [sym_for_statement] = STATE(60), [sym_while_statement] = STATE(60), @@ -15163,52 +15220,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_with_statement] = STATE(60), [sym_match_statement] = STATE(60), [sym_function_definition] = STATE(60), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), [sym_class_definition] = STATE(60), [sym_decorated_definition] = STATE(60), - [sym_decorator] = STATE(961), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [sym_decorator] = STATE(1118), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [aux_sym_module_repeat1] = STATE(60), - [aux_sym_decorated_definition_repeat1] = STATE(961), + [aux_sym_decorated_definition_repeat1] = STATE(1118), + [ts_builtin_sym_end] = ACTIONS(109), + [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__string_start] = ACTIONS(222), + [sym__template_string_start] = ACTIONS(225), + }, + [STATE(61)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1113), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1113), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15253,80 +15427,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(232), + [sym__dedent] = ACTIONS(228), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [64] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(960), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(960), - [ts_builtin_sym_end] = ACTIONS(234), + [STATE(62)] = { + [sym__statement] = STATE(60), + [sym__simple_statements] = STATE(60), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_class_definition] = STATE(60), + [sym_decorated_definition] = STATE(60), + [sym_decorator] = STATE(1118), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(60), + [aux_sym_decorated_definition_repeat1] = STATE(1118), + [ts_builtin_sym_end] = ACTIONS(230), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15374,154 +15548,388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [65] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [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(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(960), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(960), - [ts_builtin_sym_end] = ACTIONS(220), - [sym_identifier] = ACTIONS(109), - [anon_sym_import] = ACTIONS(112), - [anon_sym_from] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_STAR] = ACTIONS(121), - [anon_sym_print] = ACTIONS(124), - [anon_sym_assert] = ACTIONS(127), - [anon_sym_return] = ACTIONS(130), - [anon_sym_del] = ACTIONS(133), - [anon_sym_raise] = ACTIONS(136), - [anon_sym_pass] = ACTIONS(139), - [anon_sym_break] = ACTIONS(142), - [anon_sym_continue] = ACTIONS(145), - [anon_sym_if] = ACTIONS(236), - [anon_sym_async] = ACTIONS(239), - [anon_sym_for] = ACTIONS(242), - [anon_sym_while] = ACTIONS(245), - [anon_sym_try] = ACTIONS(248), - [anon_sym_with] = ACTIONS(251), - [anon_sym_match] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_PLUS] = ACTIONS(169), - [anon_sym_LBRACK] = ACTIONS(172), - [anon_sym_LBRACE] = ACTIONS(175), - [anon_sym_STAR_STAR] = ACTIONS(178), - [anon_sym_def] = ACTIONS(257), - [anon_sym_global] = ACTIONS(184), - [anon_sym_nonlocal] = ACTIONS(187), - [anon_sym_exec] = ACTIONS(190), - [anon_sym_type] = ACTIONS(193), - [anon_sym_class] = ACTIONS(260), - [anon_sym_AT] = ACTIONS(199), - [anon_sym_not] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_lambda] = ACTIONS(205), - [anon_sym_yield] = ACTIONS(208), - [sym_ellipsis] = ACTIONS(211), - [sym_integer] = ACTIONS(214), - [sym_float] = ACTIONS(211), - [anon_sym_await] = ACTIONS(217), - [sym_true] = ACTIONS(214), - [sym_false] = ACTIONS(214), - [sym_none] = ACTIONS(214), + [STATE(63)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1113), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1113), + [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_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(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(101), + [anon_sym_AT] = ACTIONS(67), + [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__dedent] = ACTIONS(232), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [STATE(64)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1113), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1113), + [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(234), + [anon_sym_async] = ACTIONS(237), + [anon_sym_for] = ACTIONS(240), + [anon_sym_while] = ACTIONS(243), + [anon_sym_try] = ACTIONS(246), + [anon_sym_with] = ACTIONS(249), + [anon_sym_match] = ACTIONS(252), + [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(255), + [anon_sym_global] = ACTIONS(186), + [anon_sym_nonlocal] = ACTIONS(189), + [anon_sym_exec] = ACTIONS(192), + [anon_sym_type] = ACTIONS(195), + [anon_sym_class] = ACTIONS(258), + [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(109), [sym__string_start] = ACTIONS(222), [sym__template_string_start] = ACTIONS(225), }, - [66] = { - [sym_named_expression] = STATE(880), - [sym_list_splat] = STATE(1375), - [sym_dictionary_splat] = STATE(1375), - [sym_expression_list] = STATE(1430), - [sym_expression] = STATE(1066), - [sym_primary_expression] = STATE(652), - [sym_not_operator] = STATE(880), - [sym_boolean_operator] = STATE(880), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_comparison_operator] = STATE(880), - [sym_lambda] = STATE(880), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_conditional_expression] = STATE(880), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(65)] = { + [sym__statement] = STATE(64), + [sym__simple_statements] = STATE(64), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [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(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_class_definition] = STATE(64), + [sym_decorated_definition] = STATE(64), + [sym_decorator] = STATE(1113), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [aux_sym_module_repeat1] = STATE(64), + [aux_sym_decorated_definition_repeat1] = STATE(1113), + [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_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(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(101), + [anon_sym_AT] = ACTIONS(67), + [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__dedent] = ACTIONS(261), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [STATE(66)] = { + [sym_named_expression] = STATE(1031), + [sym_list_splat] = STATE(1510), + [sym_dictionary_splat] = STATE(1510), + [sym_expression_list] = STATE(1590), + [sym_expression] = STATE(1254), + [sym_primary_expression] = STATE(719), + [sym_not_operator] = STATE(1031), + [sym_boolean_operator] = STATE(1031), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_comparison_operator] = STATE(1031), + [sym_lambda] = STATE(1031), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_conditional_expression] = STATE(1031), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [sym_identifier] = ACTIONS(263), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(267), @@ -15585,42 +15993,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(306), [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(298), + [anon_sym_SEMI] = ACTIONS(298), [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [67] = { - [sym_named_expression] = STATE(880), - [sym_list_splat] = STATE(1375), - [sym_dictionary_splat] = STATE(1375), - [sym_expression_list] = STATE(1433), - [sym_expression] = STATE(1052), - [sym_primary_expression] = STATE(652), - [sym_not_operator] = STATE(880), - [sym_boolean_operator] = STATE(880), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_comparison_operator] = STATE(880), - [sym_lambda] = STATE(880), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_conditional_expression] = STATE(880), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(67)] = { + [sym_named_expression] = STATE(1031), + [sym_list_splat] = STATE(1510), + [sym_dictionary_splat] = STATE(1510), + [sym_expression_list] = STATE(1676), + [sym_expression] = STATE(1230), + [sym_primary_expression] = STATE(719), + [sym_not_operator] = STATE(1031), + [sym_boolean_operator] = STATE(1031), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_comparison_operator] = STATE(1031), + [sym_lambda] = STATE(1031), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_conditional_expression] = STATE(1031), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [sym_identifier] = ACTIONS(263), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(267), @@ -15684,67 +16092,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(306), [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(298), + [anon_sym_SEMI] = ACTIONS(298), [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [68] = { - [sym__simple_statements] = STATE(536), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(68)] = { + [sym_chevron] = STATE(1316), + [sym_named_expression] = STATE(1158), + [sym_expression] = STATE(1175), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_attribute] = STATE(908), + [sym_subscript] = STATE(908), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [sym_identifier] = ACTIONS(314), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(298), + [anon_sym_COMMA] = ACTIONS(270), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(318), + [anon_sym_COLON_EQ] = ACTIONS(278), + [anon_sym_if] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(280), + [anon_sym_async] = ACTIONS(316), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(316), + [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(265), + [anon_sym_EQ] = ACTIONS(280), + [anon_sym_exec] = ACTIONS(316), + [anon_sym_type] = ACTIONS(316), + [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_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(320), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(298), + [sym__newline] = ACTIONS(298), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [STATE(69)] = { + [sym__simple_statements] = STATE(1171), + [sym_import_statement] = STATE(1373), + [sym_future_import_statement] = STATE(1373), + [sym_import_from_statement] = STATE(1373), + [sym_print_statement] = STATE(1373), + [sym_assert_statement] = STATE(1373), + [sym_expression_statement] = STATE(1373), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1373), + [sym_delete_statement] = STATE(1373), + [sym_raise_statement] = STATE(1373), + [sym_pass_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1373), + [sym_nonlocal_statement] = STATE(1373), + [sym_exec_statement] = STATE(1373), + [sym_type_alias_statement] = STATE(1373), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15758,8 +16263,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -15781,67 +16286,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(316), - [sym__indent] = ACTIONS(318), + [sym__newline] = ACTIONS(324), + [sym__indent] = ACTIONS(326), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [69] = { - [sym__simple_statements] = STATE(439), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(70)] = { + [sym__simple_statements] = STATE(436), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15855,8 +16360,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -15878,67 +16383,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(320), - [sym__indent] = ACTIONS(322), + [sym__newline] = ACTIONS(328), + [sym__indent] = ACTIONS(330), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [70] = { - [sym__simple_statements] = STATE(533), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(71)] = { + [sym__simple_statements] = STATE(550), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -15952,8 +16457,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -15975,67 +16480,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(324), - [sym__indent] = ACTIONS(326), + [sym__newline] = ACTIONS(332), + [sym__indent] = ACTIONS(334), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [71] = { - [sym__simple_statements] = STATE(424), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(72)] = { + [sym__simple_statements] = STATE(581), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16049,8 +16554,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16072,67 +16577,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(328), - [sym__indent] = ACTIONS(330), + [sym__newline] = ACTIONS(336), + [sym__indent] = ACTIONS(338), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [72] = { - [sym__simple_statements] = STATE(418), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(73)] = { + [sym__simple_statements] = STATE(442), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16146,8 +16651,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16169,67 +16674,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(332), - [sym__indent] = ACTIONS(334), + [sym__newline] = ACTIONS(340), + [sym__indent] = ACTIONS(342), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [73] = { - [sym__simple_statements] = STATE(413), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(74)] = { + [sym__simple_statements] = STATE(606), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16243,8 +16748,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16266,67 +16771,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(336), - [sym__indent] = ACTIONS(338), + [sym__newline] = ACTIONS(344), + [sym__indent] = ACTIONS(346), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [74] = { - [sym__simple_statements] = STATE(463), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(75)] = { + [sym__simple_statements] = STATE(482), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16340,8 +16845,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16363,67 +16868,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(340), - [sym__indent] = ACTIONS(342), + [sym__newline] = ACTIONS(348), + [sym__indent] = ACTIONS(350), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [75] = { - [sym__simple_statements] = STATE(437), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(76)] = { + [sym__simple_statements] = STATE(319), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16437,8 +16942,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16460,67 +16965,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(344), - [sym__indent] = ACTIONS(346), + [sym__newline] = ACTIONS(352), + [sym__indent] = ACTIONS(354), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [76] = { - [sym__simple_statements] = STATE(461), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(77)] = { + [sym__simple_statements] = STATE(489), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16534,8 +17039,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16557,67 +17062,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(348), - [sym__indent] = ACTIONS(350), + [sym__newline] = ACTIONS(356), + [sym__indent] = ACTIONS(358), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [77] = { - [sym__simple_statements] = STATE(428), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(78)] = { + [sym__simple_statements] = STATE(554), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16631,8 +17136,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16654,67 +17159,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(352), - [sym__indent] = ACTIONS(354), + [sym__newline] = ACTIONS(360), + [sym__indent] = ACTIONS(362), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [78] = { - [sym__simple_statements] = STATE(455), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(79)] = { + [sym__simple_statements] = STATE(557), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -16728,202 +17233,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(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(356), - [sym__indent] = ACTIONS(358), - [sym__string_start] = ACTIONS(81), - [sym__template_string_start] = ACTIONS(83), - }, - [79] = { - [sym__simple_statements] = STATE(539), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [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(360), - [sym__indent] = ACTIONS(362), - [sym__string_start] = ACTIONS(81), - [sym__template_string_start] = ACTIONS(83), - }, - [80] = { - [sym__simple_statements] = STATE(493), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [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_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -16950,62 +17261,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [81] = { - [sym__simple_statements] = STATE(487), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(80)] = { + [sym__simple_statements] = STATE(454), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17019,8 +17330,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17047,62 +17358,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [82] = { - [sym__simple_statements] = STATE(393), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(81)] = { + [sym__simple_statements] = STATE(559), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17116,8 +17427,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17144,62 +17455,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [83] = { - [sym__simple_statements] = STATE(471), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(82)] = { + [sym__simple_statements] = STATE(516), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17213,8 +17524,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17241,62 +17552,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [84] = { - [sym__simple_statements] = STATE(550), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(83)] = { + [sym__simple_statements] = STATE(520), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17310,8 +17621,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17338,62 +17649,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [85] = { - [sym__simple_statements] = STATE(476), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(84)] = { + [sym__simple_statements] = STATE(564), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17407,8 +17718,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17435,62 +17746,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [86] = { - [sym__simple_statements] = STATE(495), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(85)] = { + [sym__simple_statements] = STATE(566), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17504,8 +17815,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17532,62 +17843,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [87] = { - [sym__simple_statements] = STATE(430), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(86)] = { + [sym__simple_statements] = STATE(567), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17601,8 +17912,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17629,62 +17940,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [88] = { - [sym__simple_statements] = STATE(300), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(87)] = { + [sym__simple_statements] = STATE(523), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17698,8 +18009,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17726,62 +18037,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [89] = { - [sym__simple_statements] = STATE(420), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(88)] = { + [sym__simple_statements] = STATE(571), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17795,8 +18106,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17823,62 +18134,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [90] = { - [sym__simple_statements] = STATE(558), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(89)] = { + [sym__simple_statements] = STATE(491), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17892,8 +18203,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -17920,62 +18231,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [91] = { - [sym__simple_statements] = STATE(391), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(90)] = { + [sym__simple_statements] = STATE(437), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -17989,8 +18300,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18017,62 +18328,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [92] = { - [sym__simple_statements] = STATE(500), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(91)] = { + [sym__simple_statements] = STATE(573), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18086,8 +18397,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18114,62 +18425,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [93] = { - [sym__simple_statements] = STATE(401), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(92)] = { + [sym__simple_statements] = STATE(546), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18183,8 +18494,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18211,62 +18522,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [94] = { - [sym__simple_statements] = STATE(396), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(93)] = { + [sym__simple_statements] = STATE(577), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18280,8 +18591,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18308,62 +18619,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [95] = { - [sym__simple_statements] = STATE(394), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(94)] = { + [sym__simple_statements] = STATE(495), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18377,8 +18688,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18405,62 +18716,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [96] = { - [sym__simple_statements] = STATE(465), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(95)] = { + [sym__simple_statements] = STATE(579), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18474,8 +18785,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18502,62 +18813,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [97] = { - [sym__simple_statements] = STATE(525), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(96)] = { + [sym__simple_statements] = STATE(541), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18571,8 +18882,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18599,62 +18910,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [98] = { - [sym__simple_statements] = STATE(453), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(97)] = { + [sym__simple_statements] = STATE(503), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18668,8 +18979,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18696,62 +19007,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [99] = { - [sym__simple_statements] = STATE(547), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(98)] = { + [sym__simple_statements] = STATE(480), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18765,8 +19076,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18793,62 +19104,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [100] = { - [sym__simple_statements] = STATE(567), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(99)] = { + [sym__simple_statements] = STATE(312), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18862,8 +19173,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18890,62 +19201,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [101] = { - [sym__simple_statements] = STATE(997), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(100)] = { + [sym__simple_statements] = STATE(584), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -18959,8 +19270,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -18987,62 +19298,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [102] = { - [sym__simple_statements] = STATE(477), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(101)] = { + [sym__simple_statements] = STATE(527), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19056,8 +19367,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19084,62 +19395,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [103] = { - [sym__simple_statements] = STATE(472), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(102)] = { + [sym__simple_statements] = STATE(439), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19153,8 +19464,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19181,62 +19492,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [104] = { - [sym__simple_statements] = STATE(411), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(103)] = { + [sym__simple_statements] = STATE(485), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19250,8 +19561,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19278,62 +19589,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [105] = { - [sym__simple_statements] = STATE(438), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(104)] = { + [sym__simple_statements] = STATE(504), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19347,8 +19658,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19375,62 +19686,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [106] = { - [sym__simple_statements] = STATE(518), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(105)] = { + [sym__simple_statements] = STATE(589), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19444,8 +19755,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19472,62 +19783,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [107] = { - [sym__simple_statements] = STATE(464), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(106)] = { + [sym__simple_statements] = STATE(459), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19541,8 +19852,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19569,62 +19880,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [108] = { - [sym__simple_statements] = STATE(302), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(107)] = { + [sym__simple_statements] = STATE(488), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19638,8 +19949,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19666,62 +19977,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [109] = { - [sym__simple_statements] = STATE(509), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(108)] = { + [sym__simple_statements] = STATE(496), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19735,8 +20046,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19763,62 +20074,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [110] = { - [sym__simple_statements] = STATE(552), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(109)] = { + [sym__simple_statements] = STATE(531), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -19832,8 +20143,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -19860,159 +20171,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [111] = { - [sym_chevron] = STATE(1109), - [sym_named_expression] = STATE(955), - [sym_expression] = STATE(1012), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_attribute] = STATE(760), - [sym_subscript] = STATE(760), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [sym_identifier] = ACTIONS(488), - [anon_sym_DOT] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(298), - [anon_sym_COMMA] = ACTIONS(270), - [anon_sym_STAR] = ACTIONS(265), - [anon_sym_print] = ACTIONS(490), - [anon_sym_GT_GT] = ACTIONS(492), - [anon_sym_COLON_EQ] = ACTIONS(278), - [anon_sym_if] = ACTIONS(265), - [anon_sym_COLON] = ACTIONS(280), - [anon_sym_async] = ACTIONS(490), - [anon_sym_in] = ACTIONS(265), - [anon_sym_match] = ACTIONS(490), - [anon_sym_PIPE] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(265), - [anon_sym_LBRACK] = ACTIONS(298), + [STATE(110)] = { + [sym__simple_statements] = STATE(593), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [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(322), + [anon_sym_match] = ACTIONS(322), + [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(265), - [anon_sym_EQ] = ACTIONS(280), - [anon_sym_exec] = ACTIONS(490), - [anon_sym_type] = ACTIONS(490), - [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_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(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_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), + [anon_sym_yield] = ACTIONS(73), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(494), + [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(298), - [sym__newline] = ACTIONS(298), + [sym__newline] = ACTIONS(488), + [sym__indent] = ACTIONS(490), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [STATE(111)] = { + [sym__simple_statements] = STATE(608), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [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(322), + [anon_sym_match] = ACTIONS(322), + [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(492), + [sym__indent] = ACTIONS(494), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [112] = { - [sym__simple_statements] = STATE(501), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(112)] = { + [sym__simple_statements] = STATE(440), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20026,8 +20434,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20054,62 +20462,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [113] = { - [sym__simple_statements] = STATE(486), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(113)] = { + [sym__simple_statements] = STATE(611), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20123,8 +20531,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20151,62 +20559,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [114] = { - [sym__simple_statements] = STATE(995), - [sym_import_statement] = STATE(1212), - [sym_future_import_statement] = STATE(1212), - [sym_import_from_statement] = STATE(1212), - [sym_print_statement] = STATE(1212), - [sym_assert_statement] = STATE(1212), - [sym_expression_statement] = STATE(1212), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1212), - [sym_delete_statement] = STATE(1212), - [sym_raise_statement] = STATE(1212), - [sym_pass_statement] = STATE(1212), - [sym_break_statement] = STATE(1212), - [sym_continue_statement] = STATE(1212), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1212), - [sym_nonlocal_statement] = STATE(1212), - [sym_exec_statement] = STATE(1212), - [sym_type_alias_statement] = STATE(1212), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(114)] = { + [sym__simple_statements] = STATE(464), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20220,8 +20628,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20248,62 +20656,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [115] = { - [sym__simple_statements] = STATE(404), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(115)] = { + [sym__simple_statements] = STATE(506), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20317,8 +20725,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20345,62 +20753,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [116] = { - [sym__simple_statements] = STATE(561), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(116)] = { + [sym__simple_statements] = STATE(599), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20414,8 +20822,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20442,62 +20850,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [117] = { - [sym__simple_statements] = STATE(511), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(117)] = { + [sym__simple_statements] = STATE(537), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20511,8 +20919,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20539,62 +20947,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [118] = { - [sym__simple_statements] = STATE(468), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(118)] = { + [sym__simple_statements] = STATE(602), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20608,8 +21016,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20636,62 +21044,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [119] = { - [sym__simple_statements] = STATE(564), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(119)] = { + [sym__simple_statements] = STATE(444), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20705,8 +21113,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20733,62 +21141,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [120] = { - [sym__simple_statements] = STATE(563), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(120)] = { + [sym__simple_statements] = STATE(451), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20802,8 +21210,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20830,62 +21238,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [121] = { - [sym__simple_statements] = STATE(515), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(121)] = { + [sym__simple_statements] = STATE(613), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20899,8 +21307,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -20927,62 +21335,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [122] = { - [sym__simple_statements] = STATE(557), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(122)] = { + [sym__simple_statements] = STATE(445), + [sym_import_statement] = STATE(1332), + [sym_future_import_statement] = STATE(1332), + [sym_import_from_statement] = STATE(1332), + [sym_print_statement] = STATE(1332), + [sym_assert_statement] = STATE(1332), + [sym_expression_statement] = STATE(1332), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1332), + [sym_delete_statement] = STATE(1332), + [sym_raise_statement] = STATE(1332), + [sym_pass_statement] = STATE(1332), + [sym_break_statement] = STATE(1332), + [sym_continue_statement] = STATE(1332), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1332), + [sym_nonlocal_statement] = STATE(1332), + [sym_exec_statement] = STATE(1332), + [sym_type_alias_statement] = STATE(1332), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -20996,8 +21404,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21024,62 +21432,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [123] = { - [sym__simple_statements] = STATE(399), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(123)] = { + [sym__simple_statements] = STATE(500), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21093,8 +21501,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21121,62 +21529,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [124] = { - [sym__simple_statements] = STATE(410), - [sym_import_statement] = STATE(1227), - [sym_future_import_statement] = STATE(1227), - [sym_import_from_statement] = STATE(1227), - [sym_print_statement] = STATE(1227), - [sym_assert_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1227), - [sym_delete_statement] = STATE(1227), - [sym_raise_statement] = STATE(1227), - [sym_pass_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1227), - [sym_nonlocal_statement] = STATE(1227), - [sym_exec_statement] = STATE(1227), - [sym_type_alias_statement] = STATE(1227), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(124)] = { + [sym__simple_statements] = STATE(1187), + [sym_import_statement] = STATE(1373), + [sym_future_import_statement] = STATE(1373), + [sym_import_from_statement] = STATE(1373), + [sym_print_statement] = STATE(1373), + [sym_assert_statement] = STATE(1373), + [sym_expression_statement] = STATE(1373), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1373), + [sym_delete_statement] = STATE(1373), + [sym_raise_statement] = STATE(1373), + [sym_pass_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1373), + [sym_nonlocal_statement] = STATE(1373), + [sym_exec_statement] = STATE(1373), + [sym_type_alias_statement] = STATE(1373), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21190,8 +21598,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21218,62 +21626,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [125] = { - [sym__simple_statements] = STATE(508), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(125)] = { + [sym__simple_statements] = STATE(543), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21287,8 +21695,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21315,62 +21723,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [126] = { - [sym__simple_statements] = STATE(507), - [sym_import_statement] = STATE(1181), - [sym_future_import_statement] = STATE(1181), - [sym_import_from_statement] = STATE(1181), - [sym_print_statement] = STATE(1181), - [sym_assert_statement] = STATE(1181), - [sym_expression_statement] = STATE(1181), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1181), - [sym_delete_statement] = STATE(1181), - [sym_raise_statement] = STATE(1181), - [sym_pass_statement] = STATE(1181), - [sym_break_statement] = STATE(1181), - [sym_continue_statement] = STATE(1181), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1181), - [sym_nonlocal_statement] = STATE(1181), - [sym_exec_statement] = STATE(1181), - [sym_type_alias_statement] = STATE(1181), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(126)] = { + [sym__simple_statements] = STATE(481), + [sym_import_statement] = STATE(1348), + [sym_future_import_statement] = STATE(1348), + [sym_import_from_statement] = STATE(1348), + [sym_print_statement] = STATE(1348), + [sym_assert_statement] = STATE(1348), + [sym_expression_statement] = STATE(1348), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1348), + [sym_delete_statement] = STATE(1348), + [sym_raise_statement] = STATE(1348), + [sym_pass_statement] = STATE(1348), + [sym_break_statement] = STATE(1348), + [sym_continue_statement] = STATE(1348), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1348), + [sym_nonlocal_statement] = STATE(1348), + [sym_exec_statement] = STATE(1348), + [sym_type_alias_statement] = STATE(1348), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21384,8 +21792,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21412,61 +21820,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [127] = { - [sym_import_statement] = STATE(1369), - [sym_future_import_statement] = STATE(1369), - [sym_import_from_statement] = STATE(1369), - [sym_print_statement] = STATE(1369), - [sym_assert_statement] = STATE(1369), - [sym_expression_statement] = STATE(1369), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1369), - [sym_delete_statement] = STATE(1369), - [sym_raise_statement] = STATE(1369), - [sym_pass_statement] = STATE(1369), - [sym_break_statement] = STATE(1369), - [sym_continue_statement] = STATE(1369), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1369), - [sym_nonlocal_statement] = STATE(1369), - [sym_exec_statement] = STATE(1369), - [sym_type_alias_statement] = STATE(1369), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(127)] = { + [sym_import_statement] = STATE(1517), + [sym_future_import_statement] = STATE(1517), + [sym_import_from_statement] = STATE(1517), + [sym_print_statement] = STATE(1517), + [sym_assert_statement] = STATE(1517), + [sym_expression_statement] = STATE(1517), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1517), + [sym_delete_statement] = STATE(1517), + [sym_raise_statement] = STATE(1517), + [sym_pass_statement] = STATE(1517), + [sym_break_statement] = STATE(1517), + [sym_continue_statement] = STATE(1517), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1517), + [sym_nonlocal_statement] = STATE(1517), + [sym_exec_statement] = STATE(1517), + [sym_type_alias_statement] = STATE(1517), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21480,8 +21888,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21507,61 +21915,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [128] = { - [sym_import_statement] = STATE(1369), - [sym_future_import_statement] = STATE(1369), - [sym_import_from_statement] = STATE(1369), - [sym_print_statement] = STATE(1369), - [sym_assert_statement] = STATE(1369), - [sym_expression_statement] = STATE(1369), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1369), - [sym_delete_statement] = STATE(1369), - [sym_raise_statement] = STATE(1369), - [sym_pass_statement] = STATE(1369), - [sym_break_statement] = STATE(1369), - [sym_continue_statement] = STATE(1369), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1369), - [sym_nonlocal_statement] = STATE(1369), - [sym_exec_statement] = STATE(1369), - [sym_type_alias_statement] = STATE(1369), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(128)] = { + [sym_import_statement] = STATE(1517), + [sym_future_import_statement] = STATE(1517), + [sym_import_from_statement] = STATE(1517), + [sym_print_statement] = STATE(1517), + [sym_assert_statement] = STATE(1517), + [sym_expression_statement] = STATE(1517), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1517), + [sym_delete_statement] = STATE(1517), + [sym_raise_statement] = STATE(1517), + [sym_pass_statement] = STATE(1517), + [sym_break_statement] = STATE(1517), + [sym_continue_statement] = STATE(1517), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1517), + [sym_nonlocal_statement] = STATE(1517), + [sym_exec_statement] = STATE(1517), + [sym_type_alias_statement] = STATE(1517), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21575,8 +21983,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21602,61 +22010,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [129] = { - [sym_import_statement] = STATE(1369), - [sym_future_import_statement] = STATE(1369), - [sym_import_from_statement] = STATE(1369), - [sym_print_statement] = STATE(1369), - [sym_assert_statement] = STATE(1369), - [sym_expression_statement] = STATE(1369), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1369), - [sym_delete_statement] = STATE(1369), - [sym_raise_statement] = STATE(1369), - [sym_pass_statement] = STATE(1369), - [sym_break_statement] = STATE(1369), - [sym_continue_statement] = STATE(1369), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1369), - [sym_nonlocal_statement] = STATE(1369), - [sym_exec_statement] = STATE(1369), - [sym_type_alias_statement] = STATE(1369), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(129)] = { + [sym_import_statement] = STATE(1517), + [sym_future_import_statement] = STATE(1517), + [sym_import_from_statement] = STATE(1517), + [sym_print_statement] = STATE(1517), + [sym_assert_statement] = STATE(1517), + [sym_expression_statement] = STATE(1517), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1517), + [sym_delete_statement] = STATE(1517), + [sym_raise_statement] = STATE(1517), + [sym_pass_statement] = STATE(1517), + [sym_break_statement] = STATE(1517), + [sym_continue_statement] = STATE(1517), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1517), + [sym_nonlocal_statement] = STATE(1517), + [sym_exec_statement] = STATE(1517), + [sym_type_alias_statement] = STATE(1517), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21670,8 +22078,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21697,61 +22105,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [130] = { - [sym_import_statement] = STATE(1369), - [sym_future_import_statement] = STATE(1369), - [sym_import_from_statement] = STATE(1369), - [sym_print_statement] = STATE(1369), - [sym_assert_statement] = STATE(1369), - [sym_expression_statement] = STATE(1369), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1369), - [sym_delete_statement] = STATE(1369), - [sym_raise_statement] = STATE(1369), - [sym_pass_statement] = STATE(1369), - [sym_break_statement] = STATE(1369), - [sym_continue_statement] = STATE(1369), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1369), - [sym_nonlocal_statement] = STATE(1369), - [sym_exec_statement] = STATE(1369), - [sym_type_alias_statement] = STATE(1369), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(130)] = { + [sym_import_statement] = STATE(1517), + [sym_future_import_statement] = STATE(1517), + [sym_import_from_statement] = STATE(1517), + [sym_print_statement] = STATE(1517), + [sym_assert_statement] = STATE(1517), + [sym_expression_statement] = STATE(1517), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1517), + [sym_delete_statement] = STATE(1517), + [sym_raise_statement] = STATE(1517), + [sym_pass_statement] = STATE(1517), + [sym_break_statement] = STATE(1517), + [sym_continue_statement] = STATE(1517), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1517), + [sym_nonlocal_statement] = STATE(1517), + [sym_exec_statement] = STATE(1517), + [sym_type_alias_statement] = STATE(1517), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21765,8 +22173,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21792,61 +22200,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [131] = { - [sym_import_statement] = STATE(1369), - [sym_future_import_statement] = STATE(1369), - [sym_import_from_statement] = STATE(1369), - [sym_print_statement] = STATE(1369), - [sym_assert_statement] = STATE(1369), - [sym_expression_statement] = STATE(1369), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1369), - [sym_delete_statement] = STATE(1369), - [sym_raise_statement] = STATE(1369), - [sym_pass_statement] = STATE(1369), - [sym_break_statement] = STATE(1369), - [sym_continue_statement] = STATE(1369), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1369), - [sym_nonlocal_statement] = STATE(1369), - [sym_exec_statement] = STATE(1369), - [sym_type_alias_statement] = STATE(1369), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(131)] = { + [sym_import_statement] = STATE(1517), + [sym_future_import_statement] = STATE(1517), + [sym_import_from_statement] = STATE(1517), + [sym_print_statement] = STATE(1517), + [sym_assert_statement] = STATE(1517), + [sym_expression_statement] = STATE(1517), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1517), + [sym_delete_statement] = STATE(1517), + [sym_raise_statement] = STATE(1517), + [sym_pass_statement] = STATE(1517), + [sym_break_statement] = STATE(1517), + [sym_continue_statement] = STATE(1517), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1517), + [sym_nonlocal_statement] = STATE(1517), + [sym_exec_statement] = STATE(1517), + [sym_type_alias_statement] = STATE(1517), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21860,8 +22268,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21887,61 +22295,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [132] = { - [sym_import_statement] = STATE(1369), - [sym_future_import_statement] = STATE(1369), - [sym_import_from_statement] = STATE(1369), - [sym_print_statement] = STATE(1369), - [sym_assert_statement] = STATE(1369), - [sym_expression_statement] = STATE(1369), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1369), - [sym_delete_statement] = STATE(1369), - [sym_raise_statement] = STATE(1369), - [sym_pass_statement] = STATE(1369), - [sym_break_statement] = STATE(1369), - [sym_continue_statement] = STATE(1369), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1369), - [sym_nonlocal_statement] = STATE(1369), - [sym_exec_statement] = STATE(1369), - [sym_type_alias_statement] = STATE(1369), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(132)] = { + [sym_import_statement] = STATE(1517), + [sym_future_import_statement] = STATE(1517), + [sym_import_from_statement] = STATE(1517), + [sym_print_statement] = STATE(1517), + [sym_assert_statement] = STATE(1517), + [sym_expression_statement] = STATE(1517), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1517), + [sym_delete_statement] = STATE(1517), + [sym_raise_statement] = STATE(1517), + [sym_pass_statement] = STATE(1517), + [sym_break_statement] = STATE(1517), + [sym_continue_statement] = STATE(1517), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1517), + [sym_nonlocal_statement] = STATE(1517), + [sym_exec_statement] = STATE(1517), + [sym_type_alias_statement] = STATE(1517), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -21955,8 +22363,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -21982,61 +22390,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [133] = { - [sym_import_statement] = STATE(1369), - [sym_future_import_statement] = STATE(1369), - [sym_import_from_statement] = STATE(1369), - [sym_print_statement] = STATE(1369), - [sym_assert_statement] = STATE(1369), - [sym_expression_statement] = STATE(1369), - [sym_named_expression] = STATE(955), - [sym_return_statement] = STATE(1369), - [sym_delete_statement] = STATE(1369), - [sym_raise_statement] = STATE(1369), - [sym_pass_statement] = STATE(1369), - [sym_break_statement] = STATE(1369), - [sym_continue_statement] = STATE(1369), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_global_statement] = STATE(1369), - [sym_nonlocal_statement] = STATE(1369), - [sym_exec_statement] = STATE(1369), - [sym_type_alias_statement] = STATE(1369), - [sym_expression_list] = STATE(1329), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1032), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1329), - [sym_augmented_assignment] = STATE(1329), - [sym_pattern_list] = STATE(874), - [sym_yield] = STATE(1329), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(133)] = { + [sym_import_statement] = STATE(1517), + [sym_future_import_statement] = STATE(1517), + [sym_import_from_statement] = STATE(1517), + [sym_print_statement] = STATE(1517), + [sym_assert_statement] = STATE(1517), + [sym_expression_statement] = STATE(1517), + [sym_named_expression] = STATE(1158), + [sym_return_statement] = STATE(1517), + [sym_delete_statement] = STATE(1517), + [sym_raise_statement] = STATE(1517), + [sym_pass_statement] = STATE(1517), + [sym_break_statement] = STATE(1517), + [sym_continue_statement] = STATE(1517), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_global_statement] = STATE(1517), + [sym_nonlocal_statement] = STATE(1517), + [sym_exec_statement] = STATE(1517), + [sym_type_alias_statement] = STATE(1517), + [sym_expression_list] = STATE(1551), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1185), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1551), + [sym_augmented_assignment] = STATE(1551), + [sym_pattern_list] = STATE(1024), + [sym_yield] = STATE(1551), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(7), [anon_sym_import] = ACTIONS(9), [anon_sym_from] = ACTIONS(11), @@ -22050,8 +22458,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(314), - [anon_sym_match] = ACTIONS(314), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [anon_sym_DASH] = ACTIONS(47), [anon_sym_PLUS] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(49), @@ -22076,27 +22484,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [134] = { - [sym_primary_expression] = STATE(711), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_attribute] = STATE(760), - [sym_subscript] = STATE(760), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(134)] = { + [sym_primary_expression] = STATE(810), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_attribute] = STATE(908), + [sym_subscript] = STATE(908), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(568), @@ -22159,32 +22567,32 @@ 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__semicolon] = ACTIONS(298), + [anon_sym_SEMI] = ACTIONS(298), [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [135] = { - [sym_primary_expression] = STATE(669), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(135)] = { + [sym_primary_expression] = STATE(735), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(578), @@ -22252,27 +22660,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [136] = { - [sym_primary_expression] = STATE(669), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(136)] = { + [sym_primary_expression] = STATE(735), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(578), @@ -22319,7 +22727,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22330,27 +22737,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [137] = { - [sym_primary_expression] = STATE(669), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(137)] = { + [sym_primary_expression] = STATE(735), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(578), @@ -22396,7 +22803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22407,27 +22813,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [138] = { - [sym_primary_expression] = STATE(675), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(138)] = { + [sym_primary_expression] = STATE(760), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(597), @@ -22439,7 +22845,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -22484,75 +22889,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [139] = { - [sym_primary_expression] = STATE(675), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(139)] = { + [sym_primary_expression] = STATE(735), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [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_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(298), - [anon_sym_if] = ACTIONS(265), - [anon_sym_COLON] = ACTIONS(298), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_COLON] = ACTIONS(593), [anon_sym_async] = ACTIONS(583), - [anon_sym_for] = ACTIONS(265), - [anon_sym_in] = ACTIONS(265), + [anon_sym_in] = ACTIONS(587), [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_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_RBRACE] = ACTIONS(298), - [anon_sym_STAR_STAR] = ACTIONS(298), + [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(298), - [anon_sym_not] = ACTIONS(265), - [anon_sym_and] = ACTIONS(265), - [anon_sym_or] = ACTIONS(265), + [anon_sym_AT] = 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), + [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(605), + [anon_sym_await] = ACTIONS(595), [sym_true] = ACTIONS(306), [sym_false] = ACTIONS(306), [sym_none] = ACTIONS(306), @@ -22560,27 +22964,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [140] = { - [sym_primary_expression] = STATE(711), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_attribute] = STATE(760), - [sym_subscript] = STATE(760), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(140)] = { + [sym_primary_expression] = STATE(810), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_attribute] = STATE(908), + [sym_subscript] = STATE(908), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [sym_identifier] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(265), [anon_sym_from] = ACTIONS(265), @@ -22630,32 +23034,107 @@ 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__semicolon] = ACTIONS(298), + [anon_sym_SEMI] = ACTIONS(298), [sym__newline] = ACTIONS(298), [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [141] = { - [sym_primary_expression] = STATE(669), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(141)] = { + [sym_primary_expression] = STATE(785), + [sym_binary_operator] = STATE(924), + [sym_unary_operator] = STATE(924), + [sym_attribute] = STATE(924), + [sym_subscript] = STATE(924), + [sym_call] = STATE(924), + [sym_list] = STATE(924), + [sym_set] = STATE(924), + [sym_tuple] = STATE(924), + [sym_dictionary] = STATE(924), + [sym_list_comprehension] = STATE(924), + [sym_dictionary_comprehension] = STATE(924), + [sym_set_comprehension] = STATE(924), + [sym_generator_expression] = STATE(924), + [sym_parenthesized_expression] = STATE(924), + [sym_concatenated_string] = STATE(924), + [sym_string] = STATE(767), + [sym_concatenated_template_string] = STATE(924), + [sym_template_string] = STATE(768), + [sym_await] = STATE(924), + [sym_identifier] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(613), + [anon_sym_if] = ACTIONS(265), + [anon_sym_async] = ACTIONS(611), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(611), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(298), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_exec] = ACTIONS(611), + [anon_sym_type] = ACTIONS(611), + [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(615), + [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(621), + [anon_sym_COLON2] = ACTIONS(298), + [sym_type_conversion] = ACTIONS(298), + [sym_integer] = ACTIONS(607), + [sym_float] = ACTIONS(621), + [anon_sym_await] = ACTIONS(623), + [sym_true] = ACTIONS(607), + [sym_false] = ACTIONS(607), + [sym_none] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(625), + [sym__template_string_start] = ACTIONS(627), + }, + [STATE(142)] = { + [sym_primary_expression] = STATE(735), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(578), @@ -22710,74 +23189,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [142] = { - [sym_primary_expression] = STATE(669), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(143)] = { + [sym_primary_expression] = STATE(760), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [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_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(265), - [anon_sym_COLON] = ACTIONS(593), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_if] = ACTIONS(265), [anon_sym_async] = ACTIONS(583), - [anon_sym_in] = ACTIONS(587), + [anon_sym_for] = ACTIONS(265), + [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(593), + [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_STAR_STAR] = ACTIONS(265), - [anon_sym_EQ] = ACTIONS(593), + [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(265), + [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(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), + [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(595), + [anon_sym_await] = ACTIONS(605), [sym_true] = ACTIONS(306), [sym_false] = ACTIONS(306), [sym_none] = ACTIONS(306), @@ -22785,39 +23264,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [143] = { - [sym_primary_expression] = STATE(748), - [sym_binary_operator] = STATE(809), - [sym_unary_operator] = STATE(809), - [sym_attribute] = STATE(809), - [sym_subscript] = STATE(809), - [sym_call] = STATE(809), - [sym_list] = STATE(809), - [sym_set] = STATE(809), - [sym_tuple] = STATE(809), - [sym_dictionary] = STATE(809), - [sym_list_comprehension] = STATE(809), - [sym_dictionary_comprehension] = STATE(809), - [sym_set_comprehension] = STATE(809), - [sym_generator_expression] = STATE(809), - [sym_parenthesized_expression] = STATE(809), - [sym_concatenated_string] = STATE(809), - [sym_string] = STATE(720), - [sym_concatenated_template_string] = STATE(809), - [sym_template_string] = STATE(722), - [sym_await] = STATE(809), - [sym_identifier] = ACTIONS(607), + [STATE(144)] = { + [sym_primary_expression] = STATE(848), + [sym_binary_operator] = STATE(953), + [sym_unary_operator] = STATE(953), + [sym_attribute] = STATE(953), + [sym_subscript] = STATE(953), + [sym_call] = STATE(953), + [sym_list] = STATE(953), + [sym_set] = STATE(953), + [sym_tuple] = STATE(953), + [sym_dictionary] = STATE(953), + [sym_list_comprehension] = STATE(953), + [sym_dictionary_comprehension] = STATE(953), + [sym_set_comprehension] = STATE(953), + [sym_generator_expression] = STATE(953), + [sym_parenthesized_expression] = STATE(953), + [sym_concatenated_string] = STATE(953), + [sym_string] = STATE(794), + [sym_concatenated_template_string] = STATE(953), + [sym_template_string] = STATE(795), + [sym_await] = STATE(953), + [sym_identifier] = ACTIONS(629), [anon_sym_DOT] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(631), [anon_sym_RPAREN] = ACTIONS(298), [anon_sym_COMMA] = ACTIONS(298), [anon_sym_as] = ACTIONS(265), [anon_sym_STAR] = ACTIONS(265), - [anon_sym_print] = ACTIONS(611), + [anon_sym_print] = ACTIONS(633), [anon_sym_GT_GT] = ACTIONS(298), - [anon_sym_COLON_EQ] = ACTIONS(613), + [anon_sym_COLON_EQ] = ACTIONS(635), [anon_sym_if] = ACTIONS(265), [anon_sym_COLON] = ACTIONS(265), + [anon_sym_async] = ACTIONS(633), + [anon_sym_in] = ACTIONS(265), + [anon_sym_match] = ACTIONS(633), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(639), + [anon_sym_LBRACE] = ACTIONS(641), + [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_exec] = ACTIONS(633), + [anon_sym_type] = ACTIONS(633), + [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(637), + [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(643), + [sym_integer] = ACTIONS(629), + [sym_float] = ACTIONS(643), + [anon_sym_await] = ACTIONS(645), + [sym_true] = ACTIONS(629), + [sym_false] = ACTIONS(629), + [sym_none] = ACTIONS(629), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(647), + [sym__template_string_start] = ACTIONS(649), + }, + [STATE(145)] = { + [sym_primary_expression] = STATE(785), + [sym_binary_operator] = STATE(924), + [sym_unary_operator] = STATE(924), + [sym_attribute] = STATE(924), + [sym_subscript] = STATE(924), + [sym_call] = STATE(924), + [sym_list] = STATE(924), + [sym_set] = STATE(924), + [sym_tuple] = STATE(924), + [sym_dictionary] = STATE(924), + [sym_list_comprehension] = STATE(924), + [sym_dictionary_comprehension] = STATE(924), + [sym_set_comprehension] = STATE(924), + [sym_generator_expression] = STATE(924), + [sym_parenthesized_expression] = STATE(924), + [sym_concatenated_string] = STATE(924), + [sym_string] = STATE(767), + [sym_concatenated_template_string] = STATE(924), + [sym_template_string] = STATE(768), + [sym_await] = STATE(924), + [sym_identifier] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(298), + [anon_sym_STAR] = ACTIONS(265), + [anon_sym_print] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_if] = ACTIONS(265), [anon_sym_async] = ACTIONS(611), [anon_sym_in] = ACTIONS(265), [anon_sym_match] = ACTIONS(611), @@ -22826,7 +23375,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(615), [anon_sym_LBRACK] = ACTIONS(617), [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(298), [anon_sym_STAR_STAR] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(265), [anon_sym_exec] = ACTIONS(611), [anon_sym_type] = ACTIONS(611), [anon_sym_AT] = ACTIONS(298), @@ -22849,6 +23400,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_GT] = ACTIONS(298), [anon_sym_is] = ACTIONS(265), [sym_ellipsis] = ACTIONS(621), + [anon_sym_COLON2] = ACTIONS(298), + [sym_type_conversion] = ACTIONS(298), [sym_integer] = ACTIONS(607), [sym_float] = ACTIONS(621), [anon_sym_await] = ACTIONS(623), @@ -22859,27 +23412,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(625), [sym__template_string_start] = ACTIONS(627), }, - [144] = { - [sym_primary_expression] = STATE(675), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(146)] = { + [sym_primary_expression] = STATE(760), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(597), @@ -22900,7 +23453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(603), [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_STAR_STAR] = ACTIONS(298), - [anon_sym_EQ] = ACTIONS(629), + [anon_sym_EQ] = ACTIONS(651), [anon_sym_exec] = ACTIONS(583), [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(298), @@ -22933,48 +23486,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [145] = { - [sym_primary_expression] = STATE(711), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_attribute] = STATE(760), - [sym_subscript] = STATE(760), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), - [sym_identifier] = ACTIONS(77), + [STATE(147)] = { + [sym_primary_expression] = STATE(790), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), + [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), - [anon_sym_from] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_LPAREN] = ACTIONS(653), [anon_sym_COMMA] = ACTIONS(298), [anon_sym_STAR] = ACTIONS(265), - [anon_sym_print] = ACTIONS(570), + [anon_sym_print] = ACTIONS(583), [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_COLON_EQ] = ACTIONS(655), [anon_sym_if] = ACTIONS(265), - [anon_sym_async] = ACTIONS(570), + [anon_sym_COLON] = ACTIONS(265), + [anon_sym_async] = ACTIONS(583), + [anon_sym_for] = ACTIONS(265), [anon_sym_in] = ACTIONS(265), - [anon_sym_match] = ACTIONS(570), + [anon_sym_match] = ACTIONS(583), [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(47), - [anon_sym_PLUS] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(574), - [anon_sym_LBRACE] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(657), + [anon_sym_PLUS] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(659), + [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(570), - [anon_sym_type] = ACTIONS(570), + [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), @@ -22985,7 +23540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(298), [anon_sym_CARET] = ACTIONS(298), [anon_sym_LT_LT] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(657), [anon_sym_LT] = ACTIONS(265), [anon_sym_LT_EQ] = ACTIONS(298), [anon_sym_EQ_EQ] = ACTIONS(298), @@ -22994,40 +23549,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(576), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), + [sym_ellipsis] = ACTIONS(304), + [sym_integer] = ACTIONS(306), + [sym_float] = ACTIONS(304), + [anon_sym_await] = ACTIONS(661), + [sym_true] = ACTIONS(306), + [sym_false] = ACTIONS(306), + [sym_none] = ACTIONS(306), [sym_comment] = ACTIONS(3), - [sym__semicolon] = ACTIONS(298), - [sym__newline] = ACTIONS(298), - [sym__string_start] = ACTIONS(81), - [sym__template_string_start] = ACTIONS(83), + [sym__string_start] = ACTIONS(310), + [sym__template_string_start] = ACTIONS(312), }, - [146] = { - [sym_primary_expression] = STATE(675), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(148)] = { + [sym_primary_expression] = STATE(760), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(597), @@ -23081,49 +23634,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [147] = { - [sym_primary_expression] = STATE(748), - [sym_binary_operator] = STATE(809), - [sym_unary_operator] = STATE(809), - [sym_attribute] = STATE(809), - [sym_subscript] = STATE(809), - [sym_call] = STATE(809), - [sym_list] = STATE(809), - [sym_set] = STATE(809), - [sym_tuple] = STATE(809), - [sym_dictionary] = STATE(809), - [sym_list_comprehension] = STATE(809), - [sym_dictionary_comprehension] = STATE(809), - [sym_set_comprehension] = STATE(809), - [sym_generator_expression] = STATE(809), - [sym_parenthesized_expression] = STATE(809), - [sym_concatenated_string] = STATE(809), - [sym_string] = STATE(720), - [sym_concatenated_template_string] = STATE(809), - [sym_template_string] = STATE(722), - [sym_await] = STATE(809), - [sym_identifier] = ACTIONS(607), + [STATE(149)] = { + [sym_primary_expression] = STATE(810), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_attribute] = STATE(908), + [sym_subscript] = STATE(908), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), + [sym_identifier] = ACTIONS(77), [anon_sym_DOT] = ACTIONS(265), - [anon_sym_LPAREN] = ACTIONS(609), + [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(574), + [anon_sym_LBRACE] = ACTIONS(51), + [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(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(576), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(298), + [sym__newline] = ACTIONS(298), + [sym__string_start] = ACTIONS(81), + [sym__template_string_start] = ACTIONS(83), + }, + [STATE(150)] = { + [sym_primary_expression] = STATE(848), + [sym_binary_operator] = STATE(953), + [sym_unary_operator] = STATE(953), + [sym_attribute] = STATE(953), + [sym_subscript] = STATE(953), + [sym_call] = STATE(953), + [sym_list] = STATE(953), + [sym_set] = STATE(953), + [sym_tuple] = STATE(953), + [sym_dictionary] = STATE(953), + [sym_list_comprehension] = STATE(953), + [sym_dictionary_comprehension] = STATE(953), + [sym_set_comprehension] = STATE(953), + [sym_generator_expression] = STATE(953), + [sym_parenthesized_expression] = STATE(953), + [sym_concatenated_string] = STATE(953), + [sym_string] = STATE(794), + [sym_concatenated_template_string] = STATE(953), + [sym_template_string] = STATE(795), + [sym_await] = STATE(953), + [sym_identifier] = ACTIONS(629), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(631), [anon_sym_RPAREN] = ACTIONS(298), [anon_sym_COMMA] = ACTIONS(298), [anon_sym_as] = ACTIONS(265), [anon_sym_STAR] = ACTIONS(265), - [anon_sym_print] = ACTIONS(611), + [anon_sym_print] = ACTIONS(633), [anon_sym_GT_GT] = ACTIONS(298), [anon_sym_if] = ACTIONS(265), [anon_sym_COLON] = ACTIONS(298), - [anon_sym_async] = ACTIONS(611), + [anon_sym_async] = ACTIONS(633), [anon_sym_in] = ACTIONS(265), - [anon_sym_match] = ACTIONS(611), + [anon_sym_match] = ACTIONS(633), [anon_sym_PIPE] = ACTIONS(298), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_LBRACK] = ACTIONS(639), + [anon_sym_LBRACE] = ACTIONS(641), [anon_sym_STAR_STAR] = ACTIONS(298), - [anon_sym_exec] = ACTIONS(611), - [anon_sym_type] = ACTIONS(611), + [anon_sym_exec] = ACTIONS(633), + [anon_sym_type] = ACTIONS(633), [anon_sym_AT] = ACTIONS(298), [anon_sym_not] = ACTIONS(265), [anon_sym_and] = ACTIONS(265), @@ -23134,7 +23761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(298), [anon_sym_CARET] = ACTIONS(298), [anon_sym_LT_LT] = ACTIONS(298), - [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(637), [anon_sym_LT] = ACTIONS(265), [anon_sym_LT_EQ] = ACTIONS(298), [anon_sym_EQ_EQ] = ACTIONS(298), @@ -23143,38 +23770,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(265), [anon_sym_LT_GT] = ACTIONS(298), [anon_sym_is] = ACTIONS(265), - [sym_ellipsis] = ACTIONS(621), - [sym_integer] = ACTIONS(607), - [sym_float] = ACTIONS(621), - [anon_sym_await] = ACTIONS(623), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_none] = ACTIONS(607), + [sym_ellipsis] = ACTIONS(643), + [sym_integer] = ACTIONS(629), + [sym_float] = ACTIONS(643), + [anon_sym_await] = ACTIONS(645), + [sym_true] = ACTIONS(629), + [sym_false] = ACTIONS(629), + [sym_none] = ACTIONS(629), [sym_comment] = ACTIONS(3), - [sym__string_start] = ACTIONS(625), - [sym__template_string_start] = ACTIONS(627), + [sym__string_start] = ACTIONS(647), + [sym__template_string_start] = ACTIONS(649), }, - [148] = { - [sym_primary_expression] = STATE(669), - [sym_binary_operator] = STATE(649), - [sym_unary_operator] = STATE(649), - [sym_attribute] = STATE(649), - [sym_subscript] = STATE(649), - [sym_call] = STATE(649), - [sym_list] = STATE(649), - [sym_set] = STATE(649), - [sym_tuple] = STATE(649), - [sym_dictionary] = STATE(649), - [sym_list_comprehension] = STATE(649), - [sym_dictionary_comprehension] = STATE(649), - [sym_set_comprehension] = STATE(649), - [sym_generator_expression] = STATE(649), - [sym_parenthesized_expression] = STATE(649), - [sym_concatenated_string] = STATE(649), - [sym_string] = STATE(569), - [sym_concatenated_template_string] = STATE(649), - [sym_template_string] = STATE(570), - [sym_await] = STATE(649), + [STATE(151)] = { + [sym_primary_expression] = STATE(735), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), [sym_identifier] = ACTIONS(306), [anon_sym_DOT] = ACTIONS(265), [anon_sym_LPAREN] = ACTIONS(578), @@ -23194,7 +23821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(591), [anon_sym_LBRACE] = ACTIONS(288), [anon_sym_STAR_STAR] = ACTIONS(298), - [anon_sym_EQ] = ACTIONS(629), + [anon_sym_EQ] = ACTIONS(651), [anon_sym_exec] = ACTIONS(583), [anon_sym_type] = ACTIONS(583), [anon_sym_AT] = ACTIONS(298), @@ -23227,59 +23854,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(310), [sym__template_string_start] = ACTIONS(312), }, - [149] = { - [sym_named_expression] = STATE(955), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_expression_list] = STATE(1357), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1026), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1357), - [sym_augmented_assignment] = STATE(1357), - [sym_pattern_list] = STATE(874), - [sym__right_hand_side] = STATE(1357), - [sym_yield] = STATE(1357), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(152)] = { + [sym_primary_expression] = STATE(790), + [sym_binary_operator] = STATE(724), + [sym_unary_operator] = STATE(724), + [sym_attribute] = STATE(724), + [sym_subscript] = STATE(724), + [sym_call] = STATE(724), + [sym_list] = STATE(724), + [sym_set] = STATE(724), + [sym_tuple] = STATE(724), + [sym_dictionary] = STATE(724), + [sym_list_comprehension] = STATE(724), + [sym_dictionary_comprehension] = STATE(724), + [sym_set_comprehension] = STATE(724), + [sym_generator_expression] = STATE(724), + [sym_parenthesized_expression] = STATE(724), + [sym_concatenated_string] = STATE(724), + [sym_string] = STATE(621), + [sym_concatenated_template_string] = STATE(724), + [sym_template_string] = STATE(624), + [sym_await] = STATE(724), + [sym_identifier] = ACTIONS(306), + [anon_sym_DOT] = ACTIONS(265), + [anon_sym_LPAREN] = ACTIONS(653), + [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_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(657), + [anon_sym_PLUS] = ACTIONS(657), + [anon_sym_LBRACK] = ACTIONS(659), + [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(657), + [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(661), + [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), + }, + [STATE(153)] = { + [sym_named_expression] = STATE(1158), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_expression_list] = STATE(1535), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1213), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1535), + [sym_augmented_assignment] = STATE(1535), + [sym_pattern_list] = STATE(1024), + [sym__right_hand_side] = STATE(1535), + [sym_yield] = STATE(1535), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [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_print] = ACTIONS(322), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [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_exec] = ACTIONS(322), + [anon_sym_type] = ACTIONS(322), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), [anon_sym_lambda] = ACTIONS(71), @@ -23295,59 +23995,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [150] = { - [sym_named_expression] = STATE(955), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_expression_list] = STATE(1356), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1026), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1356), - [sym_augmented_assignment] = STATE(1356), - [sym_pattern_list] = STATE(874), - [sym__right_hand_side] = STATE(1356), - [sym_yield] = STATE(1356), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(154)] = { + [sym_named_expression] = STATE(1158), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_expression_list] = STATE(1518), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1213), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1518), + [sym_augmented_assignment] = STATE(1518), + [sym_pattern_list] = STATE(1024), + [sym__right_hand_side] = STATE(1518), + [sym_yield] = STATE(1518), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [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_print] = ACTIONS(322), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [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_exec] = ACTIONS(322), + [anon_sym_type] = ACTIONS(322), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), [anon_sym_lambda] = ACTIONS(71), @@ -23363,59 +24063,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__string_start] = ACTIONS(81), [sym__template_string_start] = ACTIONS(83), }, - [151] = { - [sym_named_expression] = STATE(955), - [sym_list_splat] = STATE(1328), - [sym_dictionary_splat] = STATE(1328), - [sym_expression_list] = STATE(1365), - [sym_pattern] = STATE(867), - [sym_tuple_pattern] = STATE(853), - [sym_list_pattern] = STATE(853), - [sym_list_splat_pattern] = STATE(853), - [sym_expression] = STATE(1026), - [sym_primary_expression] = STATE(702), - [sym_not_operator] = STATE(955), - [sym_boolean_operator] = STATE(955), - [sym_binary_operator] = STATE(760), - [sym_unary_operator] = STATE(760), - [sym_comparison_operator] = STATE(955), - [sym_lambda] = STATE(955), - [sym_assignment] = STATE(1365), - [sym_augmented_assignment] = STATE(1365), - [sym_pattern_list] = STATE(874), - [sym__right_hand_side] = STATE(1365), - [sym_yield] = STATE(1365), - [sym_attribute] = STATE(459), - [sym_subscript] = STATE(459), - [sym_call] = STATE(760), - [sym_list] = STATE(760), - [sym_set] = STATE(760), - [sym_tuple] = STATE(760), - [sym_dictionary] = STATE(760), - [sym_list_comprehension] = STATE(760), - [sym_dictionary_comprehension] = STATE(760), - [sym_set_comprehension] = STATE(760), - [sym_generator_expression] = STATE(760), - [sym_parenthesized_expression] = STATE(760), - [sym_conditional_expression] = STATE(955), - [sym_concatenated_string] = STATE(760), - [sym_string] = STATE(698), - [sym_concatenated_template_string] = STATE(760), - [sym_template_string] = STATE(700), - [sym_await] = STATE(760), + [STATE(155)] = { + [sym_named_expression] = STATE(1158), + [sym_list_splat] = STATE(1549), + [sym_dictionary_splat] = STATE(1549), + [sym_expression_list] = STATE(1530), + [sym_pattern] = STATE(1013), + [sym_tuple_pattern] = STATE(999), + [sym_list_pattern] = STATE(999), + [sym_list_splat_pattern] = STATE(999), + [sym_expression] = STATE(1213), + [sym_primary_expression] = STATE(779), + [sym_not_operator] = STATE(1158), + [sym_boolean_operator] = STATE(1158), + [sym_binary_operator] = STATE(908), + [sym_unary_operator] = STATE(908), + [sym_comparison_operator] = STATE(1158), + [sym_lambda] = STATE(1158), + [sym_assignment] = STATE(1530), + [sym_augmented_assignment] = STATE(1530), + [sym_pattern_list] = STATE(1024), + [sym__right_hand_side] = STATE(1530), + [sym_yield] = STATE(1530), + [sym_attribute] = STATE(494), + [sym_subscript] = STATE(494), + [sym_call] = STATE(908), + [sym_list] = STATE(908), + [sym_set] = STATE(908), + [sym_tuple] = STATE(908), + [sym_dictionary] = STATE(908), + [sym_list_comprehension] = STATE(908), + [sym_dictionary_comprehension] = STATE(908), + [sym_set_comprehension] = STATE(908), + [sym_generator_expression] = STATE(908), + [sym_parenthesized_expression] = STATE(908), + [sym_conditional_expression] = STATE(1158), + [sym_concatenated_string] = STATE(908), + [sym_string] = STATE(782), + [sym_concatenated_template_string] = STATE(908), + [sym_template_string] = STATE(763), + [sym_await] = STATE(908), [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_print] = ACTIONS(322), + [anon_sym_async] = ACTIONS(322), + [anon_sym_match] = ACTIONS(322), [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_exec] = ACTIONS(322), + [anon_sym_type] = ACTIONS(322), [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(47), [anon_sym_lambda] = ACTIONS(71), @@ -23434,84 +24134,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 26, + [0] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(263), 1, - sym_identifier, ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, + ACTIONS(296), 1, + anon_sym_TILDE, ACTIONS(310), 1, sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(631), 1, - anon_sym_from, - ACTIONS(635), 1, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, + ACTIONS(673), 1, + anon_sym_in, + ACTIONS(675), 1, + anon_sym_LBRACK, + ACTIONS(677), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(1005), 1, + sym_pattern, + STATE(1012), 1, sym_primary_expression, - STATE(885), 1, - sym_expression, - STATE(1001), 1, - sym_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1375), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(296), 3, + ACTIONS(589), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, + STATE(849), 2, + sym_attribute, + sym_subscript, + STATE(999), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(669), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - ACTIONS(633), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(671), 15, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_EQ, - sym_type_conversion, - STATE(649), 17, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_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(724), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -23525,7 +24221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [117] = 30, + [110] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -23534,76 +24230,75 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(639), 1, + ACTIONS(679), 1, sym_identifier, - ACTIONS(641), 1, + ACTIONS(681), 1, anon_sym_LPAREN, - ACTIONS(643), 1, - anon_sym_RPAREN, - ACTIONS(645), 1, + ACTIONS(683), 1, anon_sym_STAR, - ACTIONS(649), 1, + ACTIONS(687), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(689), 1, + anon_sym_RBRACK, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(657), 1, + ACTIONS(697), 1, anon_sym_await, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(935), 1, + STATE(1083), 1, sym_expression, - STATE(1177), 1, + STATE(1356), 1, sym_pattern, - STATE(1197), 1, - sym_yield, - STATE(1409), 1, - sym__collection_elements, - STATE(1416), 1, + STATE(1628), 1, sym__patterns, + STATE(1633), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(770), 2, + STATE(915), 2, sym_attribute, sym_subscript, - STATE(1095), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(853), 3, + STATE(999), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, + STATE(1257), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(647), 5, + ACTIONS(685), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 15, + STATE(724), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -23619,64 +24314,47 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [241] = 31, + [232] = 23, ACTIONS(3), 1, sym_comment, 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(639), 1, + ACTIONS(663), 1, sym_identifier, - ACTIONS(641), 1, + ACTIONS(665), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(667), 1, anon_sym_STAR, - ACTIONS(649), 1, + ACTIONS(675), 1, anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(657), 1, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(659), 1, - anon_sym_RPAREN, - STATE(569), 1, + ACTIONS(701), 1, + anon_sym_in, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, - sym_primary_expression, - STATE(930), 1, - sym_expression, - STATE(1177), 1, + STATE(1005), 1, sym_pattern, - STATE(1218), 1, - sym_yield, - STATE(1303), 1, - sym_parenthesized_list_splat, - STATE(1304), 1, - sym_list_splat, - STATE(1416), 1, - sym__patterns, - STATE(1480), 1, - sym__collection_elements, + STATE(1012), 1, + sym_primary_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(770), 2, - sym_attribute, - sym_subscript, - ACTIONS(601), 3, + ACTIONS(589), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - STATE(853), 3, + STATE(849), 2, + sym_attribute, + sym_subscript, + STATE(999), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -23685,20 +24363,29 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(647), 5, + ACTIONS(669), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 15, + ACTIONS(699), 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(724), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -23714,7 +24401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [367] = 29, + [342] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -23723,75 +24410,76 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(639), 1, + ACTIONS(679), 1, sym_identifier, - ACTIONS(641), 1, + ACTIONS(681), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(683), 1, anon_sym_STAR, - ACTIONS(649), 1, + ACTIONS(687), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(657), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(661), 1, - anon_sym_RBRACK, - STATE(569), 1, + ACTIONS(703), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(908), 1, + STATE(1066), 1, sym_expression, - STATE(1177), 1, + STATE(1356), 1, sym_pattern, - STATE(1434), 1, - sym__patterns, - STATE(1438), 1, + STATE(1383), 1, + sym_yield, + STATE(1615), 1, sym__collection_elements, + STATE(1643), 1, + sym__patterns, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(770), 2, + STATE(915), 2, sym_attribute, sym_subscript, + STATE(1257), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(853), 3, + STATE(999), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1095), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(647), 5, + ACTIONS(685), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 15, + STATE(724), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -23807,7 +24495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [489] = 30, + [466] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -23816,76 +24504,75 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(639), 1, + ACTIONS(679), 1, sym_identifier, - ACTIONS(641), 1, + ACTIONS(681), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(683), 1, anon_sym_STAR, - ACTIONS(649), 1, + ACTIONS(687), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(657), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(663), 1, - anon_sym_RPAREN, - STATE(569), 1, + ACTIONS(705), 1, + anon_sym_RBRACK, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(930), 1, + STATE(1081), 1, sym_expression, - STATE(1177), 1, + STATE(1356), 1, sym_pattern, - STATE(1218), 1, - sym_yield, - STATE(1416), 1, + STATE(1628), 1, sym__patterns, - STATE(1480), 1, + STATE(1656), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(770), 2, + STATE(915), 2, sym_attribute, sym_subscript, - STATE(1095), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(853), 3, + STATE(999), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, + STATE(1257), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(647), 5, + ACTIONS(685), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 15, + STATE(724), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -23901,7 +24588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [613] = 29, + [588] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -23910,75 +24597,77 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(639), 1, + ACTIONS(679), 1, sym_identifier, - ACTIONS(641), 1, + ACTIONS(681), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(683), 1, anon_sym_STAR, - ACTIONS(649), 1, + ACTIONS(687), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(657), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(665), 1, - anon_sym_RBRACK, - STATE(569), 1, + ACTIONS(707), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(912), 1, + STATE(1066), 1, sym_expression, - STATE(1177), 1, + STATE(1356), 1, sym_pattern, - STATE(1390), 1, + STATE(1383), 1, + sym_yield, + STATE(1440), 1, + sym_parenthesized_list_splat, + STATE(1474), 1, + sym_list_splat, + STATE(1615), 1, sym__collection_elements, - STATE(1434), 1, + STATE(1643), 1, sym__patterns, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(770), 2, + STATE(915), 2, sym_attribute, sym_subscript, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(853), 3, + STATE(999), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1095), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(647), 5, + ACTIONS(685), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 15, + STATE(724), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -23994,47 +24683,63 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [735] = 23, + [714] = 30, ACTIONS(3), 1, sym_comment, 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(667), 1, + ACTIONS(679), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(681), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(683), 1, anon_sym_STAR, - ACTIONS(677), 1, - anon_sym_in, - ACTIONS(679), 1, + ACTIONS(687), 1, anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(691), 1, + anon_sym_not, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(697), 1, anon_sym_await, - STATE(569), 1, + ACTIONS(709), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(854), 1, - sym_pattern, - STATE(862), 1, + STATE(725), 1, sym_primary_expression, + STATE(1084), 1, + sym_expression, + STATE(1356), 1, + sym_pattern, + STATE(1489), 1, + sym_yield, + STATE(1626), 1, + sym__collection_elements, + STATE(1643), 1, + sym__patterns, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(589), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(735), 2, + STATE(915), 2, sym_attribute, sym_subscript, - STATE(853), 3, + STATE(1257), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(999), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -24043,29 +24748,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(673), 5, + ACTIONS(685), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(675), 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(649), 15, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24081,7 +24777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [845] = 29, + [838] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -24090,53 +24786,53 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(639), 1, + ACTIONS(679), 1, sym_identifier, - ACTIONS(641), 1, + ACTIONS(681), 1, anon_sym_LPAREN, - ACTIONS(645), 1, + ACTIONS(683), 1, anon_sym_STAR, - ACTIONS(649), 1, + ACTIONS(687), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(657), 1, + ACTIONS(697), 1, anon_sym_await, - ACTIONS(683), 1, + ACTIONS(711), 1, anon_sym_RBRACK, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(912), 1, + STATE(1081), 1, sym_expression, - STATE(1177), 1, + STATE(1356), 1, sym_pattern, - STATE(1390), 1, - sym__collection_elements, - STATE(1434), 1, + STATE(1628), 1, sym__patterns, + STATE(1656), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(770), 2, + STATE(915), 2, sym_attribute, sym_subscript, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(853), 3, + STATE(999), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, - STATE(1095), 3, + STATE(1257), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -24145,20 +24841,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(647), 5, + ACTIONS(685), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 15, + STATE(724), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -24174,80 +24870,85 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [967] = 23, + [960] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, 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(667), 1, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(713), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(671), 1, + ACTIONS(717), 1, + anon_sym_COMMA, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(679), 1, - anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(723), 1, + anon_sym_RBRACE, + ACTIONS(725), 1, + anon_sym_not, + ACTIONS(727), 1, + anon_sym_lambda, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(687), 1, - anon_sym_in, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(854), 1, - sym_pattern, - STATE(862), 1, + STATE(772), 1, sym_primary_expression, + STATE(1046), 1, + sym_expression, + STATE(1212), 1, + sym_pair, + STATE(1490), 1, + sym_dictionary_splat, + STATE(1705), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(589), 2, + ACTIONS(657), 3, anon_sym_DASH, anon_sym_PLUS, - STATE(735), 2, - sym_attribute, - sym_subscript, - STATE(853), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, + anon_sym_TILDE, + STATE(1257), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(673), 5, + ACTIONS(721), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - ACTIONS(685), 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(649), 15, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -24261,7 +24962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1077] = 29, + [1081] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -24272,48 +24973,48 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(603), 1, + ACTIONS(659), 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, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(689), 1, + ACTIONS(713), 1, sym_identifier, - ACTIONS(691), 1, + ACTIONS(715), 1, anon_sym_LPAREN, - ACTIONS(693), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(725), 1, + anon_sym_not, + ACTIONS(727), 1, + anon_sym_lambda, + ACTIONS(729), 1, + anon_sym_await, + ACTIONS(731), 1, anon_sym_COMMA, - ACTIONS(697), 1, + ACTIONS(733), 1, anon_sym_RBRACE, - ACTIONS(699), 1, - anon_sym_await, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(772), 1, sym_primary_expression, - STATE(905), 1, + STATE(1061), 1, sym_expression, - STATE(1017), 1, + STATE(1190), 1, sym_pair, - STATE(1259), 1, + STATE(1403), 1, sym_dictionary_splat, - STATE(1456), 1, + STATE(1687), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(657), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1095), 3, + STATE(1257), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -24322,20 +25023,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(721), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24353,76 +25054,81 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1198] = 24, + [1202] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - 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, + ACTIONS(659), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(713), 1, + sym_identifier, + ACTIONS(715), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(725), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(727), 1, + anon_sym_lambda, + ACTIONS(729), 1, + anon_sym_await, + ACTIONS(735), 1, + anon_sym_COMMA, + ACTIONS(737), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(772), 1, sym_primary_expression, - STATE(931), 1, + STATE(1060), 1, sym_expression, + STATE(1170), 1, + sym_pair, + STATE(1410), 1, + sym_dictionary_splat, + STATE(1600), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1010), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(296), 3, + ACTIONS(657), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1257), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(721), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(701), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24440,7 +25146,99 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1309] = 24, + [1323] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(713), 1, + sym_identifier, + ACTIONS(715), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(725), 1, + anon_sym_not, + ACTIONS(727), 1, + anon_sym_lambda, + ACTIONS(729), 1, + anon_sym_await, + ACTIONS(739), 1, + anon_sym_COMMA, + ACTIONS(741), 1, + anon_sym_RBRACE, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(772), 1, + sym_primary_expression, + STATE(1034), 1, + sym_expression, + STATE(1198), 1, + sym_pair, + STATE(1425), 1, + sym_dictionary_splat, + STATE(1602), 1, + sym__collection_elements, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(1257), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [1444] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -24461,22 +25259,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(743), 1, + anon_sym_from, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(931), 1, + STATE(1148), 1, sym_expression, + STATE(1196), 1, + sym_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1010), 2, + STATE(1510), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(296), 3, @@ -24488,28 +25290,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, + ACTIONS(745), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(703), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24527,81 +25326,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1420] = 29, + [1558] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(288), 1, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(651), 1, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(751), 1, + anon_sym_from, + ACTIONS(755), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(757), 1, anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(759), 1, anon_sym_await, - ACTIONS(705), 1, - anon_sym_COMMA, - ACTIONS(707), 1, - anon_sym_RBRACE, - STATE(569), 1, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, sym_string, - STATE(570), 1, + STATE(768), 1, sym_template_string, - STATE(653), 1, - sym_primary_expression, - STATE(887), 1, + STATE(1093), 1, sym_expression, - STATE(1006), 1, - sym_pair, - STATE(1215), 1, - sym_dictionary_splat, - STATE(1396), 1, - sym__collection_elements, - ACTIONS(304), 2, + STATE(1196), 1, + sym_expression_list, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + STATE(1567), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1095), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(306), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(745), 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + ACTIONS(753), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1129), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(924), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24619,7 +25414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1541] = 24, + [1672] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -24640,22 +25435,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(931), 1, + STATE(1117), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1010), 2, + STATE(1267), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(296), 3, @@ -24673,22 +25468,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + ACTIONS(761), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - ACTIONS(703), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24706,81 +25499,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1652] = 29, + [1781] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, + 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(603), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(651), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_await, - ACTIONS(709), 1, - anon_sym_COMMA, - ACTIONS(711), 1, - anon_sym_RBRACE, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(886), 1, + STATE(1117), 1, sym_expression, - STATE(1025), 1, - sym_pair, - STATE(1225), 1, - sym_dictionary_splat, - STATE(1387), 1, - sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + STATE(1267), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1095), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + ACTIONS(763), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24798,9 +25584,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1773] = 24, + [1890] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -24813,39 +25601,32 @@ static const uint16_t ts_small_parse_table[] = { 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(655), 1, - anon_sym_yield, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(719), 1, anon_sym_STAR, - STATE(569), 1, + ACTIONS(747), 1, + anon_sym_not, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(992), 1, + STATE(1117), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1267), 2, + sym_list_splat, + sym_dictionary_splat, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(715), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1118), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(306), 4, sym_integer, sym_true, @@ -24857,14 +25638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + ACTIONS(763), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24882,75 +25669,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1881] = 26, + [1999] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(288), 1, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(651), 1, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(757), 1, anon_sym_lambda, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - sym_identifier, - ACTIONS(721), 1, - anon_sym_RPAREN, - ACTIONS(723), 1, - anon_sym_COMMA, - ACTIONS(727), 1, + ACTIONS(759), 1, anon_sym_await, - STATE(569), 1, + ACTIONS(765), 1, + anon_sym_yield, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, sym_string, - STATE(570), 1, + STATE(768), 1, sym_template_string, - STATE(653), 1, - sym_primary_expression, - STATE(911), 1, + STATE(1095), 1, sym_expression, - STATE(1261), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + STATE(1567), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1260), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, + STATE(1265), 3, + sym_expression_list, + sym_yield, + sym__f_expression, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(725), 5, + ACTIONS(753), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1129), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(924), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -24968,76 +25754,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [1993] = 27, + [2109] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(689), 1, + ACTIONS(81), 1, + sym__string_start, + ACTIONS(83), 1, + sym__template_string_start, + ACTIONS(314), 1, sym_identifier, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(717), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(729), 1, - anon_sym_RPAREN, - STATE(569), 1, - sym_string, - STATE(570), 1, + ACTIONS(767), 1, + anon_sym_from, + STATE(763), 1, sym_template_string, - STATE(653), 1, + STATE(779), 1, sym_primary_expression, - STATE(903), 1, + STATE(782), 1, + sym_string, + STATE(1202), 1, sym_expression, - STATE(1220), 1, - sym_yield, - STATE(1274), 1, - sym_with_item, - STATE(1391), 1, - sym__collection_elements, - ACTIONS(304), 2, + STATE(1537), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - STATE(1095), 2, + ACTIONS(745), 2, + sym__newline, + anon_sym_SEMI, + STATE(1549), 2, sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(601), 3, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25055,7 +25840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2107] = 24, + [2221] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -25072,21 +25857,21 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(713), 1, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(773), 1, anon_sym_STAR, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(992), 1, + STATE(1174), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -25095,11 +25880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(715), 3, + ACTIONS(771), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(1118), 3, + STATE(1315), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -25114,14 +25899,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25139,53 +25924,53 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2215] = 26, + [2329] = 26, 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, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(775), 1, + sym_identifier, + ACTIONS(777), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(779), 1, anon_sym_RPAREN, - ACTIONS(723), 1, + ACTIONS(781), 1, anon_sym_COMMA, - ACTIONS(731), 1, - sym_identifier, - ACTIONS(735), 1, + ACTIONS(785), 1, anon_sym_await, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1060), 1, + STATE(1076), 1, sym_expression, - STATE(1261), 1, + STATE(1388), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1260), 3, + STATE(1387), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -25194,20 +25979,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(783), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25225,74 +26010,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2327] = 25, + [2441] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - 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(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(655), 1, - anon_sym_yield, - STATE(569), 1, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(789), 1, + anon_sym_RPAREN, + ACTIONS(791), 1, + anon_sym_COMMA, + ACTIONS(795), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(940), 1, + STATE(1225), 1, sym_expression, + STATE(1398), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1375), 2, - sym_list_splat, - sym_dictionary_splat, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1076), 3, - sym_expression_list, - sym_yield, - sym__f_expression, + STATE(1397), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25310,74 +26096,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2437] = 25, + [2553] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, anon_sym_not, - ACTIONS(655), 1, - anon_sym_yield, - STATE(569), 1, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + ACTIONS(797), 1, + anon_sym_STAR, + ACTIONS(799), 1, + anon_sym_STAR_STAR, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, sym_string, - STATE(570), 1, + STATE(768), 1, sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(940), 1, + STATE(1164), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - STATE(1375), 2, + STATE(1273), 2, sym_list_splat, sym_dictionary_splat, - ACTIONS(296), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1088), 3, - sym_expression_list, - sym_yield, - sym__f_expression, - ACTIONS(306), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(761), 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + ACTIONS(753), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1129), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(924), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25395,75 +26180,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2547] = 26, + [2661] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(288), 1, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(651), 1, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(757), 1, anon_sym_lambda, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - sym_identifier, - ACTIONS(727), 1, + ACTIONS(759), 1, anon_sym_await, - ACTIONS(737), 1, - anon_sym_RPAREN, - ACTIONS(739), 1, - anon_sym_COMMA, - STATE(569), 1, + ACTIONS(797), 1, + anon_sym_STAR, + ACTIONS(799), 1, + anon_sym_STAR_STAR, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, sym_string, - STATE(570), 1, + STATE(768), 1, sym_template_string, - STATE(653), 1, - sym_primary_expression, - STATE(933), 1, + STATE(1164), 1, sym_expression, - STATE(1204), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + STATE(1273), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1205), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(725), 5, + ACTIONS(763), 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + ACTIONS(753), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1129), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(924), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25481,75 +26264,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2659] = 26, + [2769] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(288), 1, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(651), 1, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(757), 1, anon_sym_lambda, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(719), 1, - sym_identifier, - ACTIONS(727), 1, + ACTIONS(759), 1, anon_sym_await, - ACTIONS(741), 1, - anon_sym_RPAREN, - ACTIONS(743), 1, - anon_sym_COMMA, - STATE(569), 1, + ACTIONS(797), 1, + anon_sym_STAR, + ACTIONS(799), 1, + anon_sym_STAR_STAR, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, sym_string, - STATE(570), 1, + STATE(768), 1, sym_template_string, - STATE(653), 1, - sym_primary_expression, - STATE(909), 1, + STATE(1164), 1, sym_expression, - STATE(1230), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + STATE(1273), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1223), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(725), 5, + ACTIONS(763), 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + ACTIONS(753), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1129), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(924), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25567,73 +26348,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2771] = 24, + [2877] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, anon_sym_not, - ACTIONS(655), 1, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + ACTIONS(765), 1, anon_sym_yield, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(569), 1, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, sym_string, - STATE(570), 1, + STATE(768), 1, sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(992), 1, + STATE(1095), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + STATE(1567), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(745), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(1118), 3, - sym_list_splat, - sym_parenthesized_list_splat, + STATE(1287), 3, + sym_expression_list, sym_yield, - ACTIONS(306), 4, + sym__f_expression, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(753), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1129), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(924), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25651,75 +26433,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2879] = 26, + [2987] = 26, 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, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(691), 1, + anon_sym_not, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(747), 1, - anon_sym_from, - STATE(698), 1, + ACTIONS(775), 1, + sym_identifier, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(785), 1, + anon_sym_await, + ACTIONS(789), 1, + anon_sym_RPAREN, + ACTIONS(791), 1, + anon_sym_COMMA, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(725), 1, sym_primary_expression, - STATE(989), 1, + STATE(1067), 1, sym_expression, - STATE(1228), 1, - sym_expression_list, - ACTIONS(75), 2, + STATE(1398), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(749), 2, - sym__newline, - sym__semicolon, - STATE(1328), 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(1397), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(783), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25737,75 +26519,76 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [2991] = 26, + [3099] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(691), 1, + anon_sym_not, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(773), 1, anon_sym_STAR, - ACTIONS(751), 1, - anon_sym_from, - STATE(698), 1, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(803), 1, + anon_sym_RPAREN, + ACTIONS(807), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(725), 1, sym_primary_expression, - STATE(1030), 1, + STATE(1041), 1, sym_expression, - STATE(1330), 1, - sym_expression_list, - ACTIONS(75), 2, + STATE(1400), 1, + sym_yield, + STATE(1439), 1, + sym_with_item, + STATE(1675), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(633), 2, - sym__newline, - sym__semicolon, - STATE(1328), 2, + STATE(1257), 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, - ACTIONS(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25823,73 +26606,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3103] = 25, + [3213] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(310), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 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(731), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(753), 1, - anon_sym_RPAREN, - STATE(569), 1, - sym_string, - STATE(570), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(809), 1, + anon_sym_from, + STATE(763), 1, sym_template_string, - STATE(652), 1, + STATE(779), 1, sym_primary_expression, - STATE(1102), 1, + STATE(782), 1, + sym_string, + STATE(1122), 1, sym_expression, - STATE(1368), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, + STATE(1475), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(811), 2, + sym__newline, + anon_sym_SEMI, + STATE(1549), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25907,43 +26692,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3212] = 25, + [3325] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, + 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(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(731), 1, - sym_identifier, - ACTIONS(735), 1, - anon_sym_await, - ACTIONS(755), 1, - anon_sym_RPAREN, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1174), 1, sym_expression, - STATE(1368), 1, - sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, @@ -25951,29 +26732,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, + ACTIONS(813), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(1315), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -25991,71 +26776,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3321] = 23, + [3433] = 24, 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(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, - anon_sym_await, - ACTIONS(761), 1, - anon_sym_lambda, - STATE(569), 1, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(945), 1, + STATE(1174), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1020), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(757), 3, + ACTIONS(813), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(759), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, + STATE(1315), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 4, + ACTIONS(276), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26073,51 +26860,53 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3426] = 25, + [3541] = 26, 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, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(775), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(763), 1, + ACTIONS(815), 1, anon_sym_RPAREN, - STATE(569), 1, + ACTIONS(817), 1, + anon_sym_COMMA, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1075), 1, sym_expression, - STATE(1368), 1, + STATE(1412), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, + STATE(1411), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -26126,20 +26915,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(783), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26157,51 +26946,53 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3535] = 25, + [3653] = 26, 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, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(775), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(785), 1, anon_sym_await, - ACTIONS(765), 1, + ACTIONS(819), 1, anon_sym_RPAREN, - STATE(569), 1, + ACTIONS(821), 1, + anon_sym_COMMA, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1080), 1, sym_expression, - STATE(1368), 1, + STATE(1430), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, + STATE(1429), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -26210,20 +27001,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(783), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26241,7 +27032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3644] = 25, + [3765] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -26256,27 +27047,27 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(787), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(767), 1, + ACTIONS(823), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1261), 1, sym_expression, - STATE(1368), 1, + STATE(1577), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -26285,7 +27076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, + STATE(1570), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -26294,20 +27085,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26325,73 +27116,71 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3753] = 25, + [3874] = 23, 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, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(801), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(807), 1, anon_sym_await, - ACTIONS(769), 1, - anon_sym_RPAREN, - STATE(569), 1, + ACTIONS(829), 1, + anon_sym_lambda, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1094), 1, sym_expression, - STATE(1368), 1, - sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + STATE(1211), 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(1310), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + ACTIONS(825), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(827), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(805), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26409,13 +27198,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3862] = 25, + [3979] = 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, @@ -26424,33 +27211,35 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(488), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(494), 1, + ACTIONS(320), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(831), 1, + anon_sym_from, + ACTIONS(833), 1, anon_sym_STAR, - STATE(698), 1, - sym_string, - STATE(700), 1, + ACTIONS(835), 1, + anon_sym_STAR_STAR, + STATE(763), 1, sym_template_string, - STATE(702), 1, + STATE(779), 1, sym_primary_expression, - STATE(1031), 1, + STATE(782), 1, + sym_string, + STATE(1199), 1, sym_expression, - STATE(1377), 1, - sym_expression_list, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(771), 2, + ACTIONS(761), 2, sym__newline, - sym__semicolon, - STATE(1328), 2, + anon_sym_SEMI, + STATE(1358), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -26462,20 +27251,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26493,73 +27282,71 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [3971] = 25, + [4088] = 23, 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, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(801), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(807), 1, anon_sym_await, - ACTIONS(773), 1, - anon_sym_RPAREN, - STATE(569), 1, + ACTIONS(829), 1, + anon_sym_lambda, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1094), 1, sym_expression, - STATE(1368), 1, - sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + STATE(1211), 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(1310), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + ACTIONS(837), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(839), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(805), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26577,7 +27364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4080] = 25, + [4193] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -26590,35 +27377,35 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(488), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(494), 1, + ACTIONS(320), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(775), 1, - anon_sym_from, - ACTIONS(777), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(779), 1, + ACTIONS(835), 1, anon_sym_STAR_STAR, - STATE(698), 1, - sym_string, - STATE(700), 1, + ACTIONS(841), 1, + anon_sym_from, + STATE(763), 1, sym_template_string, - STATE(702), 1, + STATE(779), 1, sym_primary_expression, - STATE(1002), 1, + STATE(782), 1, + sym_string, + STATE(1199), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(703), 2, + ACTIONS(763), 2, sym__newline, - sym__semicolon, - STATE(1168), 2, + anon_sym_SEMI, + STATE(1358), 2, sym_list_splat, sym_dictionary_splat, ACTIONS(47), 3, @@ -26630,20 +27417,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26661,7 +27448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4189] = 25, + [4302] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -26672,62 +27459,63 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(691), 1, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(777), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(803), 1, + anon_sym_RPAREN, + ACTIONS(807), 1, anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_RBRACK, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(912), 1, + STATE(1066), 1, sym_expression, - STATE(1390), 1, + STATE(1383), 1, + sym_yield, + STATE(1615), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1257), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1095), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26745,73 +27533,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4298] = 25, + [4413] = 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(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(775), 1, - anon_sym_from, - ACTIONS(777), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(779), 1, - anon_sym_STAR_STAR, - STATE(698), 1, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, + anon_sym_await, + ACTIONS(843), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(719), 1, sym_primary_expression, - STATE(1002), 1, + STATE(1261), 1, sym_expression, - ACTIONS(75), 2, + STATE(1577), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(703), 2, - sym__newline, - sym__semicolon, - STATE(1168), 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(1570), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26829,74 +27617,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4407] = 26, + [4522] = 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(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(691), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(729), 1, + ACTIONS(845), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(930), 1, + STATE(1261), 1, sym_expression, - STATE(1218), 1, - sym_yield, - STATE(1480), 1, - sym__collection_elements, + STATE(1577), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1095), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1570), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26914,7 +27701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4518] = 23, + [4631] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -26923,62 +27710,64 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, sym_identifier, - ACTIONS(699), 1, + ACTIONS(807), 1, anon_sym_await, - ACTIONS(761), 1, - anon_sym_lambda, - STATE(569), 1, + ACTIONS(847), 1, + anon_sym_RBRACK, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(945), 1, + STATE(1081), 1, sym_expression, + STATE(1656), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1020), 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(783), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(785), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, + STATE(1257), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 4, + ACTIONS(805), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -26996,71 +27785,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4623] = 23, + [4740] = 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(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, sym_identifier, - ACTIONS(699), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(761), 1, - anon_sym_lambda, - STATE(569), 1, + ACTIONS(849), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(945), 1, + STATE(1261), 1, sym_expression, + STATE(1577), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1020), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(787), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(789), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, + STATE(1570), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 4, + ACTIONS(793), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27078,73 +27869,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4728] = 25, + [4849] = 27, 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, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(777), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(801), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(807), 1, anon_sym_await, - ACTIONS(791), 1, + ACTIONS(851), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1066), 1, sym_expression, - STATE(1368), 1, + STATE(1383), 1, + sym_yield, + STATE(1440), 1, sym_parenthesized_list_splat, + STATE(1474), 1, + sym_list_splat, + STATE(1615), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27162,7 +27955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4837] = 25, + [4962] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27177,27 +27970,27 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(787), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(793), 1, + ACTIONS(853), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1261), 1, sym_expression, - STATE(1368), 1, + STATE(1577), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -27206,7 +27999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, + STATE(1570), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27215,20 +28008,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27246,71 +28039,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [4946] = 23, + [5071] = 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(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(689), 1, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, sym_identifier, - ACTIONS(699), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(761), 1, - anon_sym_lambda, - STATE(569), 1, + ACTIONS(855), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(945), 1, + STATE(1261), 1, sym_expression, + STATE(1577), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1020), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(795), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(797), 3, - anon_sym_if, - anon_sym_async, - anon_sym_for, + STATE(1570), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 4, + ACTIONS(793), 5, anon_sym_print, + anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27328,7 +28123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5051] = 25, + [5180] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27343,27 +28138,27 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(787), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(857), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1261), 1, sym_expression, - STATE(1368), 1, + STATE(1577), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -27372,7 +28167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, + STATE(1570), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27381,20 +28176,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27412,7 +28207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5160] = 25, + [5289] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27427,27 +28222,27 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(787), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(801), 1, + ACTIONS(859), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1261), 1, sym_expression, - STATE(1368), 1, + STATE(1577), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -27456,7 +28251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, + STATE(1570), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27465,20 +28260,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27496,7 +28291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5269] = 27, + [5398] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -27505,66 +28300,62 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(689), 1, + ACTIONS(801), 1, sym_identifier, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(807), 1, anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(803), 1, - anon_sym_RPAREN, - STATE(569), 1, + ACTIONS(829), 1, + anon_sym_lambda, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(930), 1, + STATE(1094), 1, sym_expression, - STATE(1218), 1, - sym_yield, - STATE(1303), 1, - sym_parenthesized_list_splat, - STATE(1304), 1, - sym_list_splat, - STATE(1480), 1, - sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1211), 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(861), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(863), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(805), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27582,73 +28373,71 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5382] = 25, + [5503] = 23, 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, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(801), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(807), 1, anon_sym_await, - ACTIONS(805), 1, - anon_sym_RPAREN, - STATE(569), 1, + ACTIONS(829), 1, + anon_sym_lambda, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1094), 1, sym_expression, - STATE(1368), 1, - sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + STATE(1211), 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(1310), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, + ACTIONS(865), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(867), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(805), 4, anon_sym_print, - anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27666,7 +28455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5491] = 25, + [5608] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -27677,62 +28466,63 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_await, - ACTIONS(717), 1, + ACTIONS(773), 1, anon_sym_STAR, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_identifier, ACTIONS(807), 1, - anon_sym_RBRACK, - STATE(569), 1, + anon_sym_await, + ACTIONS(869), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(908), 1, + STATE(1084), 1, sym_expression, - STATE(1438), 1, + STATE(1489), 1, + sym_yield, + STATE(1626), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1257), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1095), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27750,7 +28540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5600] = 26, + [5719] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -27761,63 +28551,62 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(691), 1, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(777), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(729), 1, - anon_sym_RPAREN, - STATE(569), 1, + ACTIONS(871), 1, + anon_sym_RBRACK, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(921), 1, + STATE(1083), 1, sym_expression, - STATE(1220), 1, - sym_yield, - STATE(1391), 1, + STATE(1633), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1095), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1257), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27835,7 +28624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5711] = 25, + [5828] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -27846,62 +28635,63 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(691), 1, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(777), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(781), 1, - anon_sym_RBRACK, - STATE(569), 1, + ACTIONS(873), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(928), 1, + STATE(1073), 1, sym_expression, - STATE(1393), 1, + STATE(1423), 1, + sym_yield, + STATE(1591), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1257), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1095), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -27919,7 +28709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5820] = 25, + [5939] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -27934,27 +28724,27 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(787), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(809), 1, + ACTIONS(875), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1261), 1, sym_expression, - STATE(1368), 1, + STATE(1577), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -27963,7 +28753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, + STATE(1570), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -27972,20 +28762,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28003,7 +28793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [5929] = 25, + [6048] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -28014,31 +28804,37 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(691), 1, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(777), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(803), 1, + anon_sym_RPAREN, + ACTIONS(807), 1, anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(811), 1, - anon_sym_RBRACK, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(912), 1, + STATE(1066), 1, sym_expression, - STATE(1390), 1, + STATE(1383), 1, + sym_yield, + STATE(1440), 1, + sym_parenthesized_list_splat, + STATE(1474), 1, + sym_list_splat, + STATE(1615), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, @@ -28047,29 +28843,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1095), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28087,7 +28879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6038] = 26, + [6161] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -28098,40 +28890,41 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(655), 1, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(691), 1, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(777), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(813), 1, + ACTIONS(873), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(935), 1, + STATE(1066), 1, sym_expression, - STATE(1197), 1, + STATE(1383), 1, sym_yield, - STATE(1409), 1, + STATE(1440), 1, + sym_parenthesized_list_splat, + STATE(1474), 1, + sym_list_splat, + STATE(1615), 1, sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1095), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, @@ -28141,20 +28934,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28172,74 +28965,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6149] = 26, + [6274] = 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(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(691), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(803), 1, + ACTIONS(877), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(930), 1, + STATE(1261), 1, sym_expression, - STATE(1218), 1, - sym_yield, - STATE(1480), 1, - sym__collection_elements, + STATE(1577), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1095), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1570), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28257,75 +29049,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6260] = 27, + [6383] = 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(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(691), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(717), 1, - anon_sym_STAR, - ACTIONS(729), 1, + ACTIONS(879), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(930), 1, + STATE(1261), 1, sym_expression, - STATE(1218), 1, - sym_yield, - STATE(1303), 1, + STATE(1577), 1, sym_parenthesized_list_splat, - STATE(1304), 1, - sym_list_splat, - STATE(1480), 1, - sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1570), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28343,7 +29133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6373] = 25, + [6492] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -28358,27 +29148,27 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(787), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(815), 1, + ACTIONS(881), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1261), 1, sym_expression, - STATE(1368), 1, + STATE(1577), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -28387,7 +29177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, + STATE(1570), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28396,20 +29186,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28427,73 +29217,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6482] = 25, + [6601] = 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(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(777), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(779), 1, - anon_sym_STAR_STAR, - ACTIONS(817), 1, - anon_sym_from, - STATE(698), 1, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, + anon_sym_await, + ACTIONS(883), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(719), 1, sym_primary_expression, - STATE(1002), 1, + STATE(1261), 1, sym_expression, - ACTIONS(75), 2, + STATE(1577), 1, + sym_parenthesized_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(701), 2, - sym__newline, - sym__semicolon, - STATE(1168), 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(1570), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28511,7 +29301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6591] = 25, + [6710] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -28526,27 +29316,27 @@ static const uint16_t ts_small_parse_table[] = { sym__template_string_start, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(731), 1, + ACTIONS(787), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(795), 1, anon_sym_await, - ACTIONS(819), 1, + ACTIONS(885), 1, anon_sym_RPAREN, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1102), 1, + STATE(1261), 1, sym_expression, - STATE(1368), 1, + STATE(1577), 1, sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, @@ -28555,7 +29345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, + STATE(1570), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -28564,20 +29354,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28595,71 +29385,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6700] = 24, + [6819] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(51), 1, + anon_sym_LBRACE, ACTIONS(53), 1, anon_sym_STAR_STAR, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(310), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 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(731), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(735), 1, + ACTIONS(320), 1, anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(719), 1, + anon_sym_STAR, + STATE(763), 1, sym_template_string, - STATE(652), 1, + STATE(779), 1, sym_primary_expression, - STATE(1102), 1, + STATE(782), 1, + sym_string, + STATE(1179), 1, sym_expression, - STATE(1368), 1, - sym_parenthesized_list_splat, - ACTIONS(304), 2, + STATE(1572), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(887), 2, + sym__newline, + anon_sym_SEMI, + STATE(1549), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1310), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(733), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28677,71 +29469,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6806] = 24, + [6928] = 26, 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, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(717), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(773), 1, anon_sym_STAR, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(823), 1, - anon_sym_RBRACK, - STATE(569), 1, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + ACTIONS(873), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1042), 1, + STATE(1066), 1, sym_expression, + STATE(1383), 1, + sym_yield, + STATE(1615), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + STATE(1257), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, - sym_list_splat, - sym__index_expression, - sym_slice, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28759,71 +29554,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [6912] = 24, + [7039] = 25, 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, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(717), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(773), 1, anon_sym_STAR, - ACTIONS(821), 1, - anon_sym_COLON, - STATE(569), 1, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + ACTIONS(889), 1, + anon_sym_RBRACK, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1042), 1, + STATE(1088), 1, sym_expression, - STATE(1454), 1, - sym_index_expression_list, + STATE(1594), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1243), 3, + STATE(1257), 3, sym_list_splat, - sym__index_expression, - sym_slice, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28841,71 +29638,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7018] = 24, + [7148] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(300), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(578), 1, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, + ACTIONS(833), 1, anon_sym_STAR, - ACTIONS(821), 1, - anon_sym_COLON, - STATE(569), 1, - sym_string, - STATE(570), 1, + ACTIONS(835), 1, + anon_sym_STAR_STAR, + ACTIONS(841), 1, + anon_sym_from, + STATE(763), 1, sym_template_string, - STATE(652), 1, + STATE(779), 1, sym_primary_expression, - STATE(1042), 1, + STATE(782), 1, + sym_string, + STATE(1199), 1, sym_expression, - STATE(1407), 1, - sym_index_expression_list, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(763), 2, + sym__newline, + anon_sym_SEMI, + STATE(1358), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1203), 3, - sym_list_splat, - sym__index_expression, - sym_slice, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28923,65 +29722,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7124] = 18, + [7257] = 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(578), 1, - anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(595), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, anon_sym_await, - STATE(569), 1, + ACTIONS(891), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(669), 1, + STATE(719), 1, sym_primary_expression, + STATE(1261), 1, + sym_expression, + STATE(1577), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(265), 3, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(825), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(306), 5, + STATE(1570), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(306), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(583), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - 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(649), 17, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -28999,41 +29806,43 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7218] = 24, + [7366] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, + ACTIONS(53), 1, + anon_sym_STAR_STAR, 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(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(715), 1, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, + anon_sym_await, + ACTIONS(893), 1, anon_sym_RPAREN, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(992), 1, + STATE(1261), 1, sym_expression, + STATE(1577), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, @@ -29041,29 +29850,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1118), 3, + STATE(1570), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29081,41 +29890,43 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7324] = 24, + [7475] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, + ACTIONS(53), 1, + anon_sym_STAR_STAR, 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, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(821), 1, - anon_sym_COLON, - STATE(569), 1, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, + anon_sym_await, + ACTIONS(895), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1042), 1, + STATE(1261), 1, sym_expression, - STATE(1469), 1, - sym_index_expression_list, + STATE(1577), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, @@ -29123,29 +29934,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1263), 3, + STATE(1570), 3, sym_list_splat, - sym__index_expression, - sym_slice, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29163,41 +29974,43 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7430] = 24, + [7584] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, + ACTIONS(53), 1, + anon_sym_STAR_STAR, 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(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(655), 1, - anon_sym_yield, - ACTIONS(713), 1, + ACTIONS(769), 1, anon_sym_LPAREN, - ACTIONS(715), 1, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, + anon_sym_await, + ACTIONS(897), 1, anon_sym_RPAREN, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(992), 1, + STATE(1261), 1, sym_expression, + STATE(1577), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, @@ -29205,29 +30018,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1118), 3, + STATE(1570), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29245,41 +30058,43 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7536] = 24, + [7693] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, + ACTIONS(53), 1, + anon_sym_STAR_STAR, 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, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(821), 1, - anon_sym_COLON, - ACTIONS(827), 1, - anon_sym_RBRACK, - STATE(569), 1, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, + anon_sym_await, + ACTIONS(899), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1042), 1, + STATE(1261), 1, sym_expression, + STATE(1577), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, @@ -29287,29 +30102,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1570), 3, sym_list_splat, - sym__index_expression, - sym_slice, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29327,48 +30142,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7642] = 24, + [7802] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - 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, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + ACTIONS(851), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1055), 1, + STATE(1066), 1, sym_expression, - STATE(1453), 1, - sym_expression_list, + STATE(1383), 1, + sym_yield, + STATE(1615), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1375), 2, + STATE(1257), 2, sym_list_splat, - sym_dictionary_splat, - ACTIONS(296), 3, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -29377,20 +30196,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29408,70 +30227,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7747] = 24, + [7913] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - 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, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + ACTIONS(889), 1, + anon_sym_RBRACK, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1065), 1, + STATE(1081), 1, sym_expression, - STATE(1490), 1, - sym_expression_list, + STATE(1656), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1375), 2, - sym_list_splat, - sym_dictionary_splat, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1257), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29489,70 +30311,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7852] = 24, + [8022] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - 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(635), 1, + ACTIONS(719), 1, anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, + anon_sym_await, + ACTIONS(901), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1040), 1, + STATE(1261), 1, sym_expression, - STATE(1446), 1, - sym_expression_list, + STATE(1577), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1375), 2, - sym_list_splat, - sym_dictionary_splat, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1570), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29570,69 +30395,74 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [7957] = 23, + [8131] = 26, 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(591), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(655), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(695), 1, anon_sym_yield, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(717), 1, + ACTIONS(773), 1, anon_sym_STAR, - STATE(569), 1, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(803), 1, + anon_sym_RPAREN, + ACTIONS(807), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(992), 1, + STATE(1079), 1, sym_expression, + STATE(1400), 1, + sym_yield, + STATE(1675), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + STATE(1257), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1118), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29650,70 +30480,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8060] = 24, + [8242] = 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, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(635), 1, + ACTIONS(691), 1, + anon_sym_not, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(773), 1, anon_sym_STAR, - STATE(698), 1, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + ACTIONS(847), 1, + anon_sym_RBRACK, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(725), 1, sym_primary_expression, - STATE(1005), 1, + STATE(1086), 1, sym_expression, - STATE(1380), 1, - sym_expression_list, - ACTIONS(75), 2, + STATE(1679), 1, + sym__collection_elements, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1328), 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(1257), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29731,69 +30564,73 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8165] = 23, + [8351] = 25, 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, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(717), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(773), 1, anon_sym_STAR, - ACTIONS(821), 1, - anon_sym_COLON, - STATE(569), 1, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + ACTIONS(903), 1, + anon_sym_RBRACK, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1042), 1, + STATE(1081), 1, sym_expression, + STATE(1656), 1, + sym__collection_elements, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(1371), 3, + STATE(1257), 3, sym_list_splat, - sym__index_expression, - sym_slice, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29811,11 +30648,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8268] = 24, + [8460] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -29832,30 +30667,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(905), 1, + anon_sym_COLON, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1050), 1, + STATE(1246), 1, sym_expression, - STATE(1437), 1, - sym_expression_list, + STATE(1693), 1, + sym_index_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1375), 2, - sym_list_splat, - sym_dictionary_splat, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1407), 3, + sym_list_splat, + sym__index_expression, + sym_slice, ACTIONS(306), 4, sym_integer, sym_true, @@ -29867,14 +30705,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29892,68 +30730,71 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8373] = 23, + [8566] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_STAR_STAR, - 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, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(829), 1, - anon_sym_RBRACE, - STATE(569), 1, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(787), 1, + sym_identifier, + ACTIONS(795), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1112), 1, + STATE(1261), 1, sym_expression, + STATE(1577), 1, + sym_parenthesized_list_splat, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1378), 2, - sym_dictionary_splat, - sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1570), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(793), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -29971,11 +30812,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8475] = 23, + [8672] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -29992,28 +30831,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(831), 1, - anon_sym_RBRACE, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(905), 1, + anon_sym_COLON, + ACTIONS(907), 1, + anon_sym_RBRACK, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1112), 1, + STATE(1246), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1378), 2, - sym_dictionary_splat, - sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1508), 3, + sym_list_splat, + sym__index_expression, + sym_slice, ACTIONS(306), 4, sym_integer, sym_true, @@ -30025,14 +30869,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30050,68 +30894,71 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8577] = 23, + [8778] = 24, 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, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(777), 1, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(773), 1, anon_sym_STAR, - ACTIONS(779), 1, - anon_sym_STAR_STAR, - STATE(698), 1, + ACTIONS(813), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(719), 1, sym_primary_expression, - STATE(1002), 1, + STATE(1174), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1168), 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(1315), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30129,11 +30976,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8679] = 23, + [8884] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -30150,28 +30995,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(833), 1, - anon_sym_RBRACE, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(905), 1, + anon_sym_COLON, + ACTIONS(909), 1, + anon_sym_RBRACK, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1112), 1, + STATE(1246), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1378), 2, - sym_dictionary_splat, - sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1508), 3, + sym_list_splat, + sym__index_expression, + sym_slice, ACTIONS(306), 4, sym_integer, sym_true, @@ -30183,14 +31033,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30208,11 +31058,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8781] = 23, + [8990] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -30225,32 +31073,37 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(835), 1, - anon_sym_RBRACE, - STATE(569), 1, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(813), 1, + anon_sym_RPAREN, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1112), 1, + STATE(1174), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1378), 2, - sym_dictionary_splat, - sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1315), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, @@ -30262,14 +31115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30287,11 +31140,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8883] = 23, + [9096] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -30308,28 +31159,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(837), 1, - anon_sym_RBRACE, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(905), 1, + anon_sym_COLON, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1112), 1, + STATE(1246), 1, sym_expression, + STATE(1660), 1, + sym_index_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1378), 2, - sym_dictionary_splat, - sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1377), 3, + sym_list_splat, + sym__index_expression, + sym_slice, ACTIONS(306), 4, sym_integer, sym_true, @@ -30341,14 +31197,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30366,19 +31222,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [8985] = 23, + [9202] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, - 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, @@ -30387,47 +31235,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(839), 1, - anon_sym_RBRACE, - STATE(569), 1, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(735), 1, sym_primary_expression, - STATE(1112), 1, - sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1378), 2, - sym_dictionary_splat, - sym_pair, + ACTIONS(265), 3, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(911), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(306), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 17, + 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(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30445,11 +31298,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9087] = 23, + [9296] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -30466,28 +31317,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(635), 1, - anon_sym_STAR, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(905), 1, + anon_sym_COLON, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(931), 1, + STATE(1246), 1, sym_expression, + STATE(1669), 1, + sym_index_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1010), 2, - sym_list_splat, - sym_dictionary_splat, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1414), 3, + sym_list_splat, + sym__index_expression, + sym_slice, ACTIONS(306), 4, sym_integer, sym_true, @@ -30499,14 +31355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30524,11 +31380,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9189] = 23, + [9402] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -30545,28 +31399,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(841), 1, - anon_sym_RBRACE, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + ACTIONS(905), 1, + anon_sym_COLON, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1112), 1, + STATE(1246), 1, sym_expression, + STATE(1653), 1, + sym_index_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1378), 2, - sym_dictionary_splat, - sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1432), 3, + sym_list_splat, + sym__index_expression, + sym_slice, ACTIONS(306), 4, sym_integer, sym_true, @@ -30578,14 +31437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30603,11 +31462,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9291] = 23, + [9508] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -30620,32 +31477,35 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(695), 1, + anon_sym_yield, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(843), 1, - anon_sym_RBRACE, - STATE(569), 1, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1112), 1, + STATE(1174), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1378), 2, - sym_dictionary_splat, - sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1315), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, ACTIONS(306), 4, sym_integer, sym_true, @@ -30657,14 +31517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30682,7 +31542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9393] = 23, + [9611] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -30703,24 +31563,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(845), 1, - anon_sym_RBRACE, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1112), 1, + STATE(1237), 1, sym_expression, + STATE(1637), 1, + sym_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1378), 2, + STATE(1510), 2, + sym_list_splat, sym_dictionary_splat, - sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -30736,14 +31598,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30761,71 +31623,88 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9495] = 9, + [9716] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_else, - ACTIONS(853), 1, - anon_sym_except, - ACTIONS(855), 1, - anon_sym_finally, - STATE(445), 1, - sym_else_clause, - STATE(520), 1, - sym_finally_clause, - STATE(308), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(847), 13, + 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(81), 1, sym__string_start, + ACTIONS(83), 1, sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + 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(719), 1, + anon_sym_STAR, + STATE(763), 1, + sym_template_string, + STATE(779), 1, + sym_primary_expression, + STATE(782), 1, + sym_string, + STATE(1180), 1, + sym_expression, + STATE(1579), 1, + sym_expression_list, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(849), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(1549), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(316), 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, - [9568] = 23, + STATE(1158), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(908), 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, + [9821] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -30844,22 +31723,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(717), 1, + ACTIONS(773), 1, anon_sym_STAR, - STATE(569), 1, + ACTIONS(905), 1, + anon_sym_COLON, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1246), 1, sym_expression, - STATE(1117), 1, - sym_list_splat, - STATE(1459), 1, - sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, @@ -30867,6 +31744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + STATE(1508), 3, + sym_list_splat, + sym__index_expression, + sym_slice, ACTIONS(306), 4, sym_integer, sym_true, @@ -30878,14 +31759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30903,9 +31784,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9669] = 23, + [9924] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -30922,25 +31805,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, + ACTIONS(719), 1, anon_sym_STAR, - STATE(569), 1, + ACTIONS(747), 1, + anon_sym_not, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1240), 1, sym_expression, - STATE(1117), 1, - sym_list_splat, - STATE(1466), 1, - sym_type, + STATE(1625), 1, + sym_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1510), 2, + sym_list_splat, + sym_dictionary_splat, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -30956,14 +31840,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30981,9 +31865,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9770] = 23, + [10029] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -31000,25 +31886,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, + ACTIONS(719), 1, anon_sym_STAR, - STATE(569), 1, + ACTIONS(747), 1, + anon_sym_not, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1236), 1, sym_expression, - STATE(1117), 1, - sym_list_splat, - STATE(1415), 1, - sym_type, + STATE(1610), 1, + sym_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1510), 2, + sym_list_splat, + sym_dictionary_splat, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31034,14 +31921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31059,9 +31946,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9871] = 22, + [10134] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -31078,24 +31967,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(859), 1, - anon_sym_COLON, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1049), 1, + STATE(1235), 1, sym_expression, + STATE(1603), 1, + sym_expression_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(857), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(1510), 2, + sym_list_splat, + sym_dictionary_splat, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31111,14 +32002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31136,125 +32027,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [9970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(863), 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(861), 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, - [10031] = 3, + [10239] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(867), 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(865), 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, - [10092] = 22, - ACTIONS(3), 1, - sym_comment, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -31271,24 +32048,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(871), 1, - anon_sym_COLON, - STATE(569), 1, + ACTIONS(913), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1071), 1, + STATE(1331), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(869), 2, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31304,14 +32081,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31329,67 +32106,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10191] = 23, + [10341] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(300), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(578), 1, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(717), 1, + ACTIONS(833), 1, anon_sym_STAR, - STATE(569), 1, - sym_string, - STATE(570), 1, + ACTIONS(835), 1, + anon_sym_STAR_STAR, + STATE(763), 1, sym_template_string, - STATE(652), 1, + STATE(779), 1, sym_primary_expression, - STATE(1022), 1, + STATE(782), 1, + sym_string, + STATE(1199), 1, sym_expression, - STATE(1117), 1, - sym_list_splat, - STATE(1465), 1, - sym_type, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + STATE(1358), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31407,67 +32185,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10292] = 23, + [10443] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, anon_sym_not, - ACTIONS(717), 1, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + ACTIONS(797), 1, anon_sym_STAR, - STATE(569), 1, + ACTIONS(799), 1, + anon_sym_STAR_STAR, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, sym_string, - STATE(570), 1, + STATE(768), 1, sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(1022), 1, + STATE(1164), 1, sym_expression, - STATE(1117), 1, - sym_list_splat, - STATE(1450), 1, - sym_type, - ACTIONS(304), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + STATE(1273), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(753), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1129), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(924), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31485,9 +32264,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10393] = 23, + [10545] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -31504,25 +32285,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(569), 1, + ACTIONS(915), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1331), 1, sym_expression, - STATE(1117), 1, - sym_list_splat, - STATE(1282), 1, - sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31538,14 +32318,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31563,73 +32343,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10494] = 9, + [10647] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, - anon_sym_else, - ACTIONS(879), 1, - anon_sym_except, - ACTIONS(881), 1, - anon_sym_finally, - STATE(431), 1, - sym_else_clause, - STATE(498), 1, - sym_finally_clause, - STATE(293), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(875), 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(53), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(873), 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, - [10567] = 23, - ACTIONS(3), 1, - sym_comment, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -31646,25 +32364,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(569), 1, + ACTIONS(917), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1331), 1, sym_expression, - STATE(1117), 1, - sym_list_splat, - STATE(1121), 1, - sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -31680,14 +32397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31705,71 +32422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10668] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(877), 1, - anon_sym_else, - ACTIONS(881), 1, - anon_sym_finally, - ACTIONS(883), 1, - anon_sym_except, - STATE(431), 1, - sym_else_clause, - STATE(498), 1, - sym_finally_clause, - STATE(292), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(875), 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(873), 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, - [10741] = 22, + [10749] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -31790,20 +32443,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(919), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1112), 1, + STATE(1331), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1378), 2, + STATE(1563), 2, sym_dictionary_splat, sym_pair, ACTIONS(296), 3, @@ -31821,14 +32476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31846,67 +32501,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10840] = 23, + [10851] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + 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, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(885), 1, - anon_sym_STAR, - STATE(698), 1, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(921), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(719), 1, sym_primary_expression, - STATE(1063), 1, + STATE(1331), 1, sym_expression, - STATE(1185), 1, - sym_list_splat, - STATE(1217), 1, - sym_type, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, + 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(490), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31924,73 +32580,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [10941] = 9, + [10953] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, - anon_sym_else, - ACTIONS(879), 1, - anon_sym_except, - ACTIONS(881), 1, - anon_sym_finally, - STATE(425), 1, - sym_else_clause, - STATE(555), 1, - sym_finally_clause, - STATE(293), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(847), 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(53), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(849), 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, - [11014] = 23, - ACTIONS(3), 1, - sym_comment, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -32007,25 +32601,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(569), 1, + ACTIONS(923), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1331), 1, sym_expression, - STATE(1117), 1, - sym_list_splat, - STATE(1461), 1, - sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32041,14 +32634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32066,108 +32659,45 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11115] = 9, + [11055] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, - anon_sym_else, - ACTIONS(881), 1, - anon_sym_finally, - ACTIONS(883), 1, - anon_sym_except, - STATE(425), 1, - sym_else_clause, - STATE(555), 1, - sym_finally_clause, - STATE(292), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(847), 13, - sym__dedent, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + 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, - 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(849), 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, - [11188] = 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, + ACTIONS(312), 1, sym__template_string_start, ACTIONS(578), 1, anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(569), 1, + ACTIONS(925), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1331), 1, sym_expression, - STATE(1117), 1, - sym_list_splat, - STATE(1406), 1, - sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32183,14 +32713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32208,259 +32738,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11289] = 9, + [11157] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_else, - ACTIONS(855), 1, - anon_sym_finally, - ACTIONS(887), 1, - anon_sym_except, - STATE(445), 1, - sym_else_clause, - STATE(520), 1, - sym_finally_clause, - STATE(289), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(847), 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, + ACTIONS(53), 1, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(849), 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, - [11362] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(851), 1, - anon_sym_else, - ACTIONS(853), 1, - anon_sym_except, - ACTIONS(855), 1, - anon_sym_finally, - STATE(415), 1, - sym_else_clause, - STATE(542), 1, - sym_finally_clause, - STATE(308), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(875), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - 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(873), 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, - [11435] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(851), 1, - anon_sym_else, - ACTIONS(855), 1, - anon_sym_finally, - ACTIONS(887), 1, - anon_sym_except, - STATE(415), 1, - sym_else_clause, - STATE(542), 1, - sym_finally_clause, - STATE(289), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(875), 13, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, 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(873), 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, - [11508] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(609), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(617), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - ACTIONS(889), 1, - sym_identifier, - ACTIONS(891), 1, - anon_sym_STAR, - ACTIONS(895), 1, - anon_sym_COLON, - ACTIONS(897), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + ACTIONS(927), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(722), 1, + STATE(624), 1, sym_template_string, - STATE(1000), 1, + STATE(719), 1, + sym_primary_expression, + STATE(1331), 1, sym_expression, - STATE(1354), 1, - sym_exception_list, - ACTIONS(621), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32478,67 +32817,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11609] = 23, + [11259] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(889), 1, - sym_identifier, - ACTIONS(897), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - ACTIONS(903), 1, - anon_sym_STAR, - ACTIONS(905), 1, - anon_sym_COLON, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + ACTIONS(929), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(722), 1, + STATE(624), 1, sym_template_string, - STATE(1034), 1, + STATE(719), 1, + sym_primary_expression, + STATE(1331), 1, sym_expression, - STATE(1346), 1, - sym_exception_list, - ACTIONS(621), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32556,9 +32896,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11710] = 23, + [11361] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, ACTIONS(263), 1, sym_identifier, ACTIONS(288), 1, @@ -32575,25 +32917,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(717), 1, - anon_sym_STAR, - STATE(569), 1, + ACTIONS(931), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1022), 1, + STATE(1331), 1, sym_expression, - STATE(1117), 1, - sym_list_splat, - STATE(1431), 1, - sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32609,14 +32950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32634,64 +32975,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11811] = 21, + [11463] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + 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, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(698), 1, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(933), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(719), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1331), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(907), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, + 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(490), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32709,42 +33054,46 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [11907] = 21, + [11565] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + 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(597), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, - anon_sym_await, - ACTIONS(761), 1, - anon_sym_lambda, - STATE(569), 1, + ACTIONS(935), 1, + anon_sym_RBRACE, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(945), 1, + STATE(1331), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(973), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -32753,20 +33102,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32784,65 +33133,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12003] = 22, + [11667] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(889), 1, - sym_identifier, - ACTIONS(895), 1, - anon_sym_COLON, - ACTIONS(897), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + STATE(621), 1, sym_string, - STATE(722), 1, + STATE(624), 1, sym_template_string, - STATE(1000), 1, + STATE(719), 1, + sym_primary_expression, + STATE(1117), 1, sym_expression, - STATE(1354), 1, - sym_exception_list, - ACTIONS(621), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + STATE(1267), 2, + sym_list_splat, + sym_dictionary_splat, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32860,7 +33212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12101] = 21, + [11769] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -32879,22 +33231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1085), 1, + STATE(1172), 1, sym_expression, + STATE(1308), 1, + sym_list_splat, + STATE(1447), 1, + sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(909), 2, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -32910,14 +33265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32935,65 +33290,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12197] = 22, + [11870] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(263), 1, sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(308), 1, anon_sym_await, - ACTIONS(911), 1, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(578), 1, anon_sym_LPAREN, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(722), 1, + STATE(624), 1, sym_template_string, - STATE(999), 1, + STATE(719), 1, + sym_primary_expression, + STATE(1172), 1, sym_expression, - STATE(1238), 1, - sym_with_item, - STATE(1432), 1, - sym_with_clause, - ACTIONS(621), 2, + STATE(1308), 1, + sym_list_splat, + STATE(1583), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33011,214 +33368,258 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12295] = 21, + [11971] = 9, 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, + ACTIONS(941), 1, + anon_sym_else, + ACTIONS(943), 1, + anon_sym_except, + ACTIONS(945), 1, + anon_sym_finally, + STATE(470), 1, + sym_else_clause, + STATE(575), 1, + sym_finally_clause, + STATE(330), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(939), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_not, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, - anon_sym_await, - ACTIONS(761), 1, - anon_sym_lambda, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(653), 1, - sym_primary_expression, - STATE(945), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(1020), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(695), 5, + sym_ellipsis, + sym_float, + ACTIONS(937), 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(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [12391] = 21, - 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(83), 1, - sym__template_string_start, - ACTIONS(488), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(494), 1, anon_sym_await, - ACTIONS(568), 1, + sym_true, + sym_false, + sym_none, + [12044] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + anon_sym_else, + ACTIONS(945), 1, + anon_sym_finally, + ACTIONS(947), 1, + anon_sym_except, + STATE(470), 1, + sym_else_clause, + STATE(575), 1, + sym_finally_clause, + STATE(331), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(939), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(702), 1, - sym_primary_expression, - STATE(1069), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(913), 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(937), 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(490), 5, + [12117] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + anon_sym_else, + ACTIONS(951), 1, + anon_sym_except, + ACTIONS(953), 1, + anon_sym_finally, + STATE(472), 1, + sym_else_clause, + STATE(518), 1, + sym_finally_clause, + STATE(328), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(939), 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(937), 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(955), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(760), 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, - [12487] = 21, + 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, + [12190] = 22, 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, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(698), 1, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(957), 1, + anon_sym_COLON, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(719), 1, sym_primary_expression, - STATE(1069), 1, + STATE(1247), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(915), 2, - sym__newline, - sym__semicolon, - ACTIONS(47), 3, + ACTIONS(955), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + 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(490), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33236,7 +33637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12583] = 21, + [12289] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -33255,22 +33656,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1087), 1, + STATE(1172), 1, sym_expression, + STATE(1308), 1, + sym_list_splat, + STATE(1697), 1, + sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(917), 2, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33286,14 +33690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33311,42 +33715,45 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12679] = 21, + [12390] = 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(597), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, - anon_sym_await, - ACTIONS(761), 1, - anon_sym_lambda, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(945), 1, + STATE(1172), 1, sym_expression, + STATE(1308), 1, + sym_list_splat, + STATE(1639), 1, + sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(987), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -33355,20 +33762,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33386,65 +33793,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12775] = 22, + [12491] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(320), 1, anon_sym_await, - ACTIONS(911), 1, + ACTIONS(568), 1, anon_sym_LPAREN, - STATE(718), 1, + ACTIONS(574), 1, + anon_sym_LBRACK, + ACTIONS(959), 1, + anon_sym_STAR, + STATE(763), 1, + sym_template_string, + STATE(779), 1, sym_primary_expression, - STATE(720), 1, + STATE(782), 1, sym_string, - STATE(722), 1, - sym_template_string, - STATE(999), 1, + STATE(1250), 1, sym_expression, - STATE(1238), 1, - sym_with_item, - STATE(1478), 1, - sym_with_clause, - ACTIONS(621), 2, + STATE(1406), 1, + sym_type, + STATE(1463), 1, + sym_list_splat, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33462,65 +33871,67 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12873] = 22, + [12592] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(617), 1, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(963), 1, + anon_sym_STAR, + ACTIONS(967), 1, + anon_sym_COLON, + ACTIONS(969), 1, anon_sym_not, - ACTIONS(899), 1, + ACTIONS(971), 1, anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(973), 1, anon_sym_await, - ACTIONS(911), 1, - anon_sym_LPAREN, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + STATE(794), 1, sym_string, - STATE(722), 1, + STATE(795), 1, sym_template_string, - STATE(999), 1, + STATE(822), 1, + sym_primary_expression, + STATE(1207), 1, sym_expression, - STATE(1238), 1, - sym_with_item, - STATE(1440), 1, - sym_with_clause, - ACTIONS(621), 2, + STATE(1552), 1, + sym_exception_list, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33538,65 +33949,66 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [12971] = 22, + [12693] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(889), 1, - sym_identifier, - ACTIONS(897), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - ACTIONS(905), 1, + ACTIONS(977), 1, anon_sym_COLON, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + STATE(621), 1, sym_string, - STATE(722), 1, + STATE(624), 1, sym_template_string, - STATE(1034), 1, + STATE(719), 1, + sym_primary_expression, + STATE(1249), 1, sym_expression, - STATE(1346), 1, - sym_exception_list, - ACTIONS(621), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(975), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33614,65 +34026,131 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13069] = 22, + [12792] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(949), 1, + anon_sym_else, + ACTIONS(951), 1, + anon_sym_except, + ACTIONS(953), 1, + anon_sym_finally, + STATE(468), 1, + sym_else_clause, + STATE(534), 1, + sym_finally_clause, + STATE(328), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(979), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(617), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - ACTIONS(889), 1, - sym_identifier, - ACTIONS(897), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(981), 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(899), 1, anon_sym_lambda, - ACTIONS(901), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(919), 1, - anon_sym_RPAREN, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + sym_true, + sym_false, + sym_none, + [12865] = 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(747), 1, + anon_sym_not, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(722), 1, + STATE(624), 1, sym_template_string, - STATE(999), 1, + STATE(719), 1, + sym_primary_expression, + STATE(1172), 1, sym_expression, - STATE(1298), 1, - sym_with_item, - ACTIONS(621), 2, + STATE(1308), 1, + sym_list_splat, + STATE(1617), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33690,42 +34168,45 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13167] = 21, + [12966] = 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(597), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, - anon_sym_await, - ACTIONS(761), 1, - anon_sym_lambda, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(937), 1, + STATE(1172), 1, sym_expression, + STATE(1308), 1, + sym_list_splat, + STATE(1341), 1, + sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1018), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -33734,20 +34215,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33765,7 +34246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13263] = 21, + [13067] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -33784,22 +34265,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1090), 1, + STATE(1172), 1, sym_expression, + STATE(1308), 1, + sym_list_splat, + STATE(1642), 1, + sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(921), 2, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -33815,14 +34299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33840,65 +34324,195 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13359] = 22, + [13168] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(617), 1, + ACTIONS(941), 1, + anon_sym_else, + ACTIONS(943), 1, + anon_sym_except, + ACTIONS(945), 1, + anon_sym_finally, + STATE(479), 1, + sym_else_clause, + STATE(561), 1, + sym_finally_clause, + STATE(330), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(979), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, + anon_sym_LPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(981), 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, + [13241] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + anon_sym_else, + ACTIONS(953), 1, + anon_sym_finally, + ACTIONS(983), 1, + anon_sym_except, + STATE(472), 1, + sym_else_clause, + STATE(518), 1, + sym_finally_clause, + STATE(329), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(939), 13, sym__string_start, - ACTIONS(627), 1, sym__template_string_start, - ACTIONS(889), 1, - sym_identifier, - ACTIONS(897), 1, + 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(937), 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(899), 1, anon_sym_lambda, - ACTIONS(901), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(911), 1, + sym_true, + sym_false, + sym_none, + [13314] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, anon_sym_LPAREN, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, + anon_sym_not, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, + anon_sym_await, + ACTIONS(985), 1, + anon_sym_STAR, + ACTIONS(987), 1, + anon_sym_COLON, + STATE(794), 1, sym_string, - STATE(722), 1, + STATE(795), 1, sym_template_string, - STATE(999), 1, + STATE(822), 1, + sym_primary_expression, + STATE(1204), 1, sym_expression, - STATE(1238), 1, - sym_with_item, - STATE(1385), 1, - sym_with_clause, - ACTIONS(621), 2, + STATE(1548), 1, + sym_exception_list, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33916,42 +34530,44 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13457] = 21, + [13415] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym_STAR_STAR, + 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(597), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, - anon_sym_await, - ACTIONS(761), 1, - anon_sym_lambda, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(941), 1, + STATE(1331), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(1023), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(601), 3, + STATE(1563), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -33960,20 +34576,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33991,65 +34607,131 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13553] = 22, + [13514] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(941), 1, + anon_sym_else, + ACTIONS(945), 1, + anon_sym_finally, + ACTIONS(947), 1, + anon_sym_except, + STATE(479), 1, + sym_else_clause, + STATE(561), 1, + sym_finally_clause, + STATE(331), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(979), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(617), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - ACTIONS(889), 1, - sym_identifier, - ACTIONS(897), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(981), 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(899), 1, anon_sym_lambda, - ACTIONS(901), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(923), 1, - anon_sym_RPAREN, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + sym_true, + sym_false, + sym_none, + [13587] = 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(747), 1, + anon_sym_not, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(722), 1, + STATE(624), 1, sym_template_string, - STATE(999), 1, + STATE(719), 1, + sym_primary_expression, + STATE(1172), 1, sym_expression, - STATE(1298), 1, - sym_with_item, - ACTIONS(621), 2, + STATE(1308), 1, + sym_list_splat, + STATE(1616), 1, + sym_type, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34067,7 +34749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13651] = 21, + [13688] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -34086,22 +34768,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1100), 1, + STATE(1172), 1, sym_expression, + STATE(1308), 1, + sym_list_splat, + STATE(1618), 1, + sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(925), 2, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, @@ -34117,14 +34802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34142,7 +34827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13747] = 22, + [13789] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -34161,20 +34846,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(717), 1, + ACTIONS(773), 1, anon_sym_STAR, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1075), 1, + STATE(1172), 1, sym_expression, - STATE(1324), 1, + STATE(1308), 1, sym_list_splat, + STATE(1622), 1, + sym_type, ACTIONS(304), 2, sym_ellipsis, sym_float, @@ -34193,14 +34880,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [13890] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + anon_sym_else, + ACTIONS(953), 1, + anon_sym_finally, + ACTIONS(983), 1, + anon_sym_except, + STATE(468), 1, + sym_else_clause, + STATE(534), 1, + sym_finally_clause, + STATE(329), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(979), 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(981), 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, + [13963] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, + anon_sym_not, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, + anon_sym_await, + ACTIONS(989), 1, + anon_sym_LPAREN, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(822), 1, + sym_primary_expression, + STATE(1200), 1, + sym_expression, + STATE(1434), 1, + sym_with_item, + STATE(1607), 1, + sym_with_clause, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(965), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34218,7 +35045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13845] = 21, + [14061] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -34231,28 +35058,28 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(488), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(494), 1, + ACTIONS(320), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(574), 1, anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, + STATE(763), 1, sym_template_string, - STATE(702), 1, + STATE(779), 1, sym_primary_expression, - STATE(1069), 1, + STATE(782), 1, + sym_string, + STATE(1224), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(927), 2, + ACTIONS(991), 2, sym__newline, - sym__semicolon, + anon_sym_SEMI, ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, @@ -34262,20 +35089,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34293,63 +35120,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [13941] = 21, + [14157] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(320), 1, anon_sym_await, - STATE(718), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(763), 1, + sym_template_string, + STATE(779), 1, sym_primary_expression, - STATE(720), 1, + STATE(782), 1, sym_string, - STATE(722), 1, - sym_template_string, - STATE(1036), 1, + STATE(1224), 1, sym_expression, - STATE(1379), 1, - sym_exception_list, - ACTIONS(621), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(993), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34367,63 +35195,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [14036] = 21, + [14253] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(320), 1, anon_sym_await, - STATE(718), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(763), 1, + sym_template_string, + STATE(779), 1, sym_primary_expression, - STATE(720), 1, + STATE(782), 1, sym_string, - STATE(722), 1, - sym_template_string, - STATE(999), 1, + STATE(1224), 1, sym_expression, - STATE(1298), 1, - sym_with_item, - ACTIONS(621), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(995), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34441,887 +35270,574 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [14131] = 5, + [14349] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(933), 1, - anon_sym_except, - STATE(289), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(929), 13, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, - ts_builtin_sym_end, + 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, - sym_ellipsis, - sym_float, - ACTIONS(931), 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_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, + ACTIONS(691), 1, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(801), 1, sym_identifier, + ACTIONS(807), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [14194] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(851), 1, - anon_sym_else, - ACTIONS(940), 1, - anon_sym_elif, - STATE(382), 1, - aux_sym_if_statement_repeat1, - STATE(417), 1, - sym_elif_clause, - STATE(524), 1, - sym_else_clause, - ACTIONS(936), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_lambda, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(725), 1, + sym_primary_expression, + STATE(1098), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1203), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 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(938), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(805), 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, - [14263] = 8, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [14445] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_else, - ACTIONS(940), 1, - anon_sym_elif, - STATE(309), 1, - aux_sym_if_statement_repeat1, - STATE(417), 1, - sym_elif_clause, - STATE(521), 1, - sym_else_clause, - ACTIONS(942), 13, + 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, - ts_builtin_sym_end, + 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1276), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(944), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(997), 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_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, - [14332] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [14541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, - anon_sym_except, - STATE(292), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(948), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, + ACTIONS(1001), 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(946), 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_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(999), 35, + 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_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_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, - [14395] = 5, + 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, + [14601] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 1, - anon_sym_except, - STATE(293), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - ACTIONS(929), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, + ACTIONS(631), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(639), 1, anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(967), 1, + anon_sym_COLON, + ACTIONS(969), 1, + anon_sym_not, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, + anon_sym_await, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(822), 1, + sym_primary_expression, + STATE(1207), 1, + sym_expression, + STATE(1552), 1, + sym_exception_list, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(931), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(965), 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, - [14458] = 3, + STATE(1176), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(953), 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, + [14699] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(956), 13, + 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, - ts_builtin_sym_end, + 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1266), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(958), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(1003), 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_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, - [14517] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [14795] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 13, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, - ts_builtin_sym_end, + 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, - sym_ellipsis, - sym_float, - ACTIONS(962), 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(691), 1, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(801), 1, sym_identifier, + ACTIONS(807), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [14576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(956), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, + ACTIONS(829), 1, + anon_sym_lambda, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(725), 1, + sym_primary_expression, + STATE(1094), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1211), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(601), 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(958), 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(306), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [14635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(964), 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(966), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(805), 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, - [14694] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(270), 1, - anon_sym_COMMA, - ACTIONS(278), 1, - anon_sym_COLON_EQ, - ACTIONS(968), 1, - anon_sym_for, - ACTIONS(970), 1, - anon_sym_with, - ACTIONS(972), 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, - [14767] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(270), 1, - anon_sym_COMMA, - ACTIONS(278), 1, - anon_sym_COLON_EQ, - ACTIONS(974), 1, - anon_sym_for, - ACTIONS(976), 1, - anon_sym_with, - ACTIONS(978), 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, - [14840] = 8, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [14891] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, - anon_sym_else, - ACTIONS(984), 1, - anon_sym_elif, - STATE(312), 1, - aux_sym_if_statement_repeat1, - STATE(433), 1, - sym_elif_clause, - STATE(560), 1, - sym_else_clause, - ACTIONS(982), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - 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(980), 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, - [14909] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(960), 13, - 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, + ACTIONS(591), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(747), 1, + anon_sym_not, + ACTIONS(773), 1, + anon_sym_STAR, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1264), 1, + sym_expression, + STATE(1519), 1, + sym_list_splat, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(962), 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(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, - [14968] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(851), 1, - anon_sym_else, - ACTIONS(940), 1, - anon_sym_elif, - STATE(290), 1, - aux_sym_if_statement_repeat1, - STATE(417), 1, - sym_elif_clause, - STATE(502), 1, - sym_else_clause, - ACTIONS(982), 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(980), 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, - [15037] = 21, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [14989] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(631), 1, anon_sym_LPAREN, - ACTIONS(617), 1, + ACTIONS(639), 1, anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(969), 1, anon_sym_not, - ACTIONS(899), 1, + ACTIONS(971), 1, anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(973), 1, anon_sym_await, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + ACTIONS(1005), 1, + anon_sym_RPAREN, + STATE(794), 1, sym_string, - STATE(722), 1, + STATE(795), 1, sym_template_string, - STATE(1033), 1, + STATE(822), 1, + sym_primary_expression, + STATE(1200), 1, sym_expression, - STATE(1345), 1, - sym_exception_list, - ACTIONS(621), 2, + STATE(1501), 1, + sym_with_item, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35339,643 +35855,441 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15132] = 8, + [15087] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, - anon_sym_else, - ACTIONS(984), 1, - anon_sym_elif, - STATE(310), 1, - aux_sym_if_statement_repeat1, - STATE(433), 1, - sym_elif_clause, - STATE(522), 1, - sym_else_clause, - ACTIONS(942), 13, - sym__dedent, + 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(83), 1, sym__template_string_start, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + 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(763), 1, + sym_template_string, + STATE(779), 1, + sym_primary_expression, + STATE(782), 1, + sym_string, + STATE(1224), 1, + sym_expression, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(944), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(1007), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(316), 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, - [15201] = 3, + STATE(1158), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(908), 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, + [15183] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 13, + 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, - ts_builtin_sym_end, + 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1268), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(988), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(1009), 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_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, - [15260] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [15279] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 13, - sym__dedent, + 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, - 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(691), 1, + anon_sym_not, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + ACTIONS(829), 1, + anon_sym_lambda, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(725), 1, + sym_primary_expression, + STATE(1090), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(988), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(1178), 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(805), 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, - [15319] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [15375] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(992), 13, - sym__dedent, + 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, - 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(691), 1, + anon_sym_not, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + ACTIONS(829), 1, + anon_sym_lambda, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(725), 1, + sym_primary_expression, + STATE(1094), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(990), 38, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(1128), 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(805), 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, - [15378] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [15471] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(994), 1, - anon_sym_except, - STATE(308), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - ACTIONS(948), 13, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(647), 1, sym__string_start, + ACTIONS(649), 1, sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, + anon_sym_not, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, + anon_sym_await, + ACTIONS(989), 1, anon_sym_LPAREN, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(822), 1, + sym_primary_expression, + STATE(1200), 1, + sym_expression, + STATE(1434), 1, + sym_with_item, + STATE(1589), 1, + sym_with_clause, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 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(946), 35, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(629), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(965), 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, - [15441] = 8, + STATE(1176), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(953), 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, + [15569] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_else, - ACTIONS(940), 1, - anon_sym_elif, - STATE(382), 1, - aux_sym_if_statement_repeat1, - STATE(417), 1, - sym_elif_clause, - STATE(491), 1, - sym_else_clause, - ACTIONS(997), 13, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(647), 1, sym__string_start, + ACTIONS(649), 1, sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, + anon_sym_not, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, + anon_sym_await, + ACTIONS(989), 1, anon_sym_LPAREN, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(822), 1, + sym_primary_expression, + STATE(1200), 1, + sym_expression, + STATE(1434), 1, + sym_with_item, + STATE(1597), 1, + sym_with_clause, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 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(999), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(629), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(965), 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, - [15510] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(877), 1, - anon_sym_else, - ACTIONS(984), 1, - anon_sym_elif, - STATE(369), 1, - aux_sym_if_statement_repeat1, - STATE(433), 1, - sym_elif_clause, - STATE(489), 1, - sym_else_clause, - ACTIONS(997), 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(999), 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, - [15579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(992), 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(990), 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, - [15638] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(877), 1, - anon_sym_else, - ACTIONS(984), 1, - anon_sym_elif, - STATE(369), 1, - aux_sym_if_statement_repeat1, - STATE(433), 1, - sym_elif_clause, - STATE(526), 1, - sym_else_clause, - ACTIONS(936), 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(938), 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, - [15707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(964), 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(966), 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, - [15766] = 20, - 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(83), 1, - sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(702), 1, - sym_primary_expression, - STATE(953), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(490), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(955), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35993,39 +36307,42 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15858] = 20, + [15667] = 21, 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(597), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, - anon_sym_await, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(899), 1, + STATE(1291), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(1011), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -36034,20 +36351,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36065,61 +36382,122 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [15950] = 20, + [15763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(1015), 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(1013), 35, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(617), 1, + 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, - ACTIONS(619), 1, + 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, + [15823] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(897), 1, + ACTIONS(969), 1, anon_sym_not, - ACTIONS(899), 1, + ACTIONS(971), 1, anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(973), 1, anon_sym_await, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + ACTIONS(1017), 1, + anon_sym_RPAREN, + STATE(794), 1, sym_string, - STATE(722), 1, + STATE(795), 1, sym_template_string, - STATE(994), 1, + STATE(822), 1, + sym_primary_expression, + STATE(1200), 1, sym_expression, - ACTIONS(621), 2, + STATE(1501), 1, + sym_with_item, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36137,61 +36515,64 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [16042] = 20, + [15921] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - STATE(698), 1, + ACTIONS(691), 1, + anon_sym_not, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + ACTIONS(829), 1, + anon_sym_lambda, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(725), 1, sym_primary_expression, - STATE(972), 1, + STATE(1094), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + STATE(1111), 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(77), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36209,61 +36590,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [16134] = 20, + [16017] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, + anon_sym_await, + ACTIONS(989), 1, + anon_sym_LPAREN, + STATE(794), 1, sym_string, - STATE(570), 1, + STATE(795), 1, sym_template_string, - STATE(652), 1, + STATE(822), 1, sym_primary_expression, - STATE(1169), 1, + STATE(1200), 1, sym_expression, - ACTIONS(304), 2, + STATE(1434), 1, + sym_with_item, + STATE(1670), 1, + sym_with_clause, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36281,61 +36666,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [16226] = 20, + [16115] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, + anon_sym_await, + ACTIONS(987), 1, + anon_sym_COLON, + STATE(794), 1, sym_string, - STATE(570), 1, + STATE(795), 1, sym_template_string, - STATE(652), 1, + STATE(822), 1, sym_primary_expression, - STATE(890), 1, + STATE(1204), 1, sym_expression, - ACTIONS(304), 2, + STATE(1548), 1, + sym_exception_list, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36353,421 +36742,236 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [16318] = 20, + [16213] = 8, 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, + ACTIONS(949), 1, + anon_sym_else, + ACTIONS(1023), 1, + anon_sym_elif, + STATE(321), 1, + aux_sym_if_statement_repeat1, + STATE(463), 1, + sym_elif_clause, + STATE(514), 1, + sym_else_clause, + ACTIONS(1019), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(1126), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, + sym_ellipsis, + sym_float, + ACTIONS(1021), 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(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [16410] = 20, - 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(83), 1, - sym__template_string_start, - ACTIONS(488), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(494), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(702), 1, - sym_primary_expression, - STATE(963), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(955), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(760), 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, - [16502] = 20, + [16282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1027), 13, + sym__dedent, 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(653), 1, - anon_sym_lambda, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(653), 1, - sym_primary_expression, - STATE(898), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(695), 5, + sym_ellipsis, + sym_float, + ACTIONS(1025), 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(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [16594] = 20, - 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(83), 1, - sym__template_string_start, - ACTIONS(488), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(494), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(702), 1, - sym_primary_expression, - STATE(1053), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(955), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(760), 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, - [16686] = 20, + [16341] = 3, 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, + ACTIONS(1031), 13, + sym__dedent, 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(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(1166), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, + sym_ellipsis, + sym_float, + ACTIONS(1029), 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(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [16778] = 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, + [16400] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, + anon_sym_await, + STATE(794), 1, sym_string, - STATE(570), 1, + STATE(795), 1, sym_template_string, - STATE(652), 1, + STATE(822), 1, sym_primary_expression, - STATE(1161), 1, + STATE(1200), 1, sym_expression, - ACTIONS(304), 2, + STATE(1501), 1, + sym_with_item, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36785,493 +36989,475 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [16870] = 20, + [16495] = 8, 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(949), 1, + anon_sym_else, + ACTIONS(1023), 1, + anon_sym_elif, + STATE(354), 1, + aux_sym_if_statement_repeat1, + STATE(463), 1, + sym_elif_clause, + STATE(525), 1, + sym_else_clause, + ACTIONS(1033), 13, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(702), 1, - sym_primary_expression, - STATE(951), 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(490), 5, + sym_ellipsis, + sym_float, + ACTIONS(1035), 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(955), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(760), 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, - [16962] = 20, - 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_class, anon_sym_not, - ACTIONS(653), 1, anon_sym_lambda, - ACTIONS(689), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(699), 1, anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(653), 1, - sym_primary_expression, - STATE(904), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [17054] = 20, + [16564] = 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(1037), 13, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(574), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(702), 1, - sym_primary_expression, - STATE(1094), 1, - sym_expression, - ACTIONS(75), 2, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(490), 5, + ACTIONS(1039), 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(955), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(760), 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, - [17146] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(308), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(310), 1, + sym_true, + sym_false, + sym_none, + [16623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1027), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(1154), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, + sym_ellipsis, + sym_float, + ACTIONS(1025), 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(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [17238] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(308), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(310), 1, + sym_true, + sym_false, + sym_none, + [16682] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + anon_sym_else, + ACTIONS(1041), 1, + anon_sym_elif, + STATE(326), 1, + aux_sym_if_statement_repeat1, + STATE(473), 1, + sym_elif_clause, + STATE(558), 1, + sym_else_clause, + ACTIONS(1019), 13, + sym__dedent, 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(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(1150), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, + sym_ellipsis, + sym_float, + ACTIONS(1021), 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(276), 5, + [16751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1045), 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(1043), 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(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [17330] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(308), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(310), 1, + sym_true, + sym_false, + sym_none, + [16810] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + anon_sym_else, + ACTIONS(1023), 1, + anon_sym_elif, + STATE(354), 1, + aux_sym_if_statement_repeat1, + STATE(463), 1, + sym_elif_clause, + STATE(596), 1, + sym_else_clause, + ACTIONS(1047), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(1106), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, + sym_ellipsis, + sym_float, + ACTIONS(1049), 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(276), 5, + [16879] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + anon_sym_else, + ACTIONS(1023), 1, + anon_sym_elif, + STATE(316), 1, + aux_sym_if_statement_repeat1, + STATE(463), 1, + sym_elif_clause, + STATE(597), 1, + sym_else_clause, + ACTIONS(1051), 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(1053), 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(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [17422] = 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, + [16948] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, + anon_sym_await, + STATE(794), 1, sym_string, - STATE(570), 1, + STATE(795), 1, sym_template_string, - STATE(652), 1, + STATE(822), 1, sym_primary_expression, - STATE(1092), 1, + STATE(1186), 1, sym_expression, - ACTIONS(304), 2, + STATE(1565), 1, + sym_exception_list, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37289,709 +37475,821 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [17514] = 20, + [17043] = 10, 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(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(1151), 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, - ACTIONS(276), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [17606] = 20, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(1055), 1, + anon_sym_for, + ACTIONS(1057), 1, + anon_sym_with, + ACTIONS(1059), 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, + anon_sym_SEMI, + [17116] = 3, 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, + ACTIONS(1045), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(1059), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, + sym_ellipsis, + sym_float, + ACTIONS(1043), 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(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [17698] = 20, - 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(83), 1, - sym__template_string_start, - ACTIONS(488), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(494), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(702), 1, - sym_primary_expression, - STATE(985), 1, - sym_expression, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, - sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(955), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(760), 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, - [17790] = 20, + [17175] = 8, 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, + ACTIONS(941), 1, + anon_sym_else, + ACTIONS(1041), 1, + anon_sym_elif, + STATE(399), 1, + aux_sym_if_statement_repeat1, + STATE(473), 1, + sym_elif_clause, + STATE(568), 1, + sym_else_clause, + ACTIONS(1047), 13, + sym__dedent, 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(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(889), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, + sym_ellipsis, + sym_float, + ACTIONS(1049), 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(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [17882] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(308), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(310), 1, + sym_true, + sym_false, + sym_none, + [17244] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + anon_sym_else, + ACTIONS(1041), 1, + anon_sym_elif, + STATE(333), 1, + aux_sym_if_statement_repeat1, + STATE(473), 1, + sym_elif_clause, + STATE(569), 1, + sym_else_clause, + ACTIONS(1051), 13, + sym__dedent, 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(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(934), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, + sym_ellipsis, + sym_float, + ACTIONS(1053), 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(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [17974] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(300), 1, + anon_sym_class, + anon_sym_not, anon_sym_lambda, - ACTIONS(308), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - ACTIONS(310), 1, + sym_true, + sym_false, + sym_none, + [17313] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1065), 1, + anon_sym_except, + STATE(328), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1061), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(879), 1, - sym_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(276), 5, + sym_ellipsis, + sym_float, + ACTIONS(1063), 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_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, - STATE(880), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(649), 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, - [18066] = 20, - 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(83), 1, - sym__template_string_start, - ACTIONS(488), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(494), 1, anon_sym_await, - ACTIONS(568), 1, + sym_true, + sym_false, + sym_none, + [17376] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1072), 1, + anon_sym_except, + STATE(329), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1068), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(574), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(702), 1, - sym_primary_expression, - STATE(1069), 1, - sym_expression, - ACTIONS(75), 2, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(47), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(1070), 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_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, - ACTIONS(490), 5, + [17439] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1075), 1, + anon_sym_except, + STATE(330), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1061), 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(1063), 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_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, - STATE(955), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(760), 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, - [18158] = 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, + [17502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(1078), 1, + anon_sym_except, + STATE(331), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + ACTIONS(1068), 13, + sym__dedent, + sym__string_start, + sym__template_string_start, anon_sym_LPAREN, - ACTIONS(617), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - ACTIONS(889), 1, - sym_identifier, - ACTIONS(897), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1070), 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_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, - ACTIONS(899), 1, anon_sym_lambda, - ACTIONS(901), 1, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(1064), 1, - sym_expression, - ACTIONS(621), 2, - sym_ellipsis, - sym_float, - ACTIONS(615), 3, + sym_true, + sym_false, + sym_none, + [17565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1031), 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, - ACTIONS(607), 4, + sym_ellipsis, + sym_float, + ACTIONS(1029), 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(893), 5, + [17624] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + anon_sym_else, + ACTIONS(1041), 1, + anon_sym_elif, + STATE(399), 1, + aux_sym_if_statement_repeat1, + STATE(473), 1, + sym_elif_clause, + STATE(582), 1, + sym_else_clause, + ACTIONS(1033), 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(1035), 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(996), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(809), 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, - [18250] = 20, - 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(83), 1, - sym__template_string_start, - ACTIONS(488), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(494), 1, anon_sym_await, - ACTIONS(568), 1, + sym_true, + sym_false, + sym_none, + [17693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1081), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(574), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(702), 1, - sym_primary_expression, - STATE(984), 1, - sym_expression, - ACTIONS(75), 2, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(1083), 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, + [17752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 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, - ACTIONS(77), 4, + sym_ellipsis, + sym_float, + ACTIONS(1039), 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(490), 5, + [17811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1081), 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(1083), 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(955), 6, - sym_named_expression, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(760), 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, - [18342] = 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, + [17870] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(488), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(494), 1, + ACTIONS(969), 1, + anon_sym_not, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(698), 1, + STATE(794), 1, sym_string, - STATE(700), 1, + STATE(795), 1, sym_template_string, - STATE(702), 1, + STATE(822), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1205), 1, sym_expression, - ACTIONS(75), 2, + STATE(1550), 1, + sym_exception_list, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38009,61 +38307,124 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18434] = 20, + [17965] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(1085), 1, + anon_sym_for, + ACTIONS(1087), 1, + anon_sym_with, + ACTIONS(1089), 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, - ACTIONS(619), 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, + anon_sym_SEMI, + [18038] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(320), 1, anon_sym_await, - STATE(718), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(763), 1, + sym_template_string, + STATE(779), 1, sym_primary_expression, - STATE(720), 1, + STATE(782), 1, sym_string, - STATE(722), 1, - sym_template_string, - STATE(1015), 1, + STATE(1224), 1, sym_expression, - ACTIONS(621), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38081,39 +38442,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18526] = 20, + [18130] = 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, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1158), 1, + STATE(1030), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -38122,20 +38483,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38153,61 +38514,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18618] = 20, + [18222] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(625), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(627), 1, sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, sym_string, - STATE(570), 1, + STATE(768), 1, sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(1142), 1, + STATE(1112), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(615), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(607), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(753), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1129), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(924), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38225,61 +38586,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18710] = 20, + [18314] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(300), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(578), 1, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, + STATE(763), 1, sym_template_string, - STATE(652), 1, + STATE(779), 1, sym_primary_expression, - STATE(910), 1, + STATE(782), 1, + sym_string, + STATE(1324), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38297,61 +38658,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18802] = 20, + [18406] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(320), 1, anon_sym_await, - STATE(718), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(763), 1, + sym_template_string, + STATE(779), 1, sym_primary_expression, - STATE(720), 1, + STATE(782), 1, sym_string, - STATE(722), 1, - sym_template_string, - STATE(1021), 1, + STATE(1135), 1, sym_expression, - ACTIONS(621), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38369,61 +38730,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18894] = 20, + [18498] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(889), 1, - sym_identifier, - ACTIONS(897), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + STATE(621), 1, sym_string, - STATE(722), 1, + STATE(624), 1, sym_template_string, - STATE(1024), 1, + STATE(719), 1, + sym_primary_expression, + STATE(1071), 1, sym_expression, - ACTIONS(621), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38441,61 +38802,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [18986] = 20, + [18590] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(300), 1, + anon_sym_lambda, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(889), 1, - sym_identifier, - ACTIONS(897), 1, + ACTIONS(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, - anon_sym_await, - STATE(718), 1, - sym_primary_expression, - STATE(720), 1, + STATE(621), 1, sym_string, - STATE(722), 1, + STATE(624), 1, sym_template_string, - STATE(1027), 1, + STATE(719), 1, + sym_primary_expression, + STATE(1282), 1, sym_expression, - ACTIONS(621), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38513,39 +38874,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19078] = 20, + [18682] = 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, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1043), 1, + STATE(1155), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -38554,20 +38915,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38585,61 +38946,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19170] = 20, + [18774] = 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, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(698), 1, + ACTIONS(747), 1, + anon_sym_not, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(719), 1, sym_primary_expression, - STATE(1140), 1, + STATE(1296), 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(490), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38657,39 +39018,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19262] = 20, + [18866] = 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, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1058), 1, + STATE(1214), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -38698,20 +39059,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38729,61 +39090,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19354] = 20, + [18958] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(320), 1, anon_sym_await, - STATE(718), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(763), 1, + sym_template_string, + STATE(779), 1, sym_primary_expression, - STATE(720), 1, + STATE(782), 1, sym_string, - STATE(722), 1, - sym_template_string, - STATE(1029), 1, + STATE(1197), 1, sym_expression, - ACTIONS(621), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38801,39 +39162,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19446] = 20, + [19050] = 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(597), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, - anon_sym_await, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(897), 1, + STATE(1297), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -38842,20 +39203,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38873,61 +39234,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19538] = 20, + [19142] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(320), 1, anon_sym_await, - STATE(718), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(763), 1, + sym_template_string, + STATE(779), 1, sym_primary_expression, - STATE(720), 1, + STATE(782), 1, sym_string, - STATE(722), 1, - sym_template_string, - STATE(993), 1, + STATE(1121), 1, sym_expression, - ACTIONS(621), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38945,7 +39306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19630] = 20, + [19234] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -38958,21 +39319,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(488), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(494), 1, + ACTIONS(320), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(574), 1, anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, + STATE(763), 1, sym_template_string, - STATE(702), 1, + STATE(779), 1, sym_primary_expression, - STATE(1068), 1, + STATE(782), 1, + sym_string, + STATE(1292), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -38986,20 +39347,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39017,61 +39378,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19722] = 20, + [19326] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(300), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(578), 1, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, + STATE(763), 1, sym_template_string, - STATE(652), 1, + STATE(779), 1, sym_primary_expression, - STATE(1170), 1, + STATE(782), 1, + sym_string, + STATE(1123), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39089,61 +39450,119 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19814] = 20, + [19418] = 6, 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, + ACTIONS(1095), 1, + anon_sym_elif, + STATE(354), 1, + aux_sym_if_statement_repeat1, + STATE(463), 1, + sym_elif_clause, + ACTIONS(1091), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(652), 1, - sym_primary_expression, - STATE(901), 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, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1093), 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, - ACTIONS(276), 5, + [19482] = 20, + 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(83), 1, + sym__template_string_start, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(763), 1, + sym_template_string, + STATE(779), 1, + sym_primary_expression, + STATE(782), 1, + sym_string, + STATE(1279), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39161,61 +39580,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19906] = 20, + [19574] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, + anon_sym_await, + STATE(794), 1, sym_string, - STATE(570), 1, + STATE(795), 1, sym_template_string, - STATE(652), 1, + STATE(822), 1, sym_primary_expression, - STATE(900), 1, + STATE(1188), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39233,61 +39652,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [19998] = 20, + [19666] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - STATE(698), 1, + ACTIONS(691), 1, + anon_sym_not, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(725), 1, sym_primary_expression, - STATE(1091), 1, + STATE(1087), 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(490), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39305,7 +39724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20090] = 20, + [19758] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -39324,15 +39743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1160), 1, + STATE(1228), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -39352,14 +39771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39377,61 +39796,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20182] = 20, + [19850] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(300), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(578), 1, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, + STATE(763), 1, sym_template_string, - STATE(652), 1, + STATE(779), 1, sym_primary_expression, - STATE(896), 1, + STATE(782), 1, + sym_string, + STATE(1141), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39449,61 +39868,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20274] = 20, + [19942] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(300), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(578), 1, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, + STATE(763), 1, sym_template_string, - STATE(652), 1, + STATE(779), 1, sym_primary_expression, - STATE(895), 1, + STATE(782), 1, + sym_string, + STATE(1144), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39521,61 +39940,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20366] = 20, + [20034] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - STATE(698), 1, + ACTIONS(691), 1, + anon_sym_not, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(725), 1, sym_primary_expression, - STATE(1003), 1, + STATE(1064), 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(490), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39593,7 +40012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20458] = 20, + [20126] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -39612,15 +40031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1128), 1, + STATE(1189), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -39640,14 +40059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39665,7 +40084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20550] = 20, + [20218] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -39678,21 +40097,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(488), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(494), 1, + ACTIONS(320), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(574), 1, anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, + STATE(763), 1, sym_template_string, - STATE(702), 1, + STATE(779), 1, sym_primary_expression, - STATE(970), 1, + STATE(782), 1, + sym_string, + STATE(1285), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -39706,20 +40125,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39737,39 +40156,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20642] = 20, + [20310] = 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, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(691), 1, anon_sym_not, - STATE(569), 1, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(725), 1, sym_primary_expression, - STATE(1164), 1, + STATE(1062), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -39778,20 +40197,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39809,7 +40228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20734] = 20, + [20402] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -39822,21 +40241,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(488), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(494), 1, + ACTIONS(320), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(574), 1, anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, + STATE(763), 1, sym_template_string, - STATE(702), 1, + STATE(779), 1, sym_primary_expression, - STATE(969), 1, + STATE(782), 1, + sym_string, + STATE(1226), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -39850,20 +40269,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39881,119 +40300,194 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20826] = 6, + [20494] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1005), 1, - anon_sym_elif, - STATE(369), 1, - aux_sym_if_statement_repeat1, - STATE(433), 1, - sym_elif_clause, - ACTIONS(1003), 13, - sym__dedent, + 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(83), 1, sym__template_string_start, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + 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(763), 1, + sym_template_string, + STATE(779), 1, + sym_primary_expression, + STATE(782), 1, + sym_string, + STATE(1145), 1, + sym_expression, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1001), 34, - 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(316), 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_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, - [20890] = 20, + STATE(1158), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(908), 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, + [20586] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(1098), 1, + sym__string_start, + STATE(1393), 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, - ACTIONS(617), 1, + anon_sym_if, + anon_sym_in, anon_sym_LBRACK, - ACTIONS(619), 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, + anon_sym_SEMI, + [20656] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(625), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(889), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(897), 1, - anon_sym_not, - ACTIONS(899), 1, - anon_sym_lambda, - ACTIONS(901), 1, + ACTIONS(320), 1, anon_sym_await, - STATE(718), 1, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(763), 1, + sym_template_string, + STATE(779), 1, sym_primary_expression, - STATE(720), 1, + STATE(782), 1, sym_string, - STATE(722), 1, - sym_template_string, - STATE(1019), 1, + STATE(1156), 1, sym_expression, - ACTIONS(621), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(893), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(996), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(809), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40011,7 +40505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [20982] = 20, + [20748] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -40024,21 +40518,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(603), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(691), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(693), 1, anon_sym_lambda, - ACTIONS(689), 1, + ACTIONS(801), 1, sym_identifier, - ACTIONS(699), 1, + ACTIONS(807), 1, anon_sym_await, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(725), 1, sym_primary_expression, - STATE(879), 1, + STATE(1068), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -40052,20 +40546,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40083,7 +40577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21074] = 20, + [20840] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -40102,15 +40596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(883), 1, + STATE(1096), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -40130,14 +40624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40155,61 +40649,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21166] = 20, + [20932] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(300), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(578), 1, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, + STATE(763), 1, sym_template_string, - STATE(652), 1, + STATE(779), 1, sym_primary_expression, - STATE(1162), 1, + STATE(782), 1, + sym_string, + STATE(1109), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40227,39 +40721,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21258] = 20, + [21024] = 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(597), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, - anon_sym_await, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(884), 1, + STATE(1262), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -40268,20 +40762,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40299,39 +40793,39 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21350] = 20, + [21116] = 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(597), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, - anon_sym_await, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(967), 1, + STATE(1274), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -40340,20 +40834,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40371,61 +40865,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21442] = 20, + [21208] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(603), 1, anon_sym_LBRACK, - STATE(698), 1, + ACTIONS(691), 1, + anon_sym_not, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(725), 1, sym_primary_expression, - STATE(1093), 1, + STATE(1069), 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(490), 5, + ACTIONS(805), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40443,7 +40937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21534] = 20, + [21300] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(51), 1, @@ -40456,21 +40950,21 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(83), 1, sym__template_string_start, - ACTIONS(488), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(494), 1, + ACTIONS(320), 1, anon_sym_await, ACTIONS(568), 1, anon_sym_LPAREN, ACTIONS(574), 1, anon_sym_LBRACK, - STATE(698), 1, - sym_string, - STATE(700), 1, + STATE(763), 1, sym_template_string, - STATE(702), 1, + STATE(779), 1, sym_primary_expression, - STATE(1008), 1, + STATE(782), 1, + sym_string, + STATE(1258), 1, sym_expression, ACTIONS(75), 2, sym_ellipsis, @@ -40484,20 +40978,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40515,7 +41009,79 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21626] = 20, + [21392] = 20, + 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(691), 1, + anon_sym_not, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(725), 1, + sym_primary_expression, + STATE(1074), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(805), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [21484] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -40534,15 +41100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(1125), 1, + STATE(1231), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -40562,14 +41128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40587,61 +41153,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21718] = 20, + [21576] = 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, + ACTIONS(308), 1, + anon_sym_await, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(488), 1, - sym_identifier, - ACTIONS(494), 1, - anon_sym_await, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - STATE(698), 1, + ACTIONS(747), 1, + anon_sym_not, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(702), 1, + STATE(719), 1, sym_primary_expression, - STATE(979), 1, + STATE(1166), 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(490), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40659,61 +41225,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21810] = 20, + [21668] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(488), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(494), 1, + ACTIONS(969), 1, + anon_sym_not, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(698), 1, + STATE(794), 1, sym_string, - STATE(700), 1, + STATE(795), 1, sym_template_string, - STATE(702), 1, + STATE(822), 1, sym_primary_expression, - STATE(1073), 1, + STATE(1192), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40731,180 +41297,205 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [21902] = 9, + [21760] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(270), 1, - anon_sym_COMMA, - ACTIONS(278), 1, - anon_sym_COLON_EQ, - ACTIONS(1008), 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(1256), 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, + 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(747), 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, - [21972] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1010), 1, - anon_sym_elif, - STATE(382), 1, - aux_sym_if_statement_repeat1, - STATE(417), 1, - sym_elif_clause, - ACTIONS(1003), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1295), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(296), 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(1001), 34, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + 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_with, anon_sym_match, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, anon_sym_type, - anon_sym_class, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [21852] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, anon_sym_not, + ACTIONS(971), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(973), 1, anon_sym_await, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(822), 1, + sym_primary_expression, + STATE(1193), 1, + sym_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 4, + sym_integer, sym_true, sym_false, sym_none, - [22036] = 20, + ACTIONS(965), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1176), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(953), 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, + [21944] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(971), 1, anon_sym_lambda, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, + ACTIONS(973), 1, anon_sym_await, - STATE(569), 1, + STATE(794), 1, sym_string, - STATE(570), 1, + STATE(795), 1, sym_template_string, - STATE(653), 1, + STATE(822), 1, sym_primary_expression, - STATE(888), 1, + STATE(1194), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40922,61 +41513,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22128] = 20, + [22036] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(288), 1, + ACTIONS(51), 1, anon_sym_LBRACE, - ACTIONS(300), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(308), 1, - anon_sym_await, - ACTIONS(310), 1, + ACTIONS(81), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(83), 1, sym__template_string_start, - ACTIONS(578), 1, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(574), 1, anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, + STATE(763), 1, sym_template_string, - STATE(652), 1, + STATE(779), 1, sym_primary_expression, - STATE(1083), 1, + STATE(782), 1, + sym_string, + STATE(1269), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(296), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(276), 5, + ACTIONS(316), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1158), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40994,39 +41585,42 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22220] = 20, + [22128] = 21, ACTIONS(3), 1, sym_comment, 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(597), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(747), 1, anon_sym_not, - ACTIONS(653), 1, - anon_sym_lambda, - ACTIONS(689), 1, + ACTIONS(1100), 1, sym_identifier, - ACTIONS(699), 1, + ACTIONS(1104), 1, anon_sym_await, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(653), 1, + STATE(719), 1, sym_primary_expression, - STATE(1007), 1, + STATE(1096), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + STATE(509), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -41035,24 +41629,22 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(1102), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -41066,7 +41658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22312] = 20, + [22222] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(263), 1, @@ -41085,15 +41677,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(637), 1, + ACTIONS(747), 1, anon_sym_not, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(652), 1, + STATE(719), 1, sym_primary_expression, - STATE(927), 1, + STATE(1322), 1, sym_expression, ACTIONS(304), 2, sym_ellipsis, @@ -41113,14 +41705,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1031), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41138,61 +41730,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22404] = 20, + [22314] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, anon_sym_not, - ACTIONS(653), 1, + ACTIONS(971), 1, anon_sym_lambda, - ACTIONS(689), 1, - sym_identifier, - ACTIONS(699), 1, + ACTIONS(973), 1, anon_sym_await, - STATE(569), 1, + STATE(794), 1, sym_string, - STATE(570), 1, + STATE(795), 1, sym_template_string, - STATE(653), 1, + STATE(822), 1, sym_primary_expression, - STATE(893), 1, + STATE(1195), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(695), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41210,61 +41802,61 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22496] = 20, + [22406] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(488), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(494), 1, + ACTIONS(969), 1, + anon_sym_not, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, anon_sym_await, - ACTIONS(568), 1, - anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - STATE(698), 1, + STATE(794), 1, sym_string, - STATE(700), 1, + STATE(795), 1, sym_template_string, - STATE(702), 1, + STATE(822), 1, sym_primary_expression, - STATE(1009), 1, + STATE(1208), 1, sym_expression, - ACTIONS(75), 2, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(490), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(955), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(760), 17, + STATE(953), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41282,66 +41874,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22588] = 21, + [22498] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - ACTIONS(300), 1, - anon_sym_lambda, - ACTIONS(310), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(312), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(637), 1, - anon_sym_not, - ACTIONS(1013), 1, + ACTIONS(961), 1, sym_identifier, - ACTIONS(1017), 1, + ACTIONS(969), 1, + anon_sym_not, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, anon_sym_await, - STATE(569), 1, + STATE(794), 1, sym_string, - STATE(570), 1, + STATE(795), 1, sym_template_string, - STATE(652), 1, + STATE(822), 1, sym_primary_expression, - STATE(934), 1, + STATE(1209), 1, sym_expression, - ACTIONS(304), 2, + ACTIONS(643), 2, sym_ellipsis, sym_float, - STATE(452), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + ACTIONS(637), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 4, + ACTIONS(629), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1015), 5, + ACTIONS(965), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(880), 6, + STATE(1176), 6, sym_named_expression, sym_not_operator, sym_boolean_operator, sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(649), 15, + STATE(953), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -41355,665 +41946,736 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [22682] = 5, + [22590] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1023), 1, - anon_sym_case, - STATE(412), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1021), 13, - sym__dedent, + 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, - 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(691), 1, + anon_sym_not, + ACTIONS(693), 1, + anon_sym_lambda, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(725), 1, + sym_primary_expression, + STATE(1085), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1019), 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(601), 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, - [22743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1025), 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(1027), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(805), 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, - [22800] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [22682] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, + ACTIONS(609), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(617), 1, anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, + anon_sym_not, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(1125), 1, + sym_expression, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(753), 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, - [22857] = 3, + STATE(1129), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(924), 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, + [22774] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 13, - 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1030), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1027), 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, - [22914] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [22866] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1033), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(609), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(617), 1, anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, + anon_sym_not, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(1165), 1, + sym_expression, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(1035), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(753), 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, - [22971] = 3, + STATE(1129), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(924), 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, + [22958] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(609), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(617), 1, anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, + anon_sym_not, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(1103), 1, + sym_expression, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(1039), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(753), 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, - [23028] = 3, + STATE(1129), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(924), 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, + [23050] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1041), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(609), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(617), 1, anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, + anon_sym_not, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(1104), 1, + sym_expression, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(1043), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(753), 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, - [23085] = 8, + STATE(1129), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(924), 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, + [23142] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(270), 1, - anon_sym_COMMA, - ACTIONS(278), 1, - anon_sym_COLON_EQ, - ACTIONS(1045), 1, - sym_identifier, - ACTIONS(280), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(298), 10, - sym__newline, - anon_sym_DOT, + ACTIONS(609), 1, anon_sym_LPAREN, + ACTIONS(617), 1, 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, - [23152] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1047), 13, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, sym__string_start, + ACTIONS(627), 1, sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, + anon_sym_not, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(1105), 1, + sym_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 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(1049), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(753), 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, - [23209] = 3, + STATE(1129), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(924), 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, + [23234] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(609), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(617), 1, anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, + anon_sym_not, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(1106), 1, + sym_expression, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(1053), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(753), 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, - [23266] = 3, + STATE(1129), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(924), 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, + [23326] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 13, + 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, - ts_builtin_sym_end, + 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1349), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1057), 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, - [23323] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [23418] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1041), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, + ACTIONS(609), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(617), 1, anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, + anon_sym_not, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(1107), 1, + sym_expression, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(1043), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(753), 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, - [23380] = 3, + STATE(1129), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(924), 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, + [23510] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1037), 13, + ACTIONS(1106), 1, + anon_sym_elif, + STATE(399), 1, + aux_sym_if_statement_repeat1, + STATE(473), 1, + sym_elif_clause, + ACTIONS(1091), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -42027,7 +42689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1039), 36, + ACTIONS(1093), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -42045,8 +42707,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, anon_sym_def, @@ -42064,1154 +42724,1145 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [23437] = 3, + [23574] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1055), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, + ACTIONS(609), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(617), 1, anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, + anon_sym_not, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(1108), 1, + sym_expression, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(1057), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(753), 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, - [23494] = 3, + STATE(1129), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(924), 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, + [23666] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1051), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, + ACTIONS(631), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(639), 1, anon_sym_LBRACK, + ACTIONS(641), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(961), 1, + sym_identifier, + ACTIONS(969), 1, + anon_sym_not, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, + anon_sym_await, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(822), 1, + sym_primary_expression, + STATE(1210), 1, + sym_expression, + ACTIONS(643), 2, sym_ellipsis, sym_float, - ACTIONS(1053), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(965), 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, - [23551] = 3, + STATE(1176), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(953), 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, + [23758] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 13, + 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, - ts_builtin_sym_end, + 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1361), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1061), 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, - [23608] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [23850] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1047), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, + ACTIONS(609), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(617), 1, anon_sym_LBRACK, + ACTIONS(619), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, + anon_sym_not, + ACTIONS(757), 1, + anon_sym_lambda, + ACTIONS(759), 1, + anon_sym_await, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(1168), 1, + sym_expression, + ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(1049), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(753), 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, - [23665] = 3, + STATE(1129), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(924), 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, + [23942] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1031), 13, + 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, - ts_builtin_sym_end, + 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1307), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 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, - [23722] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [24034] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1059), 13, - 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1077), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1061), 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, - [23779] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [24126] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1067), 1, - anon_sym_case, - STATE(409), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1063), 13, + 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(83), 1, sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + 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(763), 1, + sym_template_string, + STATE(779), 1, + sym_primary_expression, + STATE(782), 1, + sym_string, + STATE(1177), 1, + sym_expression, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 33, - 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(316), 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, - [23840] = 3, + STATE(1158), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(908), 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, + [24218] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1033), 13, - 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1334), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1035), 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, - [23897] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [24310] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1070), 13, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(653), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(659), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(713), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_not, + ACTIONS(727), 1, + anon_sym_lambda, + ACTIONS(729), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(772), 1, + sym_primary_expression, + STATE(1149), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1072), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 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, - [23954] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [24402] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1074), 1, - anon_sym_case, - STATE(412), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1063), 13, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, + ACTIONS(653), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(659), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(713), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_not, + ACTIONS(727), 1, + anon_sym_lambda, + ACTIONS(729), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(772), 1, + sym_primary_expression, + STATE(1150), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 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, - [24015] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [24494] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1070), 13, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, + ACTIONS(653), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(659), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(713), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_not, + ACTIONS(727), 1, + anon_sym_lambda, + ACTIONS(729), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(772), 1, + sym_primary_expression, + STATE(1151), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1072), 36, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 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, - [24072] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [24586] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1077), 1, - anon_sym_case, - STATE(409), 2, - sym_case_block, - aux_sym_cases_repeat1, - ACTIONS(1021), 13, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(653), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(659), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(713), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_not, + ACTIONS(727), 1, + anon_sym_lambda, + ACTIONS(729), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(772), 1, + sym_primary_expression, + STATE(1152), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1019), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 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, - [24133] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [24678] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(855), 1, - anon_sym_finally, - STATE(523), 1, - sym_finally_clause, - ACTIONS(1079), 13, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(653), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(659), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1081), 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, + ACTIONS(713), 1, + sym_identifier, + ACTIONS(725), 1, anon_sym_not, + ACTIONS(727), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(729), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [24193] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1090), 1, - anon_sym_COLON_EQ, - ACTIONS(1092), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1085), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1094), 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(1083), 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(1088), 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, - [24257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1096), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(772), 1, + sym_primary_expression, + STATE(1153), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(1098), 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(306), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [24313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(877), 1, - anon_sym_else, - STATE(473), 1, - sym_else_clause, - ACTIONS(1102), 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(1100), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(721), 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, - [24373] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [24770] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 13, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, + ACTIONS(653), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(659), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1104), 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(713), 1, + sym_identifier, + ACTIONS(725), 1, anon_sym_not, + ACTIONS(727), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(729), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [24429] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(851), 1, - anon_sym_else, - STATE(513), 1, - sym_else_clause, - ACTIONS(1108), 13, - sym__string_start, - sym__template_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(772), 1, + sym_primary_expression, + STATE(1157), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(1110), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 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, - [24489] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [24862] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, - anon_sym_else, - STATE(548), 1, - sym_else_clause, - ACTIONS(1114), 13, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, + ACTIONS(653), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(659), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(713), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_not, + ACTIONS(727), 1, + anon_sym_lambda, + ACTIONS(729), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(772), 1, + sym_primary_expression, + STATE(1102), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1112), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 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, - [24549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(863), 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(861), 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, - [24605] = 21, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [24954] = 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(667), 1, - sym_identifier, - ACTIONS(669), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(679), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_await, - ACTIONS(1118), 1, - anon_sym_STAR, - STATE(569), 1, + ACTIONS(747), 1, + anon_sym_not, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(854), 1, - sym_pattern, - STATE(862), 1, + STATE(719), 1, sym_primary_expression, + STATE(1082), 1, + sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1116), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(735), 2, - sym_attribute, - sym_subscript, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(853), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(673), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(649), 15, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -43225,612 +43876,857 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [24697] = 5, + [25046] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, - anon_sym_else, - STATE(481), 1, - sym_else_clause, - ACTIONS(1122), 13, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, + ACTIONS(653), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(659), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(713), 1, + sym_identifier, + ACTIONS(725), 1, + anon_sym_not, + ACTIONS(727), 1, + anon_sym_lambda, + ACTIONS(729), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(772), 1, + sym_primary_expression, + STATE(1030), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1120), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(657), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 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, - [24757] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [25138] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, - anon_sym_finally, - STATE(499), 1, - sym_finally_clause, - ACTIONS(1126), 13, - 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1335), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1124), 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(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [25230] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(749), 1, + sym_identifier, + ACTIONS(755), 1, anon_sym_not, + ACTIONS(757), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(759), 1, anon_sym_await, + STATE(766), 1, + sym_primary_expression, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(1183), 1, + sym_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 4, + sym_integer, sym_true, sym_false, sym_none, - [24817] = 5, + ACTIONS(753), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1129), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(924), 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, + [25322] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_else, - STATE(532), 1, - sym_else_clause, - ACTIONS(1114), 13, + 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, - ts_builtin_sym_end, + 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1339), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1112), 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, - [24877] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [25414] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, - anon_sym_else, - STATE(505), 1, - sym_else_clause, - ACTIONS(1130), 13, - 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1089), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1128), 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(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [25506] = 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1366), 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, - [24937] = 3, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [25598] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1132), 13, + 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, - ts_builtin_sym_end, + 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1345), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1134), 35, - 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_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, - [24993] = 7, - ACTIONS(3), 1, - sym_comment, - 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_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, - [25057] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [25690] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, - anon_sym_else, - STATE(559), 1, - sym_else_clause, - ACTIONS(1108), 13, - 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1346), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1110), 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, - [25117] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [25782] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, - anon_sym_finally, - STATE(479), 1, - sym_finally_clause, - ACTIONS(1079), 13, - 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1347), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1081), 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, - [25177] = 5, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [25874] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_else, - STATE(545), 1, - sym_else_clause, - ACTIONS(1136), 13, + 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, - ts_builtin_sym_end, + 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1238), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1138), 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, - [25237] = 3, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [25966] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1096), 13, - 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1063), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1098), 35, - 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_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, - [25293] = 21, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [26058] = 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(667), 1, - sym_identifier, - ACTIONS(669), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(679), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_await, - ACTIONS(1118), 1, - anon_sym_STAR, - STATE(569), 1, + ACTIONS(747), 1, + anon_sym_not, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(854), 1, - sym_pattern, - STATE(862), 1, + STATE(719), 1, sym_primary_expression, + STATE(1065), 1, + sym_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1140), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(735), 2, - sym_attribute, - sym_subscript, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(853), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, ACTIONS(306), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(673), 5, + ACTIONS(276), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(649), 15, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 17, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -43844,124 +44740,586 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [25385] = 5, + [26150] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_else, - STATE(510), 1, - sym_else_clause, - ACTIONS(1130), 13, + 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, - ts_builtin_sym_end, + 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, - sym_ellipsis, + ACTIONS(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1070), 1, + sym_expression, + ACTIONS(304), 2, + sym_ellipsis, sym_float, - ACTIONS(1128), 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, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [26242] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, anon_sym_lambda, - anon_sym_yield, + 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1350), 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, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [26334] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(961), 1, sym_identifier, + ACTIONS(969), 1, + anon_sym_not, + ACTIONS(971), 1, + anon_sym_lambda, + ACTIONS(973), 1, anon_sym_await, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(822), 1, + sym_primary_expression, + STATE(1243), 1, + sym_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 4, + sym_integer, sym_true, sym_false, sym_none, - [25445] = 5, + ACTIONS(965), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1176), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(953), 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, + [26426] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, - anon_sym_else, - STATE(537), 1, - sym_else_clause, - ACTIONS(1136), 13, - sym__dedent, + 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(83), 1, sym__template_string_start, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(568), 1, anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(763), 1, + sym_template_string, + STATE(779), 1, + sym_primary_expression, + STATE(782), 1, + sym_string, + STATE(1191), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(316), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1158), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(908), 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, + [26518] = 20, + 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(83), 1, + sym__template_string_start, + ACTIONS(314), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, anon_sym_LBRACK, + STATE(763), 1, + sym_template_string, + STATE(779), 1, + sym_primary_expression, + STATE(782), 1, + sym_string, + STATE(1227), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(316), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1158), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(908), 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, + [26610] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(263), 1, + sym_identifier, + ACTIONS(288), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, + 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1351), 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, + ACTIONS(276), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [26702] = 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(747), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(719), 1, + sym_primary_expression, + STATE(1352), 1, + sym_expression, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1138), 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(1031), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(724), 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, + [26794] = 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(314), 1, sym_identifier, + ACTIONS(320), 1, anon_sym_await, + ACTIONS(568), 1, + anon_sym_LPAREN, + ACTIONS(574), 1, + anon_sym_LBRACK, + STATE(763), 1, + sym_template_string, + STATE(779), 1, + sym_primary_expression, + STATE(782), 1, + sym_string, + STATE(1163), 1, + sym_expression, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(47), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(77), 4, + sym_integer, sym_true, sym_false, sym_none, - [25505] = 5, + ACTIONS(316), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(1158), 6, + sym_named_expression, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(908), 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, + [26886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_else, - STATE(566), 1, - sym_else_clause, - ACTIONS(1102), 13, + ACTIONS(1109), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -43975,7 +45333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1100), 33, + ACTIONS(1111), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -43988,10 +45346,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, @@ -44009,17 +45370,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25565] = 5, + [26943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(851), 1, - anon_sym_else, - STATE(483), 1, - sym_else_clause, - ACTIONS(1122), 13, + ACTIONS(1115), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44030,7 +45387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1120), 33, + ACTIONS(1113), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44043,10 +45400,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, @@ -44064,10 +45424,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25625] = 3, + [27000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1132), 13, + ACTIONS(1119), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -44081,7 +45441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1134), 35, + ACTIONS(1117), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44094,12 +45454,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_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, @@ -44117,252 +45478,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [25681] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1145), 1, - anon_sym_COLON_EQ, - ACTIONS(1147), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1149), 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(1088), 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(1083), 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, - [25745] = 22, + [27057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1123), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(667), 1, - sym_identifier, - ACTIONS(669), 1, anon_sym_LPAREN, - ACTIONS(679), 1, - anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_await, - ACTIONS(1118), 1, - anon_sym_STAR, - ACTIONS(1151), 1, - anon_sym_RPAREN, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(862), 1, - sym_primary_expression, - STATE(1177), 1, - sym_pattern, - STATE(1416), 1, - sym__patterns, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(735), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - STATE(853), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(673), 5, + sym_ellipsis, + sym_float, + ACTIONS(1121), 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(649), 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, - [25839] = 7, - ACTIONS(3), 1, - sym_comment, - 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_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, - [25903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(867), 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(865), 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_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, - [25959] = 3, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [27114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1106), 13, + ACTIONS(1127), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44373,7 +45549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1104), 35, + ACTIONS(1125), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44386,12 +45562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_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, @@ -44409,17 +45586,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26015] = 5, + [27171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(855), 1, - anon_sym_finally, - STATE(531), 1, - sym_finally_clause, - ACTIONS(1126), 13, + ACTIONS(1131), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44430,7 +45603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1124), 33, + ACTIONS(1129), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44443,10 +45616,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, @@ -44464,278 +45640,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26075] = 6, + [27228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 1, - anon_sym_COMMA, - ACTIONS(1162), 1, - anon_sym_EQ, - ACTIONS(1160), 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(1158), 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(1153), 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, - [26136] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1133), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(667), 1, - sym_identifier, - ACTIONS(669), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(679), 1, - anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_await, - ACTIONS(1118), 1, - anon_sym_STAR, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(862), 1, - sym_primary_expression, - STATE(1237), 1, - sym_pattern, - STATE(1443), 1, - sym_pattern_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(735), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, - anon_sym_TILDE, - STATE(853), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(673), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(649), 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, - [26227] = 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(667), 1, - sym_identifier, - ACTIONS(669), 1, - anon_sym_LPAREN, - ACTIONS(679), 1, anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_await, - ACTIONS(1118), 1, - anon_sym_STAR, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(862), 1, - sym_primary_expression, - STATE(1279), 1, - sym_pattern, - STATE(1504), 1, - sym_pattern_list, - ACTIONS(304), 2, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, sym_ellipsis, sym_float, - STATE(735), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(853), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(673), 5, + ACTIONS(1135), 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(649), 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, - [26318] = 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(667), 1, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(669), 1, - anon_sym_LPAREN, - ACTIONS(679), 1, - anon_sym_LBRACK, - ACTIONS(681), 1, anon_sym_await, - ACTIONS(1118), 1, - anon_sym_STAR, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(862), 1, - sym_primary_expression, - STATE(1306), 1, - sym_pattern, - STATE(1476), 1, - sym_pattern_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(735), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(853), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, sym_true, sym_false, sym_none, - ACTIONS(673), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(649), 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, - [26409] = 3, + [27285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 13, + ACTIONS(1139), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44746,7 +45711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1166), 34, + ACTIONS(1137), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44759,13 +45724,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,123 +45748,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26464] = 6, + [27342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 1, - anon_sym_COMMA, - ACTIONS(1177), 1, - anon_sym_EQ, - ACTIONS(1175), 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(1173), 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(1168), 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, - [26525] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1092), 1, - anon_sym_EQ, - ACTIONS(1085), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1083), 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(1094), 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(1088), 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, - [26586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 13, + ACTIONS(1109), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44908,7 +45765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1181), 34, + ACTIONS(1111), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44921,13 +45778,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, @@ -44943,13 +45802,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26641] = 3, + [27399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 13, + ACTIONS(1133), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -44960,7 +45819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1185), 34, + ACTIONS(1135), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -44973,13 +45832,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, @@ -44995,10 +45856,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26696] = 3, + [27456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1179), 13, + ACTIONS(1143), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -45012,7 +45873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1181), 34, + ACTIONS(1141), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45025,13 +45886,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, @@ -45047,83 +45910,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26751] = 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(667), 1, - sym_identifier, - ACTIONS(669), 1, - anon_sym_LPAREN, - ACTIONS(679), 1, - anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_await, - ACTIONS(1118), 1, - anon_sym_STAR, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(862), 1, - sym_primary_expression, - STATE(1233), 1, - sym_pattern, - STATE(1422), 1, - sym_pattern_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(735), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(853), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(673), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(649), 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, - [26842] = 3, + [27513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 13, + ACTIONS(1147), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45134,7 +45927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1189), 34, + ACTIONS(1145), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45147,10 +45940,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, @@ -45169,138 +45964,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [26897] = 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(667), 1, - sym_identifier, - ACTIONS(669), 1, - anon_sym_LPAREN, - ACTIONS(679), 1, - anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_await, - ACTIONS(1118), 1, - anon_sym_STAR, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(862), 1, - sym_primary_expression, - STATE(1291), 1, - sym_pattern, - STATE(1507), 1, - sym_pattern_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(735), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(853), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(673), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(649), 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, - [26988] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1142), 1, - anon_sym_COMMA, - ACTIONS(1147), 1, - anon_sym_EQ, - ACTIONS(1149), 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(1088), 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(1083), 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, - [27049] = 3, + [27570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 13, - sym__dedent, + ACTIONS(1143), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45311,7 +45981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1185), 34, + ACTIONS(1141), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45324,13 +45994,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, @@ -45346,10 +46018,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27104] = 3, + [27627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 13, + ACTIONS(1147), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -45363,7 +46035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1193), 34, + ACTIONS(1145), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45376,10 +46048,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, @@ -45398,13 +46072,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27159] = 3, + [27684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1164), 13, - sym__dedent, + ACTIONS(1153), 1, + anon_sym_case, + STATE(450), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1149), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45415,7 +46094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1166), 34, + ACTIONS(1151), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45434,7 +46113,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, @@ -45450,13 +46128,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27214] = 3, + [27745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 13, - sym__dedent, + ACTIONS(1127), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45467,7 +46145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1193), 34, + ACTIONS(1125), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45480,10 +46158,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, @@ -45502,10 +46182,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27269] = 3, + [27802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 13, + ACTIONS(1160), 1, + anon_sym_case, + STATE(460), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1158), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -45519,7 +46204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1195), 34, + ACTIONS(1156), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45538,7 +46223,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, @@ -45554,10 +46238,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27324] = 3, + [27863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 13, + ACTIONS(1162), 1, + anon_sym_case, + STATE(450), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1158), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -45571,7 +46260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1195), 34, + ACTIONS(1156), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45590,7 +46279,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, @@ -45606,13 +46294,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27379] = 3, + [27924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 13, - sym__dedent, + ACTIONS(1115), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45623,7 +46311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1189), 34, + ACTIONS(1113), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45636,10 +46324,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, @@ -45658,83 +46348,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27434] = 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(667), 1, - sym_identifier, - ACTIONS(669), 1, - anon_sym_LPAREN, - ACTIONS(679), 1, - anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_await, - ACTIONS(1118), 1, - anon_sym_STAR, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(862), 1, - sym_primary_expression, - STATE(1280), 1, - sym_pattern, - STATE(1428), 1, - sym_pattern_list, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(735), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(853), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(673), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(649), 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, - [27525] = 3, + [27981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1201), 13, - sym__dedent, + ACTIONS(1131), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45745,7 +46365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1199), 33, + ACTIONS(1129), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45758,10 +46378,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, @@ -45779,10 +46402,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27579] = 3, + [28038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(875), 13, + ACTIONS(1119), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -45796,7 +46419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(873), 33, + ACTIONS(1117), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45809,10 +46432,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, @@ -45830,13 +46456,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27633] = 3, + [28095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1205), 13, - sym__dedent, + ACTIONS(1139), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -45847,7 +46473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1203), 33, + ACTIONS(1137), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45860,10 +46486,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, @@ -45881,61 +46510,69 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27687] = 3, + [28152] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1209), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, + ACTIONS(270), 1, + anon_sym_COMMA, + ACTIONS(278), 1, + anon_sym_COLON_EQ, + ACTIONS(1164), 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, + anon_sym_SEMI, + 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_LBRACK, - anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1207), 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, - [27741] = 3, + 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, + [28219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 13, + ACTIONS(1123), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -45949,7 +46586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1213), 33, + ACTIONS(1121), 36, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -45962,10 +46599,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, @@ -45983,10 +46623,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27795] = 3, + [28276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 13, + ACTIONS(1166), 1, + anon_sym_case, + STATE(460), 2, + sym_case_block, + aux_sym_cases_repeat1, + ACTIONS(1149), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -46000,7 +46645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1215), 33, + ACTIONS(1151), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46034,64 +46679,141 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27849] = 3, + [28337] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1221), 13, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(675), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(677), 1, + anon_sym_await, + ACTIONS(1171), 1, + anon_sym_STAR, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(1005), 1, + sym_pattern, + STATE(1012), 1, + sym_primary_expression, + ACTIONS(304), 2, 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, + ACTIONS(1169), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(849), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(999), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(669), 5, + anon_sym_print, 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(724), 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, + [28429] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1175), 1, + anon_sym_COMMA, + ACTIONS(1180), 1, + anon_sym_COLON_EQ, + ACTIONS(1182), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1184), 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(1178), 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(1173), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + 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, - [27903] = 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_SEMI, + [28493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 13, - sym__dedent, + ACTIONS(1186), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46102,7 +46824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1223), 33, + ACTIONS(1188), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46115,6 +46837,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, @@ -46136,10 +46860,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [27957] = 3, + [28549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 13, + ACTIONS(1190), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -46153,7 +46877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1229), 33, + ACTIONS(1192), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46166,6 +46890,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, @@ -46187,10 +46913,71 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28011] = 3, + [28605] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 13, + 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_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, + anon_sym_SEMI, + [28669] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(941), 1, + anon_sym_else, + STATE(600), 1, + sym_else_clause, + ACTIONS(1196), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -46204,7 +46991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1231), 33, + ACTIONS(1194), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46238,13 +47025,88 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28065] = 3, + [28729] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(847), 13, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(675), 1, + anon_sym_LBRACK, + ACTIONS(677), 1, + anon_sym_await, + ACTIONS(1171), 1, + anon_sym_STAR, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(1005), 1, + sym_pattern, + STATE(1012), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(1198), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(849), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(999), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(669), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(724), 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, + [28821] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(953), 1, + anon_sym_finally, + STATE(517), 1, + sym_finally_clause, + ACTIONS(1200), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46255,7 +47117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(849), 33, + ACTIONS(1202), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46289,10 +47151,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28119] = 3, + [28881] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1237), 13, + ACTIONS(941), 1, + anon_sym_else, + STATE(595), 1, + sym_else_clause, + ACTIONS(1206), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -46306,7 +47172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1235), 33, + ACTIONS(1204), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46340,10 +47206,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28173] = 3, + [28941] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 13, + ACTIONS(945), 1, + anon_sym_finally, + STATE(587), 1, + sym_finally_clause, + ACTIONS(1210), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -46357,7 +47227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1239), 33, + ACTIONS(1208), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46391,13 +47261,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28227] = 3, + [29001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 13, - sym__dedent, + ACTIONS(1212), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46408,7 +47278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1243), 33, + ACTIONS(1214), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46421,6 +47291,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, @@ -46442,78 +47314,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28281] = 20, - 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(667), 1, - sym_identifier, - ACTIONS(669), 1, - anon_sym_LPAREN, - ACTIONS(679), 1, - anon_sym_LBRACK, - ACTIONS(681), 1, - anon_sym_await, - ACTIONS(1118), 1, - anon_sym_STAR, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(854), 1, - sym_pattern, - STATE(862), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(735), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - STATE(853), 3, - sym_tuple_pattern, - sym_list_pattern, - sym_list_splat_pattern, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(673), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(649), 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, - [28369] = 3, + [29057] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 13, + ACTIONS(953), 1, + anon_sym_finally, + STATE(530), 1, + sym_finally_clause, + ACTIONS(1210), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -46527,7 +47335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1243), 33, + ACTIONS(1208), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46561,13 +47369,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28423] = 3, + [29117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 13, + ACTIONS(1186), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -46578,7 +47386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1249), 33, + ACTIONS(1188), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46591,6 +47399,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, @@ -46612,10 +47422,124 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28477] = 3, + [29173] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 13, + ACTIONS(1219), 1, + anon_sym_COLON_EQ, + ACTIONS(1221), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1216), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1223), 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(1173), 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(1178), 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, + [29237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1001), 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(999), 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, + anon_sym_SEMI, + [29293] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(949), 1, + anon_sym_else, + STATE(544), 1, + sym_else_clause, + ACTIONS(1196), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -46629,7 +47553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1253), 33, + ACTIONS(1194), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46663,10 +47587,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28531] = 3, + [29353] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 13, + ACTIONS(941), 1, + anon_sym_else, + STATE(572), 1, + sym_else_clause, + ACTIONS(1227), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -46680,7 +47608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1255), 33, + ACTIONS(1225), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46714,61 +47642,86 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28585] = 3, + [29413] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1257), 13, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(675), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(677), 1, + anon_sym_await, + ACTIONS(1171), 1, + anon_sym_STAR, + ACTIONS(1229), 1, + anon_sym_RPAREN, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(1012), 1, + sym_primary_expression, + STATE(1356), 1, + sym_pattern, + STATE(1643), 1, + sym__patterns, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1255), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(849), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(999), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(669), 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, - [28639] = 3, + STATE(724), 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, + [29507] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1261), 13, + ACTIONS(945), 1, + anon_sym_finally, + STATE(574), 1, + sym_finally_clause, + ACTIONS(1200), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -46782,7 +47735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1259), 33, + ACTIONS(1202), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46816,10 +47769,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28693] = 3, + [29567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1265), 13, + ACTIONS(941), 1, + anon_sym_else, + STATE(592), 1, + sym_else_clause, + ACTIONS(1233), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -46833,7 +47790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1263), 33, + ACTIONS(1231), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46867,10 +47824,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28747] = 3, + [29627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1261), 13, + ACTIONS(949), 1, + anon_sym_else, + STATE(536), 1, + sym_else_clause, + ACTIONS(1233), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -46884,7 +47845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1259), 33, + ACTIONS(1231), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46918,10 +47879,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28801] = 3, + [29687] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1265), 13, + ACTIONS(949), 1, + anon_sym_else, + STATE(528), 1, + sym_else_clause, + ACTIONS(1235), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -46935,7 +47900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1263), 33, + ACTIONS(1237), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -46969,64 +47934,70 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28855] = 3, + [29747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, + ACTIONS(1015), 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(1267), 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(1013), 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, - [28909] = 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, + anon_sym_SEMI, + [29803] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 13, - sym__dedent, + ACTIONS(949), 1, + anon_sym_else, + STATE(539), 1, + sym_else_clause, + ACTIONS(1206), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47037,7 +48008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1271), 33, + ACTIONS(1204), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47071,13 +48042,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [28963] = 3, + [29863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 13, - sym__dedent, + ACTIONS(949), 1, + anon_sym_else, + STATE(588), 1, + sym_else_clause, + ACTIONS(1239), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47088,7 +48063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1275), 33, + ACTIONS(1241), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47122,10 +48097,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29017] = 3, + [29923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 13, + ACTIONS(1212), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -47139,7 +48114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1279), 33, + ACTIONS(1214), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47152,6 +48127,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, @@ -47173,10 +48150,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29071] = 3, + [29979] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 13, + 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_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, + [30043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1190), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -47190,7 +48224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1283), 33, + ACTIONS(1192), 35, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47203,6 +48237,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, @@ -47224,13 +48260,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29125] = 3, + [30099] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1287), 13, + ACTIONS(941), 1, + anon_sym_else, + STATE(560), 1, + sym_else_clause, + ACTIONS(1239), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47241,7 +48281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1289), 33, + ACTIONS(1241), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47275,13 +48315,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29179] = 3, + [30159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 13, - sym__dedent, + ACTIONS(949), 1, + anon_sym_else, + STATE(515), 1, + sym_else_clause, + ACTIONS(1227), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47292,7 +48336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1081), 33, + ACTIONS(1225), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47326,10 +48370,14 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29233] = 3, + [30219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 13, + ACTIONS(941), 1, + anon_sym_else, + STATE(585), 1, + sym_else_clause, + ACTIONS(1235), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -47343,7 +48391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1291), 33, + ACTIONS(1237), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47377,10 +48425,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29287] = 3, + [30279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 13, + ACTIONS(1245), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -47394,7 +48442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1213), 33, + ACTIONS(1243), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47411,6 +48459,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, @@ -47428,61 +48477,135 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29341] = 3, + [30334] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 13, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(675), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(677), 1, + anon_sym_await, + ACTIONS(1171), 1, + anon_sym_STAR, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(1012), 1, + sym_primary_expression, + STATE(1504), 1, + sym_pattern, + STATE(1716), 1, + sym_pattern_list, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1295), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + STATE(849), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(999), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(669), 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(724), 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, + [30425] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1175), 1, + anon_sym_COMMA, + ACTIONS(1182), 1, + anon_sym_EQ, + ACTIONS(1184), 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(1178), 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(1173), 16, + sym__newline, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_if, + 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, - [29395] = 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_SEMI, + [30486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1299), 13, + ACTIONS(1247), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -47496,7 +48619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1301), 33, + ACTIONS(1249), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47513,6 +48636,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, @@ -47530,13 +48654,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29449] = 3, + [30541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1305), 13, - sym__dedent, + ACTIONS(1251), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47547,7 +48671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1303), 33, + ACTIONS(1253), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47566,6 +48690,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, @@ -47581,7 +48706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29503] = 20, + [30596] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -47590,35 +48715,37 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(667), 1, + ACTIONS(663), 1, sym_identifier, - ACTIONS(669), 1, + ACTIONS(665), 1, anon_sym_LPAREN, - ACTIONS(679), 1, + ACTIONS(675), 1, anon_sym_LBRACK, - ACTIONS(681), 1, + ACTIONS(677), 1, anon_sym_await, - ACTIONS(1118), 1, + ACTIONS(1171), 1, anon_sym_STAR, - STATE(569), 1, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(862), 1, + STATE(1012), 1, sym_primary_expression, - STATE(1307), 1, + STATE(1461), 1, sym_pattern, + STATE(1657), 1, + sym_pattern_list, ACTIONS(304), 2, sym_ellipsis, sym_float, - STATE(735), 2, + STATE(849), 2, sym_attribute, sym_subscript, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - STATE(853), 3, + STATE(999), 3, sym_tuple_pattern, sym_list_pattern, sym_list_splat_pattern, @@ -47627,13 +48754,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - ACTIONS(673), 5, + ACTIONS(669), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(649), 15, + STATE(724), 15, sym_binary_operator, sym_unary_operator, sym_call, @@ -47649,13 +48776,13 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [29591] = 3, + [30687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1309), 13, - sym__dedent, + ACTIONS(1245), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47666,7 +48793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1307), 33, + ACTIONS(1243), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47683,6 +48810,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, @@ -47700,10 +48828,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29645] = 3, + [30742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1311), 13, + ACTIONS(1255), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -47717,7 +48845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1313), 33, + ACTIONS(1257), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47736,6 +48864,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, @@ -47751,10 +48880,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29699] = 3, + [30797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1315), 13, + ACTIONS(1259), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -47768,7 +48897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1317), 33, + ACTIONS(1261), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47787,6 +48916,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, @@ -47802,10 +48932,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29753] = 3, + [30852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1319), 13, + ACTIONS(1263), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -47819,7 +48949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1321), 33, + ACTIONS(1265), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47838,6 +48968,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, @@ -47853,10 +48984,65 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29807] = 3, + [30907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1325), 13, + ACTIONS(1269), 1, + anon_sym_COMMA, + ACTIONS(1276), 1, + anon_sym_EQ, + ACTIONS(1274), 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(1272), 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(1267), 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, + anon_sym_SEMI, + [30968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1247), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -47870,7 +49056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1323), 33, + ACTIONS(1249), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47887,6 +49073,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, @@ -47904,13 +49091,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29861] = 3, + [31023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1309), 13, + ACTIONS(1251), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -47921,7 +49108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1307), 33, + ACTIONS(1253), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47940,6 +49127,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, @@ -47955,10 +49143,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29915] = 3, + [31078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 13, + ACTIONS(1255), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -47972,7 +49160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1327), 33, + ACTIONS(1257), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -47991,6 +49179,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, @@ -48006,10 +49195,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [29969] = 3, + [31133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1311), 13, + ACTIONS(1259), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -48023,7 +49212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1313), 33, + ACTIONS(1261), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48042,6 +49231,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, @@ -48057,13 +49247,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30023] = 3, + [31188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 13, + ACTIONS(1263), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48074,7 +49264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1333), 33, + ACTIONS(1265), 34, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48093,6 +49283,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, @@ -48108,13 +49299,403 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30077] = 3, + [31243] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1287), 13, - sym__dedent, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(675), 1, + anon_sym_LBRACK, + ACTIONS(677), 1, + anon_sym_await, + ACTIONS(1171), 1, + anon_sym_STAR, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(1012), 1, + sym_primary_expression, + STATE(1496), 1, + sym_pattern, + STATE(1661), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(849), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(999), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(669), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(724), 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, + [31334] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1221), 1, + anon_sym_EQ, + ACTIONS(1216), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1173), 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(1223), 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(1178), 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, + [31395] = 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(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(675), 1, + anon_sym_LBRACK, + ACTIONS(677), 1, + anon_sym_await, + ACTIONS(1171), 1, + anon_sym_STAR, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(1012), 1, + sym_primary_expression, + STATE(1500), 1, + sym_pattern, + STATE(1707), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(849), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(999), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(669), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(724), 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, + [31486] = 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(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(675), 1, + anon_sym_LBRACK, + ACTIONS(677), 1, + anon_sym_await, + ACTIONS(1171), 1, + anon_sym_STAR, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(1012), 1, + sym_primary_expression, + STATE(1473), 1, + sym_pattern, + STATE(1672), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(849), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(999), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(669), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(724), 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, + [31577] = 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(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(675), 1, + anon_sym_LBRACK, + ACTIONS(677), 1, + anon_sym_await, + ACTIONS(1171), 1, + anon_sym_STAR, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(1012), 1, + sym_primary_expression, + STATE(1505), 1, + sym_pattern, + STATE(1719), 1, + sym_pattern_list, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(849), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + STATE(999), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(669), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(724), 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, + [31668] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 1, + anon_sym_COMMA, + ACTIONS(1287), 1, + anon_sym_EQ, + ACTIONS(1285), 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(1283), 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(1278), 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, + anon_sym_SEMI, + [31729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1289), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48125,7 +49706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1289), 33, + ACTIONS(1291), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48159,10 +49740,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30131] = 3, + [31783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1297), 13, + ACTIONS(1293), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -48210,13 +49791,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30185] = 3, + [31837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1337), 13, - sym__dedent, + ACTIONS(1297), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48227,7 +49808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1335), 33, + ACTIONS(1299), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48261,13 +49842,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30239] = 3, + [31891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 13, - sym__dedent, + ACTIONS(1301), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48278,7 +49859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1253), 33, + ACTIONS(1303), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48312,10 +49893,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30293] = 3, + [31945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1329), 13, + ACTIONS(1210), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -48329,7 +49910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1327), 33, + ACTIONS(1208), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48363,10 +49944,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30347] = 3, + [31999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1337), 13, + ACTIONS(1305), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -48380,7 +49961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1335), 33, + ACTIONS(1307), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48414,10 +49995,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30401] = 3, + [32053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 13, + ACTIONS(1309), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -48431,7 +50012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1124), 33, + ACTIONS(1311), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48465,10 +50046,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30455] = 3, + [32107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 13, + ACTIONS(1313), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -48482,7 +50063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1341), 33, + ACTIONS(1315), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48516,13 +50097,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30509] = 3, + [32161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1339), 13, - sym__dedent, + ACTIONS(1317), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48533,7 +50114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1341), 33, + ACTIONS(1319), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48567,10 +50148,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30563] = 3, + [32215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1237), 13, + ACTIONS(1321), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -48584,7 +50165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1235), 33, + ACTIONS(1323), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48618,10 +50199,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30617] = 3, + [32269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1343), 13, + ACTIONS(1325), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -48635,7 +50216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1345), 33, + ACTIONS(1327), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48669,13 +50250,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30671] = 3, + [32323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1319), 13, - sym__dedent, + ACTIONS(1329), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48686,7 +50267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1321), 33, + ACTIONS(1331), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48720,13 +50301,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30725] = 3, + [32377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1343), 13, - sym__dedent, + ACTIONS(1333), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48737,7 +50318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1345), 33, + ACTIONS(1335), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48771,10 +50352,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30779] = 3, + [32431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1347), 13, + ACTIONS(1337), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -48788,7 +50369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1349), 33, + ACTIONS(1339), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48822,10 +50403,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30833] = 3, + [32485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1351), 13, + ACTIONS(1341), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -48839,7 +50420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1353), 33, + ACTIONS(1343), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48873,13 +50454,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30887] = 3, + [32539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1357), 13, - sym__dedent, + ACTIONS(1345), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48890,7 +50471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1355), 33, + ACTIONS(1347), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48924,13 +50505,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30941] = 3, + [32593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 13, - sym__dedent, + ACTIONS(1349), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -48941,7 +50522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1249), 33, + ACTIONS(1351), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -48975,10 +50556,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [30995] = 3, + [32647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1293), 13, + ACTIONS(1353), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -48992,7 +50573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1291), 33, + ACTIONS(1355), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49026,10 +50607,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31049] = 3, + [32701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 13, + ACTIONS(1357), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49043,7 +50624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1361), 33, + ACTIONS(1359), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49077,10 +50658,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31103] = 3, + [32755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 13, + ACTIONS(1361), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49094,7 +50675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1231), 33, + ACTIONS(1363), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49128,10 +50709,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31157] = 3, + [32809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 13, + ACTIONS(1200), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49145,7 +50726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1239), 33, + ACTIONS(1202), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49179,10 +50760,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31211] = 3, + [32863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1285), 13, + ACTIONS(939), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49196,7 +50777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1283), 33, + ACTIONS(937), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49230,13 +50811,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31265] = 3, + [32917] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1365), 13, - sym__dedent, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49247,7 +50828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1363), 33, + ACTIONS(1367), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49281,13 +50862,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31319] = 3, + [32971] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1369), 13, - sym__dedent, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49298,7 +50879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1367), 33, + ACTIONS(1371), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49332,13 +50913,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31373] = 3, + [33025] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1373), 13, - sym__dedent, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49349,7 +50930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1371), 33, + ACTIONS(1375), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49383,13 +50964,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31427] = 3, + [33079] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1377), 13, - sym__dedent, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49400,7 +50981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1375), 33, + ACTIONS(1379), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49434,10 +51015,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31481] = 3, + [33133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1225), 13, + ACTIONS(1381), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49451,7 +51032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1223), 33, + ACTIONS(1383), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49485,10 +51066,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31535] = 3, + [33187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1357), 13, + ACTIONS(1385), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49502,7 +51083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1355), 33, + ACTIONS(1387), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49536,10 +51117,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31589] = 3, + [33241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1079), 13, + ACTIONS(1389), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49553,7 +51134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1081), 33, + ACTIONS(1391), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49587,13 +51168,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31643] = 3, + [33295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1351), 13, - sym__dedent, + ACTIONS(1393), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49604,7 +51185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1353), 33, + ACTIONS(1395), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49638,10 +51219,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31697] = 3, + [33349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1305), 13, + ACTIONS(1397), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49655,7 +51236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1303), 33, + ACTIONS(1399), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49689,10 +51270,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31751] = 3, + [33403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1369), 13, + ACTIONS(1401), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49706,7 +51287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1367), 33, + ACTIONS(1403), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49740,10 +51321,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31805] = 3, + [33457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1269), 13, + ACTIONS(1405), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49757,7 +51338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1267), 33, + ACTIONS(1407), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49791,10 +51372,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31859] = 3, + [33511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1281), 13, + ACTIONS(1409), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49808,7 +51389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1279), 33, + ACTIONS(1411), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49842,13 +51423,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31913] = 3, + [33565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 13, - sym__dedent, + ACTIONS(1413), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49859,7 +51440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1361), 33, + ACTIONS(1415), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49893,10 +51474,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [31967] = 3, + [33619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(847), 13, + ACTIONS(1417), 13, sym__string_start, sym__template_string_start, ts_builtin_sym_end, @@ -49910,7 +51491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(849), 33, + ACTIONS(1419), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49944,13 +51525,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32021] = 3, + [33673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 13, - sym__dedent, + ACTIONS(1421), 13, sym__string_start, sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -49961,7 +51542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1229), 33, + ACTIONS(1423), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -49995,214 +51576,78 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32075] = 3, + [33727] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(875), 13, - sym__dedent, - sym__string_start, - sym__template_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(873), 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, - [32129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1325), 13, + ACTIONS(310), 1, sym__string_start, + ACTIONS(312), 1, sym__template_string_start, - ts_builtin_sym_end, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, anon_sym_LPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(675), 1, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_TILDE, + ACTIONS(677), 1, + anon_sym_await, + ACTIONS(1171), 1, + anon_sym_STAR, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(1012), 1, + sym_primary_expression, + STATE(1445), 1, + sym_pattern, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(1323), 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, - [32183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1347), 13, - sym__dedent, - sym__string_start, - sym__template_string_start, - anon_sym_LPAREN, + STATE(849), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 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(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, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + STATE(999), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [32237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1221), 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(1219), 33, - anon_sym_import, - anon_sym_from, - anon_sym_STAR, + ACTIONS(669), 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, - [32291] = 3, + STATE(724), 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, + [33815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 13, + ACTIONS(1313), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -50216,7 +51661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1124), 33, + ACTIONS(1315), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50250,13 +51695,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32345] = 3, + [33869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1205), 13, + ACTIONS(979), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50267,7 +51712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1203), 33, + ACTIONS(981), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50301,13 +51746,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32399] = 3, + [33923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1377), 13, + ACTIONS(1427), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50318,7 +51763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1375), 33, + ACTIONS(1425), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50352,13 +51797,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32453] = 3, + [33977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1273), 13, + ACTIONS(1431), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50369,7 +51814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1271), 33, + ACTIONS(1429), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50403,10 +51848,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32507] = 3, + [34031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1331), 13, + ACTIONS(1435), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -50420,7 +51865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1333), 33, + ACTIONS(1433), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50454,10 +51899,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32561] = 3, + [34085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1299), 13, + ACTIONS(1439), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -50471,7 +51916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1301), 33, + ACTIONS(1437), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50505,10 +51950,10 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32615] = 3, + [34139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1315), 13, + ACTIONS(1289), 13, sym__dedent, sym__string_start, sym__template_string_start, @@ -50522,7 +51967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1317), 33, + ACTIONS(1291), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50556,13 +52001,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32669] = 3, + [34193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1373), 13, + ACTIONS(1443), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50573,7 +52018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1371), 33, + ACTIONS(1441), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50607,13 +52052,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32723] = 3, + [34247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1201), 13, + ACTIONS(1447), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50624,7 +52069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1199), 33, + ACTIONS(1445), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50658,13 +52103,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32777] = 3, + [34301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1365), 13, + ACTIONS(1200), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50675,7 +52120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1363), 33, + ACTIONS(1202), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50709,13 +52154,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32831] = 3, + [34355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1277), 13, + ACTIONS(939), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50726,7 +52171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1275), 33, + ACTIONS(937), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50760,13 +52205,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32885] = 3, + [34409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 13, + ACTIONS(1381), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50777,7 +52222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1215), 33, + ACTIONS(1383), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50811,13 +52256,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32939] = 3, + [34463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1209), 13, + ACTIONS(1385), 13, + sym__dedent, sym__string_start, sym__template_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_DASH, anon_sym_PLUS, @@ -50828,7 +52273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1207), 33, + ACTIONS(1387), 33, anon_sym_import, anon_sym_from, anon_sym_STAR, @@ -50862,2839 +52307,2404 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [32993] = 18, + [34517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1409), 13, + sym__dedent, 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(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(862), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(740), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(1381), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1383), 5, + sym_ellipsis, + sym_float, + ACTIONS(1411), 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(649), 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, - [33075] = 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, + [34571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(310), 1, + ACTIONS(1421), 13, + sym__dedent, sym__string_start, - STATE(573), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1088), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 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(1423), 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] = 5, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(312), 1, + ACTIONS(1451), 13, + sym__dedent, + sym__string_start, sym__template_string_start, - STATE(572), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1088), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1083), 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_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1449), 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, - [33185] = 5, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1391), 1, + ACTIONS(1455), 13, + sym__dedent, + sym__string_start, sym__template_string_start, - STATE(571), 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(1387), 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_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1453), 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, - [33240] = 5, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(312), 1, + ACTIONS(1459), 13, + sym__dedent, + sym__string_start, sym__template_string_start, - STATE(571), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1396), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1394), 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_LBRACE, anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1457), 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, - [33295] = 5, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(310), 1, + ACTIONS(1463), 13, + sym__dedent, sym__string_start, - STATE(574), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1400), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1398), 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(1461), 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, - [33350] = 5, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [34841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 1, + ACTIONS(1467), 13, + sym__dedent, sym__string_start, - STATE(574), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1404), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1402), 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_not, - anon_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, - [33405] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - ACTIONS(1409), 1, - anon_sym_not, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(751), 1, - sym_primary_expression, - ACTIONS(621), 2, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(615), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(607), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(611), 5, + ACTIONS(1465), 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(809), 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, - [33481] = 16, + 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, + [34895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1293), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - ACTIONS(1411), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(663), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1295), 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(649), 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, - [33557] = 16, + 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, + [34949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(1297), 13, + sym__dedent, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - ACTIONS(1413), 1, - anon_sym_not, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(717), 1, - sym_primary_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), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, + sym_ellipsis, + sym_float, + 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, - STATE(760), 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, - [33633] = 16, + 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, + [35003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1301), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - ACTIONS(1415), 1, - anon_sym_not, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(667), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1303), 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(649), 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, - [33709] = 15, + 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, + [35057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1210), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(672), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1208), 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(649), 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, - [33782] = 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, + [35111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1417), 35, + ACTIONS(1305), 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, - [33831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 6, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1307), 33, + anon_sym_import, + anon_sym_from, anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1421), 35, - sym__template_string_start, - 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, - [33880] = 15, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [35165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(1309), 13, + sym__dedent, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(706), 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(570), 5, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1311), 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(760), 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, - [33953] = 15, + 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, + [35219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1317), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(663), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1319), 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(649), 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, - [34026] = 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, + [35273] = 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), 35, + ACTIONS(1321), 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, - [34075] = 15, - ACTIONS(3), 1, - sym_comment, - 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(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(713), 1, - sym_primary_expression, - ACTIONS(75), 2, + anon_sym_TILDE, 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(570), 5, + ACTIONS(1323), 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(760), 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, - [34148] = 15, + 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, + [35327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1325), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(664), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + 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(649), 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, - [34221] = 15, + 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, + [35381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, + ACTIONS(1451), 13, sym__string_start, - ACTIONS(627), 1, sym__template_string_start, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(739), 1, - sym_primary_expression, - ACTIONS(621), 2, - sym_ellipsis, - sym_float, - ACTIONS(615), 3, + 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, - ACTIONS(607), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(611), 5, + sym_ellipsis, + sym_float, + ACTIONS(1449), 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(809), 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, - [34294] = 15, + 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, + [35435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1329), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(673), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1331), 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(649), 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, - [34367] = 15, + 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, + [35489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(1333), 13, + sym__dedent, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(700), 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, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, 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(760), 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, - [34440] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(736), 1, - sym_primary_expression, - ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(607), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(611), 5, + 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(809), 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, - [34513] = 15, + 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, + [35543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1337), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(683), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1339), 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(649), 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, - [34586] = 15, + 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, + [35597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, + ACTIONS(1341), 13, + sym__dedent, sym__string_start, - ACTIONS(627), 1, sym__template_string_start, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(734), 1, - sym_primary_expression, - ACTIONS(621), 2, - sym_ellipsis, - sym_float, - ACTIONS(615), 3, + 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, - ACTIONS(607), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(611), 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(809), 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, - [34659] = 15, + 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, + [35651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1345), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(677), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1347), 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(649), 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, - [34732] = 15, + 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, + [35705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, + ACTIONS(1349), 13, + sym__dedent, sym__string_start, - ACTIONS(627), 1, sym__template_string_start, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(741), 1, - sym_primary_expression, - ACTIONS(621), 2, - sym_ellipsis, - sym_float, - ACTIONS(615), 3, + 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, - ACTIONS(607), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(611), 5, + sym_ellipsis, + sym_float, + ACTIONS(1351), 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(809), 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, - [34805] = 17, + 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, + [35759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1447), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(1429), 1, - sym_identifier, - ACTIONS(1433), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(862), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(859), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1431), 5, + sym_ellipsis, + sym_float, + ACTIONS(1445), 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(649), 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, - [34882] = 15, + 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, + [35813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1353), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(667), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, 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(649), 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, - [34955] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(745), 1, - sym_primary_expression, - ACTIONS(621), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(607), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(611), 5, + ACTIONS(1355), 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(809), 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, - [35028] = 15, + 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, + [35867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, + ACTIONS(1357), 13, + sym__dedent, sym__string_start, - ACTIONS(627), 1, sym__template_string_start, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(751), 1, - sym_primary_expression, - ACTIONS(621), 2, - sym_ellipsis, - sym_float, - ACTIONS(615), 3, + 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, - ACTIONS(607), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(611), 5, + 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, - STATE(809), 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, - [35101] = 15, + 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, + [35921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, + ACTIONS(1361), 13, + sym__dedent, sym__string_start, - ACTIONS(627), 1, sym__template_string_start, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(752), 1, - sym_primary_expression, - ACTIONS(621), 2, - sym_ellipsis, - sym_float, - ACTIONS(615), 3, + 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, - ACTIONS(607), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(611), 5, + 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, - STATE(809), 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, - [35174] = 15, + 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, + [35975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1365), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(670), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 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(649), 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, - [35247] = 15, + 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, + [36029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, + ACTIONS(1369), 13, + sym__dedent, sym__string_start, - ACTIONS(627), 1, sym__template_string_start, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(753), 1, - sym_primary_expression, - ACTIONS(621), 2, - sym_ellipsis, - sym_float, - ACTIONS(615), 3, + 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, - ACTIONS(607), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(611), 5, + sym_ellipsis, + sym_float, + ACTIONS(1371), 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(809), 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, - [35320] = 15, + 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, + [36083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(1373), 13, + sym__dedent, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(723), 1, - sym_primary_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), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, + sym_ellipsis, + sym_float, + ACTIONS(1375), 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(760), 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, - [35393] = 15, + 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, + [36137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1377), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(682), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1379), 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(649), 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, - [35466] = 15, + 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, + [36191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(1455), 13, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(568), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(700), 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, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, + sym_ellipsis, + sym_float, + ACTIONS(1453), 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(760), 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, - [35539] = 15, + 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, + [36245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1459), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(668), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1457), 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(649), 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, - [35612] = 15, + 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, + [36299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1389), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(678), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1391), 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(649), 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, - [35685] = 15, + 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, + [36353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(1393), 13, + sym__dedent, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(717), 1, - sym_primary_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), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, + sym_ellipsis, + sym_float, + ACTIONS(1395), 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(760), 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, - [35758] = 15, + 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, + [36407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, - anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, + ACTIONS(1397), 13, + sym__dedent, sym__string_start, - ACTIONS(627), 1, sym__template_string_start, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(742), 1, - sym_primary_expression, - ACTIONS(621), 2, - sym_ellipsis, - sym_float, - ACTIONS(615), 3, + 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, - ACTIONS(607), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(611), 5, + sym_ellipsis, + sym_float, + ACTIONS(1399), 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(809), 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, - [35831] = 15, + 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, + [36461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(1401), 13, + sym__dedent, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(700), 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_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(77), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, + sym_ellipsis, + sym_float, + ACTIONS(1403), 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(760), 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, - [35904] = 15, + 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, + [36515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1405), 13, + sym__dedent, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(674), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1407), 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(649), 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, - [35977] = 15, + 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, + [36569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(1413), 13, + sym__dedent, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(707), 1, - sym_primary_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), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, + sym_ellipsis, + sym_float, + ACTIONS(1415), 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(760), 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, - [36050] = 15, + 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, + [36623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(1417), 13, + sym__dedent, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(568), 1, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(708), 1, - sym_primary_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), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, + sym_ellipsis, + sym_float, + ACTIONS(1419), 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(760), 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, - [36123] = 15, + 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, + [36677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1463), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(685), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1461), 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(649), 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, - [36196] = 15, + 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, + [36731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1467), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(662), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(1465), 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(649), 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, - [36269] = 15, + 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, + [36785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(979), 13, sym__string_start, - ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(671), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_AT, anon_sym_TILDE, - ACTIONS(306), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(583), 5, + sym_ellipsis, + sym_float, + ACTIONS(981), 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(649), 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, - [36342] = 15, + 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, + [36839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(1427), 13, sym__string_start, - ACTIONS(83), 1, sym__template_string_start, - ACTIONS(568), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(574), 1, - anon_sym_LBRACK, - ACTIONS(576), 1, - anon_sym_await, - STATE(698), 1, - sym_string, - STATE(700), 1, - sym_template_string, - STATE(705), 1, - sym_primary_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), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(570), 5, + sym_ellipsis, + sym_float, + ACTIONS(1425), 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(760), 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, - [36415] = 15, + 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, + [36893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, + ACTIONS(1431), 13, + sym__string_start, + sym__template_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(617), 1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(619), 1, anon_sym_LBRACE, - ACTIONS(623), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1429), 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, - ACTIONS(625), 1, + sym_true, + sym_false, + sym_none, + [36947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1435), 13, sym__string_start, - ACTIONS(627), 1, sym__template_string_start, - STATE(720), 1, - sym_string, - STATE(722), 1, - sym_template_string, - STATE(746), 1, - sym_primary_expression, - ACTIONS(621), 2, - sym_ellipsis, - sym_float, - ACTIONS(615), 3, + 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, - ACTIONS(607), 5, + sym_ellipsis, + sym_float, + ACTIONS(1433), 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(611), 5, + [37001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1439), 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(1437), 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(809), 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, - [36488] = 15, + 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, + [37055] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(288), 1, @@ -53703,42 +54713,52 @@ static const uint16_t ts_small_parse_table[] = { sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(578), 1, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(675), 1, anon_sym_LBRACK, - ACTIONS(595), 1, + ACTIONS(677), 1, anon_sym_await, - STATE(569), 1, + ACTIONS(1171), 1, + anon_sym_STAR, + STATE(621), 1, sym_string, - STATE(570), 1, + STATE(624), 1, sym_template_string, - STATE(681), 1, + STATE(1005), 1, + sym_pattern, + STATE(1012), 1, sym_primary_expression, ACTIONS(304), 2, sym_ellipsis, sym_float, + STATE(849), 2, + sym_attribute, + sym_subscript, ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 5, + STATE(999), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(306), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(583), 5, + ACTIONS(669), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(649), 17, + STATE(724), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -53752,51 +54772,108 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [36561] = 15, + [37143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(1443), 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, - ACTIONS(81), 1, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1441), 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, + [37197] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(288), 1, + anon_sym_LBRACE, + ACTIONS(310), 1, sym__string_start, - ACTIONS(83), 1, + ACTIONS(312), 1, sym__template_string_start, - ACTIONS(568), 1, + ACTIONS(578), 1, anon_sym_LPAREN, - ACTIONS(574), 1, + ACTIONS(591), 1, anon_sym_LBRACK, - ACTIONS(576), 1, + ACTIONS(1469), 1, + sym_identifier, + ACTIONS(1475), 1, anon_sym_await, - STATE(698), 1, + STATE(621), 1, sym_string, - STATE(700), 1, + STATE(624), 1, sym_template_string, - STATE(710), 1, + STATE(1012), 1, sym_primary_expression, - ACTIONS(75), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(47), 3, + STATE(834), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(77), 5, + ACTIONS(1471), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(306), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(570), 5, + ACTIONS(1473), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(760), 17, + STATE(724), 15, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -53810,47 +54887,49 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [36634] = 15, + [37279] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(609), 1, - anon_sym_LPAREN, - ACTIONS(617), 1, - anon_sym_LBRACK, - ACTIONS(619), 1, + ACTIONS(288), 1, anon_sym_LBRACE, - ACTIONS(623), 1, - anon_sym_await, - ACTIONS(625), 1, + ACTIONS(310), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(312), 1, sym__template_string_start, - STATE(720), 1, + ACTIONS(597), 1, + anon_sym_LPAREN, + ACTIONS(603), 1, + anon_sym_LBRACK, + ACTIONS(605), 1, + anon_sym_await, + ACTIONS(1477), 1, + anon_sym_not, + STATE(621), 1, sym_string, - STATE(722), 1, + STATE(624), 1, sym_template_string, - STATE(744), 1, + STATE(738), 1, sym_primary_expression, - ACTIONS(621), 2, + ACTIONS(304), 2, sym_ellipsis, sym_float, - ACTIONS(615), 3, + ACTIONS(601), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(607), 5, + ACTIONS(306), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(611), 5, + ACTIONS(583), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(809), 17, + STATE(724), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53868,47 +54947,147 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [36707] = 15, + [37355] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, ACTIONS(310), 1, sym__string_start, + STATE(619), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1481), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 33, + 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, + [37409] = 5, + ACTIONS(3), 1, + sym_comment, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(597), 1, + STATE(620), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1485), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 33, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(603), 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, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(605), 1, + 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, + [37463] = 16, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, + ACTIONS(1487), 1, + anon_sym_not, + STATE(763), 1, sym_template_string, - STATE(679), 1, + STATE(782), 1, + sym_string, + STATE(800), 1, sym_primary_expression, - ACTIONS(304), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(601), 3, + ACTIONS(47), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(306), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(583), 5, + ACTIONS(570), 5, anon_sym_print, anon_sym_async, anon_sym_match, anon_sym_exec, anon_sym_type, - STATE(649), 17, + STATE(908), 17, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53926,146 +55105,8132 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_concatenated_template_string, sym_await, - [36780] = 15, + [37539] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1493), 1, sym__string_start, - ACTIONS(312), 1, + STATE(619), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1491), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1489), 33, + 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, + [37593] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1500), 1, sym__template_string_start, - ACTIONS(578), 1, + STATE(620), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1498), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1496), 33, + 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, + [37647] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(310), 1, + sym__string_start, + STATE(616), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1178), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 33, + 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, + [37701] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1503), 1, + anon_sym_not, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(831), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [37777] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + ACTIONS(1505), 1, + anon_sym_not, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(788), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [37853] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(312), 1, + sym__template_string_start, + STATE(617), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1178), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 33, + 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, + [37907] = 16, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + ACTIONS(1507), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(752), 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(724), 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, + [37983] = 16, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + ACTIONS(1509), 1, + anon_sym_not, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(814), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [38059] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(843), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [38132] = 15, + 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(605), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(736), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 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(724), 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, + [38205] = 15, + 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(605), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(737), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 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(724), 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, + [38278] = 15, + 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(605), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(738), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 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(724), 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, + [38351] = 15, + 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(605), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(748), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 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(724), 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, + [38424] = 15, + 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(605), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(749), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 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(724), 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, + [38497] = 15, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(763), 1, + sym_template_string, + STATE(782), 1, + sym_string, + STATE(804), 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(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(908), 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, + [38570] = 15, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(763), 1, + sym_template_string, + STATE(782), 1, + sym_string, + STATE(805), 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(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(908), 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, + [38643] = 15, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(763), 1, + sym_template_string, + STATE(782), 1, + sym_string, + STATE(796), 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(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(908), 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, + [38716] = 15, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(763), 1, + sym_template_string, + STATE(782), 1, + sym_string, + STATE(799), 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(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(908), 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, + [38789] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(828), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [38862] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(829), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [38935] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(831), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [39008] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(832), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [39081] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(833), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [39154] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(835), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [39227] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(836), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [39300] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(837), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [39373] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(844), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [39446] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(786), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [39519] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(787), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [39592] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(788), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [39665] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(789), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [39738] = 15, + 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(605), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(743), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 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(724), 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, + [39811] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(791), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [39884] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(792), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [39957] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(793), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [40030] = 15, + 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(605), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(739), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 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(724), 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, + [40103] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(797), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [40176] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(798), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [40249] = 15, + 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(605), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(759), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 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(724), 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, + [40322] = 15, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(763), 1, + sym_template_string, + STATE(782), 1, + sym_string, + STATE(823), 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(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(908), 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, + [40395] = 15, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(763), 1, + sym_template_string, + STATE(782), 1, + sym_string, + STATE(824), 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(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(908), 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, + [40468] = 15, + 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(605), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(740), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 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(724), 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, + [40541] = 15, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(763), 1, + sym_template_string, + STATE(782), 1, + sym_string, + STATE(800), 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(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(908), 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, + [40614] = 17, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(1469), 1, + sym_identifier, + ACTIONS(1475), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(1012), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(834), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1473), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(724), 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, + [40691] = 15, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(750), 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(724), 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, + [40764] = 15, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(751), 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(724), 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, + [40837] = 15, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(752), 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(724), 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, + [40910] = 15, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(753), 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(724), 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, + [40983] = 15, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(734), 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(724), 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, + [41056] = 15, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(754), 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(724), 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, + [41129] = 15, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(755), 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(724), 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, + [41202] = 15, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(756), 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(724), 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, + [41275] = 15, + 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(605), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(741), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 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(724), 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, + [41348] = 15, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(763), 1, + sym_template_string, + STATE(782), 1, + sym_string, + STATE(801), 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(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(908), 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, + [41421] = 15, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(757), 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(724), 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, + [41494] = 15, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(758), 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(724), 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, + [41567] = 15, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(595), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(761), 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(724), 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, + [41640] = 15, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(763), 1, + sym_template_string, + STATE(782), 1, + sym_string, + STATE(811), 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(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(908), 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, + [41713] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_LPAREN, + ACTIONS(639), 1, + anon_sym_LBRACK, + ACTIONS(641), 1, + anon_sym_LBRACE, + ACTIONS(645), 1, + anon_sym_await, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + STATE(794), 1, + sym_string, + STATE(795), 1, + sym_template_string, + STATE(845), 1, + sym_primary_expression, + ACTIONS(643), 2, + sym_ellipsis, + sym_float, + ACTIONS(637), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(629), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(633), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(953), 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, + [41786] = 17, + 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(578), 1, + anon_sym_LPAREN, + ACTIONS(591), 1, + anon_sym_LBRACK, + ACTIONS(1511), 1, + sym_identifier, + ACTIONS(1515), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(1012), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + STATE(1000), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(306), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1513), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(724), 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, + [41863] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(784), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [41936] = 15, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(763), 1, + sym_template_string, + STATE(782), 1, + sym_string, + STATE(802), 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(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(908), 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, + [42009] = 15, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(812), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [42082] = 15, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(813), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [42155] = 15, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(814), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [42228] = 15, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(815), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [42301] = 15, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(816), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [42374] = 15, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(817), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [42447] = 15, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(818), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [42520] = 15, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(819), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [42593] = 15, + 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(605), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(742), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(601), 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(724), 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, + [42666] = 15, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(820), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [42739] = 15, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(821), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [42812] = 15, + 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(653), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_LBRACK, + ACTIONS(661), 1, + anon_sym_await, + STATE(621), 1, + sym_string, + STATE(624), 1, + sym_template_string, + STATE(803), 1, + sym_primary_expression, + ACTIONS(304), 2, + sym_ellipsis, + sym_float, + ACTIONS(657), 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(724), 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, + [42885] = 15, + ACTIONS(3), 1, + sym_comment, + 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(574), 1, + anon_sym_LBRACK, + ACTIONS(576), 1, + anon_sym_await, + STATE(763), 1, + sym_template_string, + STATE(782), 1, + sym_string, + STATE(825), 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(570), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(908), 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, + [42958] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(609), 1, + anon_sym_LPAREN, + ACTIONS(617), 1, + anon_sym_LBRACK, + ACTIONS(619), 1, + anon_sym_LBRACE, + ACTIONS(623), 1, + anon_sym_await, + ACTIONS(625), 1, + sym__string_start, + ACTIONS(627), 1, + sym__template_string_start, + STATE(767), 1, + sym_string, + STATE(768), 1, + sym_template_string, + STATE(783), 1, + sym_primary_expression, + ACTIONS(621), 2, + sym_ellipsis, + sym_float, + ACTIONS(615), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(607), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(611), 5, + anon_sym_print, + anon_sym_async, + anon_sym_match, + anon_sym_exec, + anon_sym_type, + STATE(924), 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, + [43031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1519), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1517), 34, + 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, + 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, + [43079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1523), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1521), 34, + 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, + 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, + [43127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1525), 34, + 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, + 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, + [43175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1531), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1529), 34, + 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, + 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, + [43223] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1535), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1533), 33, + 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, + [43270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1539), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1537), 33, + 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, + [43317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1543), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1541), 33, + 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, + [43364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1545), 33, + 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, + [43411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1551), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1549), 33, + 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, + [43458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1543), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1541), 33, + 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, + [43505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1555), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1553), 33, + 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, + [43552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1559), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1557), 33, + 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, + [43599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1563), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1561), 33, + 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, + [43646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1567), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1565), 33, + 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, + [43693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1569), 33, + 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, + [43740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1575), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1573), 33, + 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, + [43787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1579), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1577), 33, + 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, + [43834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1272), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1267), 33, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_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, + anon_sym_COLON2, + sym_type_conversion, + [43881] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1278), 33, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_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, + anon_sym_COLON2, + sym_type_conversion, + [43928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1583), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1581), 33, + 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, + [43975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1585), 33, + 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, + [44022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1589), 33, + 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, + [44069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1583), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1581), 33, + 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, + [44116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1579), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1577), 33, + 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, + [44163] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1605), 1, + anon_sym_PIPE, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + ACTIONS(1613), 1, + anon_sym_EQ, + ACTIONS(1617), 1, + anon_sym_not, + ACTIONS(1619), 1, + anon_sym_AMP, + ACTIONS(1621), 1, + anon_sym_CARET, + ACTIONS(1625), 1, + anon_sym_is, + STATE(991), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1607), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1623), 2, + anon_sym_LT, + anon_sym_GT, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1603), 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(1597), 9, + 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, + [44244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1629), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1627), 33, + 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, + [44291] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1633), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1631), 33, + 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, + [44338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1637), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1635), 33, + 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, + [44385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(265), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(298), 33, + 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, + [44432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1178), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 33, + 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, + [44479] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1613), 1, + anon_sym_as, + ACTIONS(1645), 1, + anon_sym_PIPE, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + ACTIONS(1653), 1, + anon_sym_not, + ACTIONS(1655), 1, + anon_sym_AMP, + ACTIONS(1657), 1, + anon_sym_CARET, + ACTIONS(1661), 1, + anon_sym_is, + STATE(992), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1639), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1641), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1647), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1659), 2, + anon_sym_LT, + anon_sym_GT, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1651), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1643), 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(1597), 9, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [44560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1665), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1663), 33, + 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, + [44607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1669), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1667), 33, + 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, + [44654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1673), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1671), 33, + 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, + [44701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1677), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1675), 33, + 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, + [44748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1681), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1679), 33, + 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, + [44795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1673), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1671), 33, + 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, + [44842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1685), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1683), 33, + 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, + [44889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1689), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1687), 33, + 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, + [44936] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1693), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 24, + 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_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, + [44996] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1697), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1695), 27, + 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, + [45052] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 27, + 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_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, + [45108] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + ACTIONS(1639), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1647), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1651), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1693), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 22, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_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, + [45170] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_PIPE, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + ACTIONS(1655), 1, + anon_sym_AMP, + ACTIONS(1657), 1, + anon_sym_CARET, + ACTIONS(1639), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1641), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1647), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1651), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1701), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1699), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + 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, + [45240] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + ACTIONS(1655), 1, + anon_sym_AMP, + ACTIONS(1657), 1, + anon_sym_CARET, + ACTIONS(1639), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1641), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1647), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1651), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1693), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + 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, + [45308] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + ACTIONS(1639), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1651), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1693), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 24, + 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_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, + [45368] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 27, + 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_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, + [45424] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + ACTIONS(1657), 1, + anon_sym_CARET, + ACTIONS(1639), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1641), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1647), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1651), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1693), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + 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, + [45490] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + ACTIONS(1639), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1641), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1647), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1651), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1693), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + 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_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [45554] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + sym__string_start, + STATE(746), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1481), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 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, + [45604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(649), 1, + sym__template_string_start, + STATE(747), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1485), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 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, + [45654] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1703), 1, + sym__string_start, + STATE(746), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1491), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1489), 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, + [45704] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1706), 1, + sym__template_string_start, + STATE(747), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1498), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1496), 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, + [45754] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_PIPE, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + ACTIONS(1655), 1, + anon_sym_AMP, + ACTIONS(1657), 1, + anon_sym_CARET, + ACTIONS(1639), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1641), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1647), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1651), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1711), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1709), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + 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, + [45824] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1645), 1, + anon_sym_PIPE, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + ACTIONS(1655), 1, + anon_sym_AMP, + ACTIONS(1657), 1, + anon_sym_CARET, + ACTIONS(1639), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1641), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1647), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1651), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1715), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1713), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + 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, + [45894] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 27, + 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, + [45950] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1607), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1693), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 22, + 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, + [46012] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1605), 1, + anon_sym_PIPE, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + ACTIONS(1619), 1, + anon_sym_AMP, + ACTIONS(1621), 1, + anon_sym_CARET, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1607), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1701), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1699), 17, + 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, + [46082] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + ACTIONS(1619), 1, + anon_sym_AMP, + ACTIONS(1621), 1, + anon_sym_CARET, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1607), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1693), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 18, + 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, + [46150] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 27, + 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, + [46206] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + ACTIONS(1621), 1, + anon_sym_CARET, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1607), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1693), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 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_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46272] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1607), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1693), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1691), 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_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + [46336] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1605), 1, + anon_sym_PIPE, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + ACTIONS(1619), 1, + anon_sym_AMP, + ACTIONS(1621), 1, + anon_sym_CARET, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1607), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1711), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1709), 17, + 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, + [46406] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1605), 1, + anon_sym_PIPE, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + ACTIONS(1619), 1, + anon_sym_AMP, + ACTIONS(1621), 1, + anon_sym_CARET, + ACTIONS(1599), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1607), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1615), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1715), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1713), 17, + 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, + [46476] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1719), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1717), 27, + 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_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, + [46532] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1649), 1, + anon_sym_STAR_STAR, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1697), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1695), 27, + 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_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, + [46588] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1611), 1, + anon_sym_STAR_STAR, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1719), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1717), 27, + 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, + [46644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 1, + sym__template_string_start, + STATE(762), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1498), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1496), 29, + anon_sym_DOT, + 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_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, + anon_sym_COLON2, + sym_type_conversion, + [46693] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym__template_string_start, + STATE(778), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1178), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 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, + anon_sym_SEMI, + [46742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1283), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1278), 32, + 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, + [46787] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + sym__string_start, + STATE(775), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1481), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 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, + anon_sym_SEMI, + [46836] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1613), 1, + anon_sym_EQ, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1734), 1, + anon_sym_PIPE, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + ACTIONS(1744), 1, + anon_sym_not, + ACTIONS(1746), 1, + anon_sym_AMP, + ACTIONS(1748), 1, + anon_sym_CARET, + ACTIONS(1752), 1, + anon_sym_is, + STATE(1006), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1728), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1730), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1736), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1750), 2, + anon_sym_LT, + anon_sym_GT, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1742), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1732), 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(1597), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_COLON2, + sym_type_conversion, + [46915] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + STATE(769), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1178), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 29, + anon_sym_DOT, + 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_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, + anon_sym_COLON2, + sym_type_conversion, + [46964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__template_string_start, + STATE(770), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1178), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 29, + anon_sym_DOT, + 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_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, + anon_sym_COLON2, + sym_type_conversion, + [47013] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(625), 1, + sym__string_start, + STATE(771), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1481), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1479), 29, + anon_sym_DOT, + 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_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, + anon_sym_COLON2, + sym_type_conversion, + [47062] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + sym__template_string_start, + STATE(762), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1485), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 29, + anon_sym_DOT, + 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_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, + anon_sym_COLON2, + sym_type_conversion, + [47111] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1754), 1, + sym__string_start, + STATE(771), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1491), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1489), 29, + anon_sym_DOT, + 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_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, + anon_sym_COLON2, + sym_type_conversion, + [47160] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(591), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(680), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, + ACTIONS(1763), 1, + anon_sym_PIPE, + ACTIONS(1767), 1, + anon_sym_STAR_STAR, + ACTIONS(1771), 1, + anon_sym_not, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1775), 1, + anon_sym_CARET, + ACTIONS(1779), 1, + anon_sym_is, + STATE(997), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1757), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1759), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1765), 2, 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(649), 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, + ACTIONS(1777), 2, + anon_sym_LT, + anon_sym_GT, + STATE(733), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [36853] = 17, + ACTIONS(1769), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1761), 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(1597), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [47237] = 4, 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(578), 1, + 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(298), 30, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(1379), 1, - sym_identifier, - ACTIONS(1385), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(862), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - STATE(740), 2, - sym_attribute, - sym_subscript, - ACTIONS(296), 3, + 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_TILDE, - ACTIONS(306), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - ACTIONS(1383), 5, - anon_sym_print, - anon_sym_async, - anon_sym_match, - anon_sym_exec, - anon_sym_type, - STATE(649), 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, - [36930] = 3, + 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, + [47284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1437), 6, - anon_sym_as, + ACTIONS(1219), 1, + anon_sym_COLON_EQ, + ACTIONS(1178), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 35, - sym__template_string_start, + ACTIONS(1173), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_else, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -54089,258 +63254,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [36979] = 15, + [47331] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, + ACTIONS(1781), 1, sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(578), 1, - anon_sym_LPAREN, - ACTIONS(591), 1, - anon_sym_LBRACK, - ACTIONS(595), 1, - anon_sym_await, - STATE(569), 1, + STATE(775), 2, sym_string, - STATE(570), 1, - sym_template_string, - STATE(666), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, + aux_sym_concatenated_string_repeat1, + ACTIONS(1491), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1489), 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_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(649), 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, - [37052] = 15, + 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, + anon_sym_SEMI, + [47380] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(288), 1, - anon_sym_LBRACE, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, + ACTIONS(1784), 1, sym__template_string_start, - ACTIONS(597), 1, - anon_sym_LPAREN, - ACTIONS(603), 1, - anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, + STATE(776), 2, sym_template_string, - STATE(676), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1498), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1496), 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_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(649), 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, - [37125] = 15, + 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, + anon_sym_SEMI, + [47429] = 3, 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(578), 1, + ACTIONS(1272), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1267), 32, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(591), 1, + 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, - ACTIONS(595), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, + 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, + [47474] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(83), 1, + sym__template_string_start, + STATE(776), 2, sym_template_string, - STATE(665), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(296), 3, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1485), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1483), 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_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(649), 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, - [37198] = 15, + 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, + anon_sym_SEMI, + [47523] = 20, 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, + ACTIONS(1613), 1, + anon_sym_EQ, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(1789), 1, anon_sym_LPAREN, - ACTIONS(603), 1, + ACTIONS(1797), 1, + anon_sym_PIPE, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(605), 1, - anon_sym_await, - STATE(569), 1, - sym_string, - STATE(570), 1, - sym_template_string, - STATE(684), 1, - sym_primary_expression, - ACTIONS(304), 2, - sym_ellipsis, - sym_float, - ACTIONS(601), 3, + ACTIONS(1803), 1, + anon_sym_STAR_STAR, + ACTIONS(1807), 1, + anon_sym_not, + ACTIONS(1809), 1, + anon_sym_AMP, + ACTIONS(1811), 1, + anon_sym_CARET, + ACTIONS(1815), 1, + anon_sym_is, + STATE(1002), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1793), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1799), 2, 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(649), 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, + anon_sym_PLUS, + ACTIONS(1813), 2, + anon_sym_LT, + anon_sym_GT, + STATE(904), 2, + sym_argument_list, sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_concatenated_template_string, - sym_await, - [37271] = 3, + ACTIONS(1805), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1795), 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(1597), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [47602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 6, + ACTIONS(599), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 34, + ACTIONS(298), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -54366,26 +63530,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [37319] = 3, + [47649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 6, + ACTIONS(1817), 1, + anon_sym_COLON_EQ, + ACTIONS(1178), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1443), 34, + ACTIONS(1173), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_async, anon_sym_for, anon_sym_in, @@ -54411,35 +63573,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [37367] = 3, + [47696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 6, - anon_sym_as, + ACTIONS(81), 1, + sym__string_start, + STATE(765), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1178), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 34, + ACTIONS(1173), 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, - 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, @@ -54456,42 +63616,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [37415] = 3, + anon_sym_SEMI, + [47745] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 6, - anon_sym_as, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + ACTIONS(1728), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1451), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1742), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 22, 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, @@ -54501,36 +63663,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + anon_sym_COLON2, sym_type_conversion, - [37463] = 3, + [47803] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 6, - anon_sym_as, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1719), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1455), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1717), 25, 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, @@ -54546,36 +63709,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + anon_sym_COLON2, sym_type_conversion, - [37511] = 3, + [47857] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 6, - anon_sym_as, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1697), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1459), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1695), 25, 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, @@ -54591,36 +63755,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + anon_sym_COLON2, sym_type_conversion, - [37559] = 3, + [47911] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 6, - anon_sym_as, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1691), 25, 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, @@ -54636,42 +63801,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + anon_sym_COLON2, sym_type_conversion, - [37607] = 3, + [47965] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 6, - anon_sym_as, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + ACTIONS(1728), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1736), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1742), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 20, 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, @@ -54681,36 +63850,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + anon_sym_COLON2, sym_type_conversion, - [37655] = 3, + [48025] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 6, - anon_sym_as, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1734), 1, + anon_sym_PIPE, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + ACTIONS(1746), 1, + anon_sym_AMP, + ACTIONS(1748), 1, + anon_sym_CARET, + ACTIONS(1728), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1730), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1736), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1701), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1742), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1699), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_COLON2, + sym_type_conversion, + [48093] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + ACTIONS(1746), 1, + anon_sym_AMP, + ACTIONS(1748), 1, + anon_sym_CARET, + ACTIONS(1728), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1730), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1736), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1471), 34, + ACTIONS(1742), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + 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_COLON2, + sym_type_conversion, + [48159] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, anon_sym_DOT, + ACTIONS(1595), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1767), 1, + anon_sym_STAR_STAR, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1697), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1695), 26, 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, @@ -54726,36 +64003,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [37703] = 3, + [48213] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 6, - anon_sym_as, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1475), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1691), 25, 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, @@ -54771,35 +64047,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + anon_sym_COLON2, sym_type_conversion, - [37751] = 3, + [48267] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 6, - anon_sym_as, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_CARET, + ACTIONS(1728), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1730), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1736), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1742), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 17, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + 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, + anon_sym_COLON2, + sym_type_conversion, + [48331] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + ACTIONS(1728), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1730), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1736), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1742), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 18, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_COLON2, + sym_type_conversion, + [48393] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + sym__string_start, + STATE(744), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1178), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 34, + ACTIONS(1173), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_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, @@ -54816,35 +64193,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [37799] = 3, + [48441] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 6, - anon_sym_as, + ACTIONS(649), 1, + sym__template_string_start, + STATE(745), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(1178), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 34, + ACTIONS(1173), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_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, @@ -54861,36 +64236,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [37847] = 3, + [48489] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 6, - anon_sym_as, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(1789), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1803), 1, + anon_sym_STAR_STAR, + STATE(904), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1691), 25, + sym__newline, + anon_sym_from, 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, @@ -54906,132 +64281,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [37895] = 3, + anon_sym_SEMI, + [48543] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 6, - anon_sym_as, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1734), 1, + anon_sym_PIPE, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + ACTIONS(1746), 1, + anon_sym_AMP, + ACTIONS(1748), 1, + anon_sym_CARET, + ACTIONS(1728), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1730), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1736), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1711), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1742), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1709), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_COLON2, + sym_type_conversion, + [48611] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LPAREN, + ACTIONS(1734), 1, + anon_sym_PIPE, + ACTIONS(1738), 1, + anon_sym_LBRACK, + ACTIONS(1740), 1, + anon_sym_STAR_STAR, + ACTIONS(1746), 1, + anon_sym_AMP, + ACTIONS(1748), 1, + anon_sym_CARET, + ACTIONS(1728), 2, + anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1730), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1736), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(906), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1715), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1487), 34, + ACTIONS(1742), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1713), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_COLON2, + sym_type_conversion, + [48679] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, anon_sym_DOT, + ACTIONS(1789), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1803), 1, + anon_sym_STAR_STAR, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1799), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(904), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1805), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 20, + sym__newline, + anon_sym_from, 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_is, + anon_sym_SEMI, + [48739] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(1789), 1, + anon_sym_LPAREN, + ACTIONS(1797), 1, + anon_sym_PIPE, + ACTIONS(1801), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1803), 1, anon_sym_STAR_STAR, + ACTIONS(1809), 1, + anon_sym_AMP, + ACTIONS(1811), 1, + anon_sym_CARET, + ACTIONS(1791), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1793), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1799), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(904), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1701), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1805), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1699), 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_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, - [37943] = 3, + anon_sym_SEMI, + [48807] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 6, - anon_sym_as, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(1789), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1803), 1, + anon_sym_STAR_STAR, + ACTIONS(1809), 1, + anon_sym_AMP, + ACTIONS(1811), 1, + anon_sym_CARET, + ACTIONS(1791), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1793), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1799), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(904), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1451), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1805), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 16, + sym__newline, + anon_sym_from, 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_type_conversion, - [37991] = 3, + anon_sym_SEMI, + [48873] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 6, - anon_sym_as, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(1789), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1803), 1, + anon_sym_STAR_STAR, + ACTIONS(1791), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(904), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1805), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 22, + sym__newline, + anon_sym_from, 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, @@ -55041,36 +64589,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38039] = 3, + anon_sym_SEMI, + [48931] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 6, - anon_sym_as, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1767), 1, + anon_sym_STAR_STAR, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1719), 4, 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, + ACTIONS(1717), 26, 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, @@ -55086,118 +64636,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38087] = 3, + [48985] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 6, - anon_sym_as, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(1789), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1803), 1, + anon_sym_STAR_STAR, + ACTIONS(1811), 1, + anon_sym_CARET, + ACTIONS(1791), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1793), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1799), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(904), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1495), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1805), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 17, + sym__newline, + anon_sym_from, 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_type_conversion, - [38135] = 3, + anon_sym_SEMI, + [49049] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 6, - anon_sym_as, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(1789), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1803), 1, + anon_sym_STAR_STAR, + ACTIONS(1791), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1793), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1799), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(904), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1499), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1805), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 18, + sym__newline, + anon_sym_from, 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_type_conversion, - [38183] = 3, + anon_sym_SEMI, + [49111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 6, - anon_sym_as, + ACTIONS(1519), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 34, + ACTIONS(1517), 32, + sym__string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -55221,28 +64778,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38231] = 3, + [49155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1088), 6, - anon_sym_as, + ACTIONS(1523), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 34, + ACTIONS(1521), 32, + 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, @@ -55266,28 +64819,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38279] = 3, + [49199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 6, - anon_sym_as, + ACTIONS(1527), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1503), 34, + ACTIONS(1525), 32, + sym__string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -55311,28 +64860,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38327] = 3, + [49243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 6, - anon_sym_as, + ACTIONS(1531), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1507), 34, + ACTIONS(1529), 32, + 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, @@ -55356,160 +64901,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38375] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, - anon_sym_DOT, - ACTIONS(1513), 1, - anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_PIPE, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(1529), 1, - anon_sym_STAR_STAR, - ACTIONS(1531), 1, - anon_sym_EQ, - ACTIONS(1535), 1, - anon_sym_not, - ACTIONS(1537), 1, - anon_sym_AMP, - ACTIONS(1539), 1, - anon_sym_CARET, - ACTIONS(1543), 1, - anon_sym_is, - STATE(846), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1517), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1519), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1525), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1541), 2, - anon_sym_LT, - anon_sym_GT, - STATE(642), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1533), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1521), 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(1515), 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, - [38457] = 20, + [49287] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1787), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1789), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1531), 1, - anon_sym_as, - ACTIONS(1551), 1, - anon_sym_PIPE, - ACTIONS(1555), 1, + ACTIONS(1803), 1, anon_sym_STAR_STAR, - ACTIONS(1559), 1, - anon_sym_not, - ACTIONS(1561), 1, - anon_sym_AMP, - ACTIONS(1563), 1, - anon_sym_CARET, - ACTIONS(1567), 1, - anon_sym_is, - STATE(845), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1547), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1553), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1565), 2, - anon_sym_LT, - anon_sym_GT, - STATE(642), 2, + STATE(904), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1557), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1549), 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(1515), 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, - [38539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1571), 6, - anon_sym_as, + ACTIONS(1697), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1695), 25, + sym__newline, + anon_sym_from, 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, @@ -55525,36 +64946,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38587] = 3, + anon_sym_SEMI, + [49341] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1575), 6, - anon_sym_as, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(1789), 1, + anon_sym_LPAREN, + ACTIONS(1801), 1, + anon_sym_LBRACK, + ACTIONS(1803), 1, + anon_sym_STAR_STAR, + STATE(904), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1719), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1573), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1717), 25, + sym__newline, + anon_sym_from, 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, @@ -55570,36 +64992,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38635] = 3, + anon_sym_SEMI, + [49395] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(265), 6, - anon_sym_as, + ACTIONS(1593), 1, + anon_sym_DOT, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1767), 1, + anon_sym_STAR_STAR, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1693), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(298), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1691), 26, 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, @@ -55615,42 +65039,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38683] = 3, + [49449] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1577), 34, + ACTIONS(1593), 1, anon_sym_DOT, + ACTIONS(1595), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1767), 1, + anon_sym_STAR_STAR, + ACTIONS(1693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1765), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1769), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 21, 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, @@ -55660,177 +65088,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38731] = 3, + [49509] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1583), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1581), 34, + ACTIONS(1593), 1, anon_sym_DOT, + ACTIONS(1595), 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(1609), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1763), 1, + anon_sym_PIPE, + ACTIONS(1767), 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(1773), 1, anon_sym_AMP, + ACTIONS(1775), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym_type_conversion, - [38779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(1701), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1585), 34, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1757), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1759), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1765), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1769), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1699), 16, + anon_sym_COMMA, 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_type_conversion, - [38827] = 3, + [49577] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1589), 34, + ACTIONS(1593), 1, anon_sym_DOT, + ACTIONS(1595), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1767), 1, + anon_sym_STAR_STAR, + ACTIONS(1773), 1, + anon_sym_AMP, + ACTIONS(1775), 1, + anon_sym_CARET, + ACTIONS(1693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1759), 2, anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1765), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1769), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 17, + anon_sym_COMMA, 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_type_conversion, - [38875] = 3, + [49643] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 6, - anon_sym_as, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1593), 34, + ACTIONS(1593), 1, anon_sym_DOT, + ACTIONS(1595), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(1609), 1, + anon_sym_LBRACK, + ACTIONS(1767), 1, + anon_sym_STAR_STAR, + ACTIONS(1693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(733), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1769), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 23, 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_or, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -55840,39 +65241,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38923] = 8, + [49701] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1593), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1529), 1, + ACTIONS(1767), 1, anon_sym_STAR_STAR, - STATE(642), 2, + STATE(733), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1599), 5, + ACTIONS(1693), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 28, - anon_sym_RPAREN, + ACTIONS(1691), 26, 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_RBRACK, anon_sym_RBRACE, anon_sym_AT, anon_sym_not, @@ -55889,164 +65287,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [38980] = 15, + [49755] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1593), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1551), 1, - anon_sym_PIPE, - ACTIONS(1555), 1, + ACTIONS(1767), 1, anon_sym_STAR_STAR, - ACTIONS(1561), 1, - anon_sym_AMP, - ACTIONS(1563), 1, + ACTIONS(1775), 1, anon_sym_CARET, - ACTIONS(1545), 2, + ACTIONS(1693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1547), 2, + ACTIONS(1759), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1553), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(642), 2, + STATE(733), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1557), 3, + ACTIONS(1769), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1603), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1601), 18, - anon_sym_RPAREN, + ACTIONS(1691), 18, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + 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, - [39051] = 15, + [49819] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1593), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1551), 1, - anon_sym_PIPE, - ACTIONS(1555), 1, + ACTIONS(1767), 1, anon_sym_STAR_STAR, - ACTIONS(1561), 1, - anon_sym_AMP, - ACTIONS(1563), 1, - anon_sym_CARET, - ACTIONS(1545), 2, + ACTIONS(1693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1547), 2, + ACTIONS(1759), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1553), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(642), 2, + STATE(733), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1557), 3, + ACTIONS(1769), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1607), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 18, - anon_sym_RPAREN, + ACTIONS(1691), 19, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + 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, - [39122] = 15, + [49881] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1593), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_PIPE, - ACTIONS(1527), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1529), 1, + ACTIONS(1763), 1, + anon_sym_PIPE, + ACTIONS(1767), 1, anon_sym_STAR_STAR, - ACTIONS(1537), 1, + ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1539), 1, + ACTIONS(1775), 1, anon_sym_CARET, - ACTIONS(1517), 2, + ACTIONS(1711), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1519), 2, + ACTIONS(1759), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1525), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(642), 2, + STATE(733), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1769), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1607), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1605), 18, - anon_sym_RPAREN, + ACTIONS(1709), 16, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, @@ -56057,52 +65441,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [39193] = 15, + [49949] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1593), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, - anon_sym_PIPE, - ACTIONS(1527), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1529), 1, + ACTIONS(1763), 1, + anon_sym_PIPE, + ACTIONS(1767), 1, anon_sym_STAR_STAR, - ACTIONS(1537), 1, + ACTIONS(1773), 1, anon_sym_AMP, - ACTIONS(1539), 1, + ACTIONS(1775), 1, anon_sym_CARET, - ACTIONS(1517), 2, + ACTIONS(1715), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1757), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1519), 2, + ACTIONS(1759), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1525), 2, + ACTIONS(1765), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(642), 2, + STATE(733), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1769), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1611), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1609), 18, - anon_sym_RPAREN, + ACTIONS(1713), 16, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_not, anon_sym_and, @@ -56113,247 +65494,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [39264] = 15, + [50017] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1819), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1821), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, + ACTIONS(1829), 1, anon_sym_PIPE, - ACTIONS(1527), 1, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1529), 1, + ACTIONS(1835), 1, anon_sym_STAR_STAR, - ACTIONS(1537), 1, + ACTIONS(1839), 1, + anon_sym_not, + ACTIONS(1841), 1, anon_sym_AMP, - ACTIONS(1539), 1, + ACTIONS(1843), 1, anon_sym_CARET, - ACTIONS(1517), 2, + ACTIONS(1847), 1, + anon_sym_is, + STATE(1009), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1823), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1519), 2, + ACTIONS(1825), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1525), 2, + ACTIONS(1831), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(642), 2, + ACTIONS(1845), 2, + anon_sym_LT, + anon_sym_GT, + STATE(977), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1837), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1603), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1601), 18, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, + ACTIONS(1827), 6, 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, - [39335] = 12, + ACTIONS(1597), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [50093] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1787), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1789), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1797), 1, + anon_sym_PIPE, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1803), 1, anon_sym_STAR_STAR, - ACTIONS(1545), 2, + ACTIONS(1809), 1, + anon_sym_AMP, + ACTIONS(1811), 1, + anon_sym_CARET, + ACTIONS(1791), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1547), 2, + ACTIONS(1793), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1553), 2, + ACTIONS(1799), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(642), 2, + STATE(904), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1557), 3, + ACTIONS(1711), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1805), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1599), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 21, - anon_sym_RPAREN, + ACTIONS(1709), 15, + sym__newline, + anon_sym_from, 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_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39400] = 8, + anon_sym_SEMI, + [50161] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1787), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1789), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1797), 1, + anon_sym_PIPE, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1529), 1, + ACTIONS(1803), 1, anon_sym_STAR_STAR, - STATE(642), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1615), 5, + ACTIONS(1809), 1, + anon_sym_AMP, + ACTIONS(1811), 1, + anon_sym_CARET, + ACTIONS(1791), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 28, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1793), 2, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(1799), 2, 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, - [39457] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, - anon_sym_DOT, - ACTIONS(1513), 1, - anon_sym_LPAREN, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_STAR_STAR, - STATE(642), 2, + STATE(904), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1619), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1715), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 28, - anon_sym_RPAREN, + ACTIONS(1805), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1713), 15, + sym__newline, + anon_sym_from, 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, - [39514] = 8, + anon_sym_SEMI, + [50229] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1787), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1789), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1801), 1, anon_sym_LBRACK, - ACTIONS(1529), 1, + ACTIONS(1803), 1, anon_sym_STAR_STAR, - STATE(642), 2, + STATE(904), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1619), 5, + ACTIONS(1693), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 28, - anon_sym_RPAREN, + ACTIONS(1691), 25, + sym__newline, + anon_sym_from, 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, @@ -56369,40 +65702,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [39571] = 8, + anon_sym_SEMI, + [50283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, - anon_sym_DOT, - ACTIONS(1513), 1, - anon_sym_LPAREN, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(1529), 1, - anon_sym_STAR_STAR, - STATE(642), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 5, + 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(1597), 28, - anon_sym_RPAREN, + 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_COLON, - anon_sym_else, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -56418,152 +65743,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [39628] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, - anon_sym_DOT, - ACTIONS(1513), 1, - anon_sym_LPAREN, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(1551), 1, - anon_sym_PIPE, - ACTIONS(1555), 1, - anon_sym_STAR_STAR, - ACTIONS(1561), 1, - anon_sym_AMP, - ACTIONS(1563), 1, - anon_sym_CARET, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1547), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1553), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(642), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 3, - anon_sym_AT, - 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, - [39699] = 14, + anon_sym_SEMI, + [50328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, - anon_sym_DOT, - ACTIONS(1513), 1, - anon_sym_LPAREN, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(1529), 1, - anon_sym_STAR_STAR, - ACTIONS(1537), 1, - anon_sym_AMP, - ACTIONS(1539), 1, - anon_sym_CARET, - ACTIONS(1517), 2, + ACTIONS(1523), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1519), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1525), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(642), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1533), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1599), 3, anon_sym_EQ, + anon_sym_SLASH, 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_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, - [39768] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 1, + ACTIONS(1521), 30, + sym__newline, + sym__template_string_start, anon_sym_DOT, - ACTIONS(1513), 1, + anon_sym_from, anon_sym_LPAREN, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_STAR_STAR, - STATE(642), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1615), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 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_LBRACK, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -56579,40 +65783,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39825] = 8, + anon_sym_SEMI, + [50371] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1819), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1821), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1835), 1, anon_sym_STAR_STAR, - STATE(642), 2, + STATE(977), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1599), 5, - anon_sym_as, + ACTIONS(1693), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 28, + ACTIONS(1691), 25, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -56628,46 +65829,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39882] = 11, + [50424] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1819), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1821), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1835), 1, anon_sym_STAR_STAR, - ACTIONS(1545), 2, + ACTIONS(1693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1823), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1553), 2, + ACTIONS(1831), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(642), 2, + STATE(977), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1557), 3, + ACTIONS(1837), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1599), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 23, + ACTIONS(1691), 20, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -56680,48 +65877,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [39945] = 11, + [50483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, - anon_sym_DOT, - ACTIONS(1513), 1, - anon_sym_LPAREN, - ACTIONS(1527), 1, - anon_sym_LBRACK, - ACTIONS(1529), 1, - anon_sym_STAR_STAR, - ACTIONS(1517), 2, + ACTIONS(1531), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1525), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(642), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1533), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1599), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 23, - anon_sym_RPAREN, + ACTIONS(1529), 30, + sym__newline, + sym__template_string_start, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, 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_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, @@ -56731,265 +65916,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [40008] = 13, + anon_sym_SEMI, + [50526] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1819), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1821), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1829), 1, + anon_sym_PIPE, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1835), 1, anon_sym_STAR_STAR, - ACTIONS(1563), 1, + ACTIONS(1841), 1, + anon_sym_AMP, + ACTIONS(1843), 1, anon_sym_CARET, - ACTIONS(1545), 2, + ACTIONS(1701), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1823), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1547), 2, + ACTIONS(1825), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1553), 2, + ACTIONS(1831), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(642), 2, + STATE(977), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1557), 3, + ACTIONS(1837), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1599), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 20, + ACTIONS(1699), 15, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_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, - [40075] = 12, + [50593] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1819), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1821), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1529), 1, + ACTIONS(1835), 1, anon_sym_STAR_STAR, - ACTIONS(1517), 2, + ACTIONS(1841), 1, + anon_sym_AMP, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1823), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1519), 2, + ACTIONS(1825), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1525), 2, + ACTIONS(1831), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(642), 2, + STATE(977), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1837), 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), 21, + ACTIONS(1691), 16, 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, - sym_type_conversion, - [40140] = 13, + [50658] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1819), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1821), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1529), 1, + ACTIONS(1835), 1, anon_sym_STAR_STAR, - ACTIONS(1539), 1, - anon_sym_CARET, - ACTIONS(1517), 2, + ACTIONS(1693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1823), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1519), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1525), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(642), 2, + STATE(977), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1837), 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), 20, + ACTIONS(1691), 22, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym_type_conversion, - [40207] = 14, + [50715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1173), 3, anon_sym_DOT, - ACTIONS(1513), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, - anon_sym_STAR_STAR, - ACTIONS(1561), 1, - anon_sym_AMP, - ACTIONS(1563), 1, - anon_sym_CARET, - ACTIONS(1545), 2, + ACTIONS(1178), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1547), 2, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1553), 2, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - STATE(642), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1557), 3, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1599), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 19, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1223), 19, 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_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - [40276] = 10, + 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, + [50760] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1819), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1821), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1835), 1, anon_sym_STAR_STAR, - ACTIONS(1545), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(642), 2, + STATE(977), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1557), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1599), 3, - anon_sym_as, + ACTIONS(1693), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 25, + ACTIONS(1691), 25, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_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, @@ -56999,135 +66153,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40337] = 8, + [50813] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1819), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1821), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1555), 1, + ACTIONS(1835), 1, anon_sym_STAR_STAR, - STATE(642), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1693), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 28, + ACTIONS(1823), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1831), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(977), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1837), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1691), 17, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, - anon_sym_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, - [40394] = 10, + [50876] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(1819), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1821), 1, anon_sym_LPAREN, - ACTIONS(1527), 1, + ACTIONS(1833), 1, anon_sym_LBRACK, - ACTIONS(1529), 1, + ACTIONS(1835), 1, anon_sym_STAR_STAR, - ACTIONS(1517), 2, + ACTIONS(1693), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1823), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(642), 2, + ACTIONS(1825), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1831), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(977), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1837), 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), 25, + ACTIONS(1691), 18, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, 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_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, - [40455] = 5, + [50937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1621), 1, - sym__template_string_start, - STATE(686), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1389), 4, + ACTIONS(1267), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1272), 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(1274), 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, + [50982] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(599), 1, + anon_sym_COLON_EQ, + ACTIONS(651), 1, + anon_sym_EQ, + ACTIONS(265), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 31, + 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, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -57144,32 +66335,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40505] = 4, + [51029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1090), 1, + ACTIONS(613), 1, anon_sym_COLON_EQ, - ACTIONS(1088), 6, + ACTIONS(265), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 31, + ACTIONS(298), 29, 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, @@ -57187,35 +66374,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + anon_sym_COLON2, sym_type_conversion, - [40553] = 5, + [51074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1624), 1, - sym__string_start, - STATE(688), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1404), 4, + ACTIONS(1527), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1402), 31, + ACTIONS(1525), 30, + sym__string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_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, @@ -57233,34 +66414,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40603] = 5, + anon_sym_COLON2, + sym_type_conversion, + [51117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, - sym__template_string_start, - STATE(686), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1396), 4, + ACTIONS(1849), 1, + anon_sym_COLON_EQ, + ACTIONS(1178), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 31, + ACTIONS(1173), 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, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, @@ -57278,65 +66457,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40653] = 3, + [51162] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1153), 33, + ACTIONS(1819), 1, anon_sym_DOT, + ACTIONS(1821), 1, anon_sym_LPAREN, + ACTIONS(1829), 1, + anon_sym_PIPE, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_STAR_STAR, + ACTIONS(1841), 1, + anon_sym_AMP, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1711), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1823), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1831), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(977), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1837), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1709), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_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, + [51229] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1819), 1, + anon_sym_DOT, + ACTIONS(1821), 1, + anon_sym_LPAREN, + ACTIONS(1829), 1, anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1833), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1835), 1, anon_sym_STAR_STAR, + ACTIONS(1841), 1, + anon_sym_AMP, + ACTIONS(1843), 1, + anon_sym_CARET, + ACTIONS(1715), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1823), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1825), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1831), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(977), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1837), 3, anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1713), 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_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, - [40699] = 5, + [51296] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, - sym__string_start, - STATE(688), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1400), 4, + ACTIONS(1819), 1, + anon_sym_DOT, + ACTIONS(1821), 1, + anon_sym_LPAREN, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_STAR_STAR, + STATE(977), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1719), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1398), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1717), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -57347,10 +66591,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -57366,34 +66606,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40749] = 4, + [51349] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 1, - anon_sym_COLON_EQ, - ACTIONS(1088), 6, - anon_sym_as, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, anon_sym_STAR, + ACTIONS(1857), 1, + anon_sym_if, + ACTIONS(1859), 1, anon_sym_COLON, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + STATE(1039), 1, + sym_string, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1277), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1142), 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, + [51430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1519), 5, + anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 31, + ACTIONS(1517), 30, + sym__newline, + sym__string_start, 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, @@ -57410,35 +66704,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40797] = 4, + anon_sym_SEMI, + [51473] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(599), 1, - anon_sym_COLON_EQ, - ACTIONS(265), 6, - anon_sym_as, + ACTIONS(1819), 1, + anon_sym_DOT, + ACTIONS(1821), 1, + anon_sym_LPAREN, + ACTIONS(1833), 1, + anon_sym_LBRACK, + ACTIONS(1835), 1, + anon_sym_STAR_STAR, + STATE(977), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(1697), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(298), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1695), 25, 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, anon_sym_and, @@ -57454,75 +66750,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [40845] = 4, + [51526] = 4, ACTIONS(3), 1, sym_comment, - 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(298), 31, + ACTIONS(1173), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1178), 13, + anon_sym_STAR, 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_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, - sym_type_conversion, - [40893] = 3, + ACTIONS(1184), 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, + [51571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1173), 5, + ACTIONS(1519), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1168), 33, + ACTIONS(1517), 30, + sym__string_start, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_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, @@ -57540,25 +66829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, + anon_sym_COLON2, sym_type_conversion, - [40939] = 5, + [51614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, - sym__template_string_start, - STATE(696), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1389), 5, + ACTIONS(1531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1387), 29, - sym__newline, + ACTIONS(1529), 30, + sym__template_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -57568,6 +66852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -57584,24 +66869,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [40988] = 3, + anon_sym_COLON2, + sym_type_conversion, + [51657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 5, - anon_sym_as, + ACTIONS(1817), 1, + anon_sym_COLON_EQ, + ACTIONS(1875), 1, + anon_sym_EQ, + ACTIONS(1178), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1153), 32, + ACTIONS(1173), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -57609,8 +66897,6 @@ 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, @@ -57627,21 +66913,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41033] = 5, + [51704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - sym__string_start, - STATE(699), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1088), 5, + ACTIONS(1180), 1, + anon_sym_COLON_EQ, + ACTIONS(1178), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 29, + ACTIONS(1173), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -57670,73 +66953,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41082] = 5, + anon_sym_SEMI, + [51749] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(647), 1, sym__string_start, - STATE(704), 2, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + ACTIONS(1877), 1, + anon_sym_if, + ACTIONS(1879), 1, + anon_sym_COLON, + STATE(1039), 1, sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1400), 5, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1277), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1142), 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, + [51830] = 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_EQ, + 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_LT, - anon_sym_GT, - ACTIONS(1398), 29, - sym__newline, + 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, + [51875] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + STATE(1039), 1, + sym_string, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1390), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1391), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1509), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1142), 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, + [51956] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 3, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(1283), 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, - sym__semicolon, - [41131] = 5, + ACTIONS(1285), 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, + [52001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym__template_string_start, - STATE(701), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1088), 5, + ACTIONS(1817), 1, + anon_sym_COLON_EQ, + ACTIONS(1175), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1178), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 29, - sym__newline, + ACTIONS(1173), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -57758,25 +67196,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41180] = 5, + [52048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(83), 1, - sym__template_string_start, - STATE(696), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1396), 5, + ACTIONS(1523), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1394), 29, - sym__newline, + ACTIONS(1521), 30, + sym__template_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -57786,6 +67217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -57802,92 +67234,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41229] = 20, + anon_sym_COLON2, + sym_type_conversion, + [52091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 1, - anon_sym_EQ, - ACTIONS(1632), 1, + ACTIONS(298), 3, anon_sym_DOT, - ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1646), 1, anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - ACTIONS(1652), 1, - anon_sym_not, - ACTIONS(1654), 1, - anon_sym_AMP, - ACTIONS(1656), 1, - anon_sym_CARET, - ACTIONS(1660), 1, - anon_sym_is, - STATE(850), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1636), 2, + ACTIONS(265), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1638), 2, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1644), 2, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1658), 2, - anon_sym_LT, - anon_sym_GT, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1650), 3, + anon_sym_STAR_STAR, anon_sym_AT, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(1640), 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(1515), 7, - sym__newline, - anon_sym_from, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(593), 19, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_and, - anon_sym_or, - sym__semicolon, - [41308] = 3, + 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, + [52136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1173), 5, - anon_sym_as, + ACTIONS(1527), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1168), 32, + ACTIONS(1525), 30, + sym__newline, + sym__string_start, 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, @@ -57904,33 +67316,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41353] = 5, + anon_sym_SEMI, + [52179] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1662), 1, + ACTIONS(647), 1, sym__string_start, - STATE(704), 2, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + STATE(1039), 1, sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1404), 5, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1391), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1456), 2, + sym__match_patterns, + sym_open_sequence_match_pattern, + STATE(1509), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1142), 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, + [52260] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1402), 29, - sym__newline, + ACTIONS(298), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -57947,149 +67417,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41402] = 13, + [52305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, - anon_sym_DOT, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - ACTIONS(1656), 1, - anon_sym_CARET, - ACTIONS(1636), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1650), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 17, - sym__newline, - anon_sym_from, + ACTIONS(599), 1, + anon_sym_COLON_EQ, + ACTIONS(270), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - 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, - sym__semicolon, - [41466] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1632), 1, - anon_sym_DOT, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - ACTIONS(1654), 1, - anon_sym_AMP, - ACTIONS(1656), 1, - anon_sym_CARET, - ACTIONS(1636), 2, + anon_sym_RBRACK, + ACTIONS(265), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1607), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1650), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1605), 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, - [41534] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1632), 1, + ACTIONS(298), 27, anon_sym_DOT, - ACTIONS(1634), 1, anon_sym_LPAREN, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - ACTIONS(1636), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1650), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 22, - sym__newline, - anon_sym_from, - 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_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, @@ -58099,30 +67459,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41592] = 8, + [52352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, - anon_sym_DOT, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 5, + ACTIONS(1881), 1, + anon_sym_COLON_EQ, + ACTIONS(1178), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 25, - sym__newline, - anon_sym_from, + ACTIONS(1173), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -58130,6 +67480,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -58145,31 +67498,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41646] = 3, + anon_sym_COLON2, + sym_type_conversion, + [52397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 4, + ACTIONS(1629), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 32, - sym__string_start, + ACTIONS(1627), 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_RBRACK, anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, @@ -58187,79 +67537,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [41690] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1632), 1, - anon_sym_DOT, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - ACTIONS(1636), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1650), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 18, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [41752] = 8, + anon_sym_COLON2, + sym_type_conversion, + [52439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, - anon_sym_DOT, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1615), 5, + ACTIONS(1591), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 25, + ACTIONS(1589), 29, sym__newline, + anon_sym_DOT, anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -58267,6 +67560,8 @@ 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, @@ -58282,30 +67577,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41806] = 8, + anon_sym_SEMI, + [52481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, - anon_sym_DOT, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1619), 5, + ACTIONS(1575), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 25, - sym__newline, - anon_sym_from, + ACTIONS(1573), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -58313,6 +67597,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -58328,136 +67615,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [41860] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1632), 1, - anon_sym_DOT, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - ACTIONS(1654), 1, - anon_sym_AMP, - ACTIONS(1656), 1, - anon_sym_CARET, - ACTIONS(1636), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1611), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1650), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1609), 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, - [41928] = 14, + anon_sym_COLON2, + sym_type_conversion, + [52523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, - anon_sym_DOT, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - ACTIONS(1654), 1, - anon_sym_AMP, - ACTIONS(1656), 1, - anon_sym_CARET, - ACTIONS(1636), 2, + ACTIONS(1555), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 3, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1650), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 16, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_is, - sym__semicolon, - [41994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1423), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 32, - sym__template_string_start, + ACTIONS(1553), 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_RBRACK, anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, @@ -58475,30 +67654,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42038] = 3, + anon_sym_COLON2, + sym_type_conversion, + [52565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 4, + ACTIONS(1272), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 32, - sym__string_start, + ACTIONS(1267), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, @@ -58515,141 +67694,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_is, - [42082] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1632), 1, - anon_sym_DOT, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1642), 1, - anon_sym_PIPE, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - ACTIONS(1654), 1, - anon_sym_AMP, - ACTIONS(1656), 1, - anon_sym_CARET, - ACTIONS(1636), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1638), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1603), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1650), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1601), 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, - [42150] = 19, - 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(1685), 1, - anon_sym_not, - ACTIONS(1687), 1, - anon_sym_AMP, - ACTIONS(1689), 1, - anon_sym_CARET, - ACTIONS(1693), 1, - anon_sym_is, - STATE(863), 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(813), 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, - ACTIONS(1515), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [42226] = 3, + anon_sym_is, + [52607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1437), 4, + ACTIONS(1283), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 32, - sym__template_string_start, + ACTIONS(1278), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, @@ -58667,33 +67734,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42270] = 5, + [52649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, - sym__string_start, - STATE(691), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1088), 4, + ACTIONS(1559), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 29, + ACTIONS(1557), 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_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -58710,45 +67771,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42318] = 11, + anon_sym_COLON2, + sym_type_conversion, + [52691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, - anon_sym_DOT, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - ACTIONS(1636), 2, + ACTIONS(1563), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1644), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1650), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1597), 20, - sym__newline, - anon_sym_from, + ACTIONS(1561), 29, + anon_sym_DOT, + 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_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, @@ -58758,34 +67810,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42378] = 5, + anon_sym_COLON2, + sym_type_conversion, + [52733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(627), 1, - sym__template_string_start, - STATE(689), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1088), 4, + ACTIONS(1567), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 29, + ACTIONS(1565), 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_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -58802,29 +67849,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42426] = 8, + anon_sym_COLON2, + sym_type_conversion, + [52775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1632), 1, - anon_sym_DOT, - ACTIONS(1634), 1, - anon_sym_LPAREN, - ACTIONS(1646), 1, - anon_sym_LBRACK, - ACTIONS(1648), 1, - anon_sym_STAR_STAR, - STATE(788), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 5, + ACTIONS(1571), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 25, - sym__newline, - anon_sym_from, + ACTIONS(1569), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -58832,6 +67870,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -58847,62 +67888,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42480] = 4, + anon_sym_COLON2, + sym_type_conversion, + [52817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1153), 3, + ACTIONS(1001), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(999), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1158), 13, - anon_sym_STAR, + 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_RBRACE, anon_sym_STAR_STAR, 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(1160), 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, - [42525] = 3, + 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_COLON2, + sym_type_conversion, + [52859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1437), 5, + ACTIONS(1535), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1435), 30, - sym__newline, - sym__template_string_start, + ACTIONS(1533), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -58912,6 +67949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -58928,19 +67966,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42568] = 3, + anon_sym_COLON2, + sym_type_conversion, + [52901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1423), 5, + ACTIONS(1685), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1421), 30, + ACTIONS(1683), 29, sym__newline, - sym__template_string_start, anon_sym_DOT, anon_sym_from, anon_sym_LPAREN, @@ -58968,22 +68006,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42611] = 4, + anon_sym_SEMI, + [52943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(278), 1, - anon_sym_COLON_EQ, - ACTIONS(265), 5, + ACTIONS(1633), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(298), 29, - sym__newline, + ACTIONS(1631), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -58993,6 +68027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59009,92 +68044,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42656] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 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(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1183), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1184), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1362), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(980), 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, - [42737] = 5, + anon_sym_COLON2, + sym_type_conversion, + [52985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(599), 1, - anon_sym_COLON_EQ, - ACTIONS(270), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(265), 4, + ACTIONS(1665), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(298), 27, + ACTIONS(1663), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59111,21 +68083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [42784] = 4, + anon_sym_COLON2, + sym_type_conversion, + [53027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1145), 1, - anon_sym_COLON_EQ, - ACTIONS(1088), 5, + ACTIONS(1669), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 29, - sym__newline, + ACTIONS(1667), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -59135,6 +68105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59151,563 +68122,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [42829] = 4, + anon_sym_COLON2, + sym_type_conversion, + [53069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(298), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(265), 13, + ACTIONS(1673), 5, 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, - [42874] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(298), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1671), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(265), 13, - anon_sym_STAR, + 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_RBRACE, anon_sym_STAR_STAR, 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(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, - [42919] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 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(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1184), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1277), 2, - sym__match_patterns, - sym_open_sequence_match_pattern, - STATE(1362), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(980), 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, - [43000] = 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(1611), 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(813), 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_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, - [43067] = 4, + anon_sym_COLON2, + sym_type_conversion, + [53111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 3, + ACTIONS(1677), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1675), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1088), 13, - anon_sym_STAR, + 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_RBRACE, anon_sym_STAR_STAR, 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(1149), 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, - [43112] = 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(1607), 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(813), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1683), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1605), 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, - [43179] = 22, + anon_sym_COLON2, + sym_type_conversion, + [53153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1681), 5, 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, - STATE(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1089), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(980), 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, - [43260] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1168), 3, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1679), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1173), 13, - anon_sym_STAR, + anon_sym_COMMA, 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_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1175), 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, - [43305] = 12, - 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_RBRACE, anon_sym_STAR_STAR, - 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(813), 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_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, - [43366] = 4, + anon_sym_COLON2, + sym_type_conversion, + [53195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1083), 3, + ACTIONS(1673), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1671), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1088), 13, - anon_sym_STAR, + 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_RBRACE, anon_sym_STAR_STAR, 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(1094), 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, - [43411] = 13, + 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_COLON2, + sym_type_conversion, + [53237] = 3, 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, + ACTIONS(1559), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1671), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1677), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(813), 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_LT, + anon_sym_GT, + ACTIONS(1557), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_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, - [43474] = 8, + anon_sym_SEMI, + [53279] = 3, 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(813), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 4, + ACTIONS(1637), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 25, - anon_sym_RPAREN, + ACTIONS(1635), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -59723,20 +68356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43527] = 3, + anon_sym_COLON2, + sym_type_conversion, + [53321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1419), 5, + ACTIONS(1539), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1417), 30, - sym__newline, - sym__string_start, + ACTIONS(1537), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -59746,6 +68378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59762,45 +68395,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [43570] = 10, + anon_sym_COLON2, + sym_type_conversion, + [53363] = 3, 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(1599), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 2, + ACTIONS(1547), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(813), 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_LT, + anon_sym_GT, + ACTIONS(1545), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + 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, @@ -59810,87 +68434,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43627] = 14, + anon_sym_COLON2, + sym_type_conversion, + [53405] = 3, 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(1687), 1, - anon_sym_AMP, - ACTIONS(1689), 1, - anon_sym_CARET, - ACTIONS(1599), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 2, + ACTIONS(1015), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1671), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1677), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(813), 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_LT, + anon_sym_GT, + ACTIONS(1013), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + 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, - [43692] = 8, + anon_sym_COLON2, + sym_type_conversion, + [53447] = 3, 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(813), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1619), 4, + ACTIONS(1555), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1617), 25, - anon_sym_RPAREN, + ACTIONS(1553), 29, + sym__newline, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -59906,32 +68513,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43745] = 5, + anon_sym_SEMI, + [53489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(599), 1, - anon_sym_COLON_EQ, - ACTIONS(629), 1, - anon_sym_EQ, - ACTIONS(265), 4, + ACTIONS(1583), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(298), 29, + ACTIONS(1581), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -59948,36 +68551,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43792] = 8, + anon_sym_COLON2, + sym_type_conversion, + [53531] = 3, 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(813), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1615), 4, + ACTIONS(1583), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 25, - anon_sym_RPAREN, + ACTIONS(1581), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -59993,32 +68590,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43845] = 5, + anon_sym_COLON2, + sym_type_conversion, + [53573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 1, - anon_sym_COLON_EQ, - ACTIONS(1719), 1, - anon_sym_EQ, - ACTIONS(1088), 4, + ACTIONS(1591), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 29, + ACTIONS(1589), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -60035,156 +68629,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [43892] = 22, + anon_sym_COLON2, + sym_type_conversion, + [53615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1579), 5, 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(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1089), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(980), 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, - [43973] = 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(1603), 2, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1671), 2, + ACTIONS(1577), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(1677), 2, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, - STATE(813), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1683), 3, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(1601), 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_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, - [44040] = 11, + anon_sym_COLON2, + sym_type_conversion, + [53657] = 3, 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(1599), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1669), 2, + ACTIONS(1685), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1677), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(813), 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_LT, + anon_sym_GT, + ACTIONS(1683), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + 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, @@ -60194,36 +68707,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44099] = 8, + anon_sym_COLON2, + sym_type_conversion, + [53699] = 3, 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(813), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(1599), 4, + ACTIONS(1579), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 25, - anon_sym_RPAREN, + ACTIONS(1577), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, anon_sym_and, @@ -60239,32 +68746,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44152] = 5, + anon_sym_COLON2, + sym_type_conversion, + [53741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1627), 1, - anon_sym_COLON_EQ, - ACTIONS(1142), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1088), 4, + ACTIONS(1543), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 27, + ACTIONS(1541), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -60281,20 +68785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44199] = 3, + anon_sym_COLON2, + sym_type_conversion, + [53783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1427), 5, + ACTIONS(1551), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1425), 30, - sym__newline, - sym__string_start, + ACTIONS(1549), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -60304,6 +68807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -60320,31 +68824,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44242] = 4, + anon_sym_COLON2, + sym_type_conversion, + [53825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1170), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1173), 4, + ACTIONS(1543), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1168), 27, + ACTIONS(1541), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -60361,16 +68863,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44286] = 3, + anon_sym_COLON2, + sym_type_conversion, + [53867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 5, + ACTIONS(1575), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1503), 29, + ACTIONS(1573), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60399,17 +68903,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44328] = 3, + anon_sym_SEMI, + [53909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 5, + ACTIONS(1567), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 29, + ACTIONS(1565), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60438,17 +68942,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44370] = 3, + anon_sym_SEMI, + [53951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(265), 5, + ACTIONS(1579), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(298), 29, + ACTIONS(1577), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60477,17 +68981,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44412] = 3, + anon_sym_SEMI, + [53993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1088), 5, + ACTIONS(1689), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 29, + ACTIONS(1687), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60516,17 +69020,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44454] = 3, + anon_sym_SEMI, + [54035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 5, + ACTIONS(1272), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1577), 29, + ACTIONS(1267), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60555,24 +69059,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44496] = 4, + anon_sym_SEMI, + [54077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(613), 1, - anon_sym_COLON_EQ, - ACTIONS(265), 5, + ACTIONS(1689), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(298), 28, + ACTIONS(1687), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -60580,6 +69080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -60596,16 +69097,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44540] = 3, + anon_sym_COLON2, + sym_type_conversion, + [54119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1575), 5, + ACTIONS(1633), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1573), 29, + ACTIONS(1631), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60634,17 +69137,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44582] = 3, + anon_sym_SEMI, + [54161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1571), 5, + ACTIONS(1178), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 29, + ACTIONS(1173), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60673,132 +69176,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44624] = 22, + anon_sym_SEMI, + [54203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1583), 5, 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(1725), 1, - anon_sym_RPAREN, - STATE(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1376), 2, - sym__match_pattern, - sym_match_as_pattern, - STATE(1382), 2, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(980), 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, - [44704] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, + 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(1699), 1, - anon_sym_STAR, - ACTIONS(1701), 1, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1725), 1, - anon_sym_RBRACK, - STATE(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1206), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(980), 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, - [44782] = 3, + 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, + anon_sym_SEMI, + [54245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 5, + ACTIONS(1665), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 29, + ACTIONS(1663), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -60827,79 +69254,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44824] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 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(1727), 1, - anon_sym_RBRACK, - STATE(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1089), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(980), 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, - [44902] = 3, + anon_sym_SEMI, + [54287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 5, + ACTIONS(635), 1, + anon_sym_COLON_EQ, + ACTIONS(265), 5, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 29, - sym__newline, + ACTIONS(298), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_in, @@ -60923,26 +69295,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [44944] = 4, + [54331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1142), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1088), 4, + ACTIONS(1883), 1, + anon_sym_COLON_EQ, + ACTIONS(1178), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 27, + ACTIONS(1173), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -60964,73 +69335,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [44988] = 21, + [54375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 1, - sym__template_string_start, - ACTIONS(1695), 1, - sym_identifier, - ACTIONS(1697), 1, - anon_sym_LPAREN, - ACTIONS(1699), 1, + ACTIONS(1669), 5, anon_sym_STAR, - ACTIONS(1701), 1, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1667), 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(1703), 1, - sym_match_wildcard_pattern, - ACTIONS(1705), 1, + anon_sym_PLUS, anon_sym_LBRACK, - ACTIONS(1707), 1, - anon_sym_LBRACE, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1727), 1, - anon_sym_RPAREN, - STATE(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1089), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(980), 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, - [45066] = 3, + 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, + anon_sym_SEMI, + [54417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 5, + ACTIONS(1543), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 29, + ACTIONS(1541), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61059,138 +69412,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45108] = 21, + anon_sym_SEMI, + [54459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 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, + ACTIONS(1175), 3, anon_sym_RPAREN, - STATE(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1089), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(980), 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, - [45186] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 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_COMMA, anon_sym_RBRACK, - STATE(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1089), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(980), 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, - [45264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1497), 5, + ACTIONS(1178), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1495), 29, - sym__newline, + ACTIONS(1173), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61212,17 +69453,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45306] = 3, + [54503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 5, + ACTIONS(1551), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1495), 29, + ACTIONS(1549), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61251,17 +69491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45348] = 3, + anon_sym_SEMI, + [54545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 5, + ACTIONS(1543), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1475), 29, + ACTIONS(1541), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61290,24 +69530,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45390] = 4, + anon_sym_SEMI, + [54587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1731), 1, - anon_sym_COLON_EQ, - ACTIONS(1088), 5, + ACTIONS(1283), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 28, + ACTIONS(1278), 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_in, @@ -61331,23 +69569,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [45434] = 3, + anon_sym_SEMI, + [54629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1158), 5, + ACTIONS(1269), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1272), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1153), 29, - sym__newline, + ACTIONS(1267), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61369,17 +69610,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45476] = 3, + [54673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 5, + ACTIONS(1673), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1459), 29, + ACTIONS(1671), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61408,17 +69648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45518] = 3, + anon_sym_SEMI, + [54715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 5, + ACTIONS(1677), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1471), 29, + ACTIONS(1675), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61447,17 +69687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45560] = 3, + anon_sym_SEMI, + [54757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 5, + ACTIONS(1681), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 29, + ACTIONS(1679), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61486,17 +69726,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45602] = 3, + anon_sym_SEMI, + [54799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 5, + ACTIONS(1673), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 29, + ACTIONS(1671), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61525,20 +69765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45644] = 3, + anon_sym_SEMI, + [54841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1173), 5, + ACTIONS(1178), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1168), 29, - sym__newline, + ACTIONS(1173), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -61548,6 +69786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -61564,24 +69803,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45686] = 3, + anon_sym_COLON2, + sym_type_conversion, + [54883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 5, + ACTIONS(1280), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1283), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1451), 29, - sym__newline, + ACTIONS(1278), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_PIPE, anon_sym_DASH, @@ -61603,17 +69845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45728] = 3, + [54927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 5, + ACTIONS(265), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1507), 29, + ACTIONS(298), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61642,17 +69883,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45770] = 3, + anon_sym_SEMI, + [54969] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1583), 5, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + ACTIONS(1885), 1, + anon_sym_RPAREN, + STATE(1039), 1, + sym_string, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1277), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1142), 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, + [55047] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + ACTIONS(1885), 1, + anon_sym_RBRACK, + STATE(1039), 1, + sym_string, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1277), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1142), 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, + [55125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1637), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1581), 29, + ACTIONS(1635), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61681,17 +70036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45812] = 3, + anon_sym_SEMI, + [55167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 5, + ACTIONS(1539), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1487), 29, + ACTIONS(1537), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61720,17 +70075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45854] = 3, + anon_sym_SEMI, + [55209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 5, + ACTIONS(1535), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1585), 29, + ACTIONS(1533), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61759,17 +70114,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45896] = 3, + anon_sym_SEMI, + [55251] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + ACTIONS(1887), 1, + anon_sym_RPAREN, + STATE(1039), 1, + sym_string, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1553), 2, + sym__match_pattern, + sym_match_as_pattern, + STATE(1556), 2, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1142), 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, + [55331] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + ACTIONS(1887), 1, + anon_sym_RBRACK, + STATE(1039), 1, + sym_string, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1469), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1142), 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, + [55409] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + ACTIONS(1889), 1, + anon_sym_RPAREN, + STATE(1039), 1, + sym_string, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1277), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1142), 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, + [55487] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + ACTIONS(1889), 1, + anon_sym_RBRACK, + STATE(1039), 1, + sym_string, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1277), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1142), 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, + [55565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 5, + ACTIONS(1547), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1499), 29, + ACTIONS(1545), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61798,17 +70382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45938] = 3, + anon_sym_SEMI, + [55607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 5, + ACTIONS(1563), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 29, + ACTIONS(1561), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61837,20 +70421,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [45980] = 3, + anon_sym_SEMI, + [55649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 5, + ACTIONS(265), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1593), 29, - sym__newline, + ACTIONS(298), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -61860,6 +70442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -61876,20 +70459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [46022] = 3, + anon_sym_COLON2, + sym_type_conversion, + [55691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 5, + ACTIONS(1587), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 29, - sym__newline, + ACTIONS(1585), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -61899,6 +70481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_AT, anon_sym_not, @@ -61915,17 +70498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [46064] = 3, + anon_sym_COLON2, + sym_type_conversion, + [55733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 5, + ACTIONS(1583), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 29, + ACTIONS(1581), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61954,17 +70538,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [46106] = 3, + anon_sym_SEMI, + [55775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 5, + ACTIONS(1629), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1451), 29, + ACTIONS(1627), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -61993,57 +70577,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [46148] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1155), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1158), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1153), 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, - [46192] = 3, + anon_sym_SEMI, + [55817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 5, + ACTIONS(1587), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1443), 29, + ACTIONS(1585), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62072,17 +70616,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [46234] = 3, + anon_sym_SEMI, + [55859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 5, + ACTIONS(1579), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 29, + ACTIONS(1577), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62111,17 +70655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [46276] = 3, + anon_sym_SEMI, + [55901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 5, + ACTIONS(1571), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1455), 29, + ACTIONS(1569), 29, sym__newline, anon_sym_DOT, anon_sym_from, @@ -62150,16 +70694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - sym__semicolon, - [46318] = 3, + anon_sym_SEMI, + [55943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1595), 4, + ACTIONS(1559), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1593), 29, + ACTIONS(1557), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62189,7 +70733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46359] = 3, + [55984] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1575), 4, @@ -62227,15 +70771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46400] = 3, + [56025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(265), 4, + ACTIONS(1001), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(298), 29, + ACTIONS(999), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62265,112 +70809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46441] = 5, + [56066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(585), 1, - anon_sym_COLON_EQ, - ACTIONS(629), 1, - anon_sym_EQ, - ACTIONS(265), 4, + ACTIONS(1637), 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, - [46486] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 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(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1192), 1, - sym_match_keyword_pattern, - STATE(1200), 1, - sym_match_positional_pattern, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1373), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(980), 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, - [46565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1447), 29, + ACTIONS(1635), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62400,108 +70847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1501), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1499), 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, - [46647] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 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(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(1089), 4, - sym__match_pattern, - sym_match_as_pattern, - sym__match_maybe_star_pattern, - sym_match_star_pattern, - STATE(980), 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, - [46722] = 3, + [56107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 4, + ACTIONS(1535), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1447), 29, + ACTIONS(1533), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62531,15 +70885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46763] = 3, + [56148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1088), 4, + ACTIONS(1547), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 29, + ACTIONS(1545), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62569,72 +70923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46804] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(625), 1, - sym__string_start, - ACTIONS(627), 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(891), 1, - sym_template_string, - STATE(892), 1, - sym_string, - STATE(1213), 1, - sym_match_keyword_pattern, - STATE(1332), 1, - sym_match_positional_pattern, - STATE(1419), 1, - sym_pattern_class_name, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1014), 2, - sym__match_or_pattern, - sym_match_or_pattern, - STATE(1373), 2, - sym__match_pattern, - sym_match_as_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - STATE(980), 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, - [46883] = 3, + [56189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 4, + ACTIONS(1015), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1507), 29, + ACTIONS(1013), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62664,15 +70961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46924] = 3, + [56230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 4, + ACTIONS(1587), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1451), 29, + ACTIONS(1585), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62702,15 +70999,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [46965] = 3, + [56271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 4, + ACTIONS(1178), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1487), 29, + ACTIONS(1173), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62740,15 +71037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47006] = 3, + [56312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 4, + ACTIONS(1583), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1479), 29, + ACTIONS(1581), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62778,15 +71075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47047] = 3, + [56353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 4, + ACTIONS(1583), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1483), 29, + ACTIONS(1581), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62816,15 +71113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47088] = 3, + [56394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 4, + ACTIONS(1591), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1451), 29, + ACTIONS(1589), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62854,15 +71151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47129] = 3, + [56435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1591), 4, + ACTIONS(1579), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1589), 29, + ACTIONS(1577), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62892,15 +71189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47170] = 3, + [56476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 4, + ACTIONS(1629), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1491), 29, + ACTIONS(1627), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62930,15 +71227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47211] = 3, + [56517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 4, + ACTIONS(1685), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1495), 29, + ACTIONS(1683), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -62968,15 +71265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47252] = 3, + [56558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 4, + ACTIONS(1579), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1443), 29, + ACTIONS(1577), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63006,15 +71303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47293] = 3, + [56599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 4, + ACTIONS(1543), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1495), 29, + ACTIONS(1541), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63044,15 +71341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47334] = 3, + [56640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(863), 4, + ACTIONS(1551), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(861), 29, + ACTIONS(1549), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63082,55 +71379,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47375] = 22, + [56681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, + 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, + [56722] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(1697), 1, + ACTIONS(1853), 1, anon_sym_LPAREN, - ACTIONS(1701), 1, + ACTIONS(1861), 1, anon_sym_DASH, - ACTIONS(1703), 1, + ACTIONS(1863), 1, sym_match_wildcard_pattern, - ACTIONS(1705), 1, + ACTIONS(1865), 1, anon_sym_LBRACK, - ACTIONS(1707), 1, + ACTIONS(1867), 1, anon_sym_LBRACE, - ACTIONS(1709), 1, + ACTIONS(1869), 1, sym_integer, - ACTIONS(1711), 1, + ACTIONS(1871), 1, sym_float, - ACTIONS(1733), 1, + ACTIONS(1891), 1, sym_identifier, - ACTIONS(1739), 1, + ACTIONS(1893), 1, anon_sym_RPAREN, - STATE(891), 1, - sym_template_string, - STATE(892), 1, + STATE(1039), 1, sym_string, - STATE(1242), 1, + STATE(1040), 1, + sym_template_string, + STATE(1459), 1, sym_match_keyword_pattern, - STATE(1332), 1, + STATE(1534), 1, sym_match_positional_pattern, - STATE(1419), 1, + STATE(1680), 1, sym_pattern_class_name, - STATE(977), 2, + STATE(1140), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1014), 2, + STATE(1184), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1373), 2, + STATE(1526), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1713), 3, + ACTIONS(1873), 3, sym_true, sym_false, sym_none, - STATE(980), 8, + STATE(1142), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63139,15 +71474,15 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [47454] = 3, + [56801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1571), 4, + ACTIONS(1543), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1569), 29, + ACTIONS(1541), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63177,25 +71512,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47495] = 5, + [56842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1090), 1, - anon_sym_COLON_EQ, - ACTIONS(1719), 1, - anon_sym_EQ, - ACTIONS(1088), 4, + ACTIONS(1563), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1083), 27, + 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, @@ -63217,15 +71550,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47540] = 3, + [56883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1579), 4, + ACTIONS(1633), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1577), 29, + ACTIONS(1631), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63255,15 +71588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47581] = 3, + [56924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 4, + ACTIONS(1567), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 29, + ACTIONS(1565), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63293,15 +71626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47622] = 3, + [56965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 4, + ACTIONS(1555), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1439), 29, + ACTIONS(1553), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63331,15 +71664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47663] = 3, + [57006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1587), 4, + ACTIONS(1665), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1585), 29, + ACTIONS(1663), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63369,15 +71702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47704] = 3, + [57047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 4, + ACTIONS(1669), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1475), 29, + ACTIONS(1667), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63407,15 +71740,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47745] = 3, + [57088] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1583), 4, + ACTIONS(585), 1, + anon_sym_COLON_EQ, + ACTIONS(651), 1, + anon_sym_EQ, + ACTIONS(265), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1581), 29, + 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, + [57133] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1219), 1, + anon_sym_COLON_EQ, + ACTIONS(1875), 1, + anon_sym_EQ, + ACTIONS(1178), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 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, + [57178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1673), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1671), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63445,15 +71858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47786] = 3, + [57219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 4, + ACTIONS(1571), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1467), 29, + ACTIONS(1569), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63483,15 +71896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47827] = 3, + [57260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 4, + ACTIONS(1677), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1463), 29, + ACTIONS(1675), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63521,15 +71934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47868] = 3, + [57301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 4, + ACTIONS(1689), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1459), 29, + ACTIONS(1687), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63559,15 +71972,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47909] = 3, + [57342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1681), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1679), 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, + [57383] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1851), 1, + sym_identifier, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1855), 1, + anon_sym_STAR, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + STATE(1039), 1, + sym_string, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1277), 4, + sym__match_pattern, + sym_match_as_pattern, + sym__match_maybe_star_pattern, + sym_match_star_pattern, + STATE(1142), 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, + [57458] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1853), 1, + anon_sym_LPAREN, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, + anon_sym_LBRACK, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + ACTIONS(1891), 1, + sym_identifier, + ACTIONS(1895), 1, + anon_sym_RPAREN, + STATE(1039), 1, + sym_string, + STATE(1040), 1, + sym_template_string, + STATE(1438), 1, + sym_match_keyword_pattern, + STATE(1534), 1, + sym_match_positional_pattern, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1526), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1142), 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, + [57537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 4, + ACTIONS(1673), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1455), 29, + ACTIONS(1671), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63597,91 +72160,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [47950] = 3, + [57578] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(867), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(865), 29, - anon_sym_DOT, + ACTIONS(647), 1, + sym__string_start, + ACTIONS(649), 1, + sym__template_string_start, + ACTIONS(1853), 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, - anon_sym_PIPE, + ACTIONS(1861), 1, anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(1863), 1, + sym_match_wildcard_pattern, + ACTIONS(1865), 1, 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, - [47991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1473), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1471), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1867), 1, + anon_sym_LBRACE, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + ACTIONS(1891), 1, + sym_identifier, + ACTIONS(1897), 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, - 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, - [48032] = 3, + STATE(1039), 1, + sym_string, + STATE(1040), 1, + sym_template_string, + STATE(1381), 1, + sym_match_keyword_pattern, + STATE(1466), 1, + sym_match_positional_pattern, + STATE(1680), 1, + sym_pattern_class_name, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1184), 2, + sym__match_or_pattern, + sym_match_or_pattern, + STATE(1526), 2, + sym__match_pattern, + sym_match_as_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + STATE(1142), 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, + [57657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 4, + ACTIONS(1539), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1503), 29, + ACTIONS(1537), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -63711,51 +72255,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, anon_sym_is, - [48073] = 20, + [57698] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(1695), 1, + ACTIONS(1851), 1, sym_identifier, - ACTIONS(1697), 1, + ACTIONS(1853), 1, anon_sym_LPAREN, - ACTIONS(1701), 1, + ACTIONS(1861), 1, anon_sym_DASH, - ACTIONS(1703), 1, + ACTIONS(1863), 1, sym_match_wildcard_pattern, - ACTIONS(1705), 1, + ACTIONS(1865), 1, anon_sym_LBRACK, - ACTIONS(1707), 1, + ACTIONS(1867), 1, anon_sym_LBRACE, - ACTIONS(1709), 1, + ACTIONS(1869), 1, sym_integer, - ACTIONS(1711), 1, + ACTIONS(1871), 1, sym_float, - STATE(891), 1, - sym_template_string, - STATE(892), 1, + STATE(1039), 1, sym_string, - STATE(1332), 1, + STATE(1040), 1, + sym_template_string, + STATE(1534), 1, sym_match_positional_pattern, - STATE(1419), 1, + STATE(1680), 1, sym_pattern_class_name, - STATE(977), 2, + STATE(1140), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1014), 2, + STATE(1184), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1373), 2, + STATE(1526), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1713), 3, + ACTIONS(1873), 3, sym_true, sym_false, sym_none, - STATE(980), 8, + STATE(1142), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63764,49 +72308,49 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [48146] = 19, + [57771] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(1695), 1, + ACTIONS(1851), 1, sym_identifier, - ACTIONS(1697), 1, + ACTIONS(1853), 1, anon_sym_LPAREN, - ACTIONS(1701), 1, + ACTIONS(1861), 1, anon_sym_DASH, - ACTIONS(1703), 1, + ACTIONS(1863), 1, sym_match_wildcard_pattern, - ACTIONS(1705), 1, + ACTIONS(1865), 1, anon_sym_LBRACK, - ACTIONS(1707), 1, + ACTIONS(1867), 1, anon_sym_LBRACE, - ACTIONS(1709), 1, + ACTIONS(1869), 1, sym_integer, - ACTIONS(1711), 1, + ACTIONS(1871), 1, sym_float, - STATE(891), 1, - sym_template_string, - STATE(892), 1, + STATE(1039), 1, sym_string, - STATE(1419), 1, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, sym_pattern_class_name, - STATE(977), 2, + STATE(1140), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1014), 2, + STATE(1184), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1384), 2, + STATE(1542), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1713), 3, + ACTIONS(1873), 3, sym_true, sym_false, sym_none, - STATE(980), 8, + STATE(1142), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63815,49 +72359,49 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [48216] = 19, + [57841] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(1695), 1, + ACTIONS(1851), 1, sym_identifier, - ACTIONS(1697), 1, + ACTIONS(1853), 1, anon_sym_LPAREN, - ACTIONS(1701), 1, + ACTIONS(1861), 1, anon_sym_DASH, - ACTIONS(1703), 1, + ACTIONS(1863), 1, sym_match_wildcard_pattern, - ACTIONS(1705), 1, + ACTIONS(1865), 1, anon_sym_LBRACK, - ACTIONS(1707), 1, + ACTIONS(1867), 1, anon_sym_LBRACE, - ACTIONS(1709), 1, + ACTIONS(1869), 1, sym_integer, - ACTIONS(1711), 1, + ACTIONS(1871), 1, sym_float, - STATE(891), 1, - sym_template_string, - STATE(892), 1, + STATE(1039), 1, sym_string, - STATE(1419), 1, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, sym_pattern_class_name, - STATE(977), 2, + STATE(1140), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1014), 2, + STATE(1184), 2, sym__match_or_pattern, sym_match_or_pattern, - STATE(1326), 2, + STATE(1575), 2, sym__match_pattern, sym_match_as_pattern, - ACTIONS(1713), 3, + ACTIONS(1873), 3, sym_true, sym_false, sym_none, - STATE(980), 8, + STATE(1142), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63866,43 +72410,43 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [48286] = 17, + [57911] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(1695), 1, + ACTIONS(1851), 1, sym_identifier, - ACTIONS(1697), 1, + ACTIONS(1853), 1, anon_sym_LPAREN, - ACTIONS(1701), 1, + ACTIONS(1861), 1, anon_sym_DASH, - ACTIONS(1705), 1, + ACTIONS(1865), 1, anon_sym_LBRACK, - ACTIONS(1707), 1, + ACTIONS(1867), 1, anon_sym_LBRACE, - ACTIONS(1709), 1, + ACTIONS(1869), 1, sym_integer, - ACTIONS(1711), 1, + ACTIONS(1871), 1, sym_float, - ACTIONS(1741), 1, + ACTIONS(1899), 1, sym_match_wildcard_pattern, - STATE(891), 1, - sym_template_string, - STATE(892), 1, + STATE(1039), 1, sym_string, - STATE(1419), 1, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, sym_pattern_class_name, - STATE(977), 2, + STATE(1140), 2, sym_concatenated_string, sym_concatenated_template_string, - ACTIONS(1713), 3, + ACTIONS(1873), 3, sym_true, sym_false, sym_none, - STATE(956), 8, + STATE(1116), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63911,43 +72455,43 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [48348] = 17, + [57973] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, + ACTIONS(647), 1, sym__string_start, - ACTIONS(627), 1, + ACTIONS(649), 1, sym__template_string_start, - ACTIONS(1695), 1, + ACTIONS(1851), 1, sym_identifier, - ACTIONS(1697), 1, + ACTIONS(1853), 1, anon_sym_LPAREN, - ACTIONS(1701), 1, + ACTIONS(1861), 1, anon_sym_DASH, - ACTIONS(1705), 1, + ACTIONS(1865), 1, anon_sym_LBRACK, - ACTIONS(1707), 1, + ACTIONS(1867), 1, anon_sym_LBRACE, - ACTIONS(1709), 1, + ACTIONS(1869), 1, sym_integer, - ACTIONS(1711), 1, + ACTIONS(1871), 1, sym_float, - ACTIONS(1743), 1, + ACTIONS(1901), 1, sym_match_wildcard_pattern, - STATE(891), 1, - sym_template_string, - STATE(892), 1, + STATE(1039), 1, sym_string, - STATE(1419), 1, + STATE(1040), 1, + sym_template_string, + STATE(1680), 1, sym_pattern_class_name, - STATE(977), 2, + STATE(1140), 2, sym_concatenated_string, sym_concatenated_template_string, - ACTIONS(1713), 3, + ACTIONS(1873), 3, sym_true, sym_false, sym_none, - STATE(939), 8, + STATE(1091), 8, sym__closed_pattern, sym_match_literal_pattern, sym_match_capture_pattern, @@ -63956,28 +72500,28 @@ static const uint16_t ts_small_parse_table[] = { sym_match_sequence_pattern, sym_match_mapping_pattern, sym_match_class_pattern, - [48410] = 8, + [58035] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(1908), 1, anon_sym_EQ, - ACTIONS(1752), 1, + ACTIONS(1910), 1, anon_sym_not, - ACTIONS(1758), 1, + ACTIONS(1916), 1, anon_sym_is, - STATE(844), 1, + STATE(989), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1755), 2, + ACTIONS(1913), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1747), 6, + ACTIONS(1905), 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(1745), 10, + ACTIONS(1903), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -63987,61 +72531,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [48450] = 8, + [58074] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, + ACTIONS(1908), 1, + anon_sym_as, + ACTIONS(1922), 1, anon_sym_not, - ACTIONS(1567), 1, + ACTIONS(1928), 1, anon_sym_is, - ACTIONS(1763), 1, - anon_sym_as, - STATE(847), 1, + STATE(990), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1565), 2, + ACTIONS(1925), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1549), 6, + ACTIONS(1919), 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), 10, + ACTIONS(1903), 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_and, anon_sym_or, - [48490] = 8, + [58113] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1535), 1, + ACTIONS(1617), 1, anon_sym_not, - ACTIONS(1543), 1, + ACTIONS(1625), 1, anon_sym_is, - ACTIONS(1763), 1, + ACTIONS(1933), 1, anon_sym_EQ, - STATE(844), 1, + STATE(989), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1541), 2, + ACTIONS(1623), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1521), 6, + ACTIONS(1603), 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), 10, + ACTIONS(1931), 9, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64051,47 +72593,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [48530] = 8, + [58152] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, - anon_sym_as, - ACTIONS(1768), 1, + ACTIONS(1653), 1, anon_sym_not, - ACTIONS(1774), 1, + ACTIONS(1661), 1, anon_sym_is, - STATE(847), 1, + ACTIONS(1933), 1, + anon_sym_as, + STATE(990), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1771), 2, + ACTIONS(1659), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1765), 6, + ACTIONS(1643), 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(1745), 10, + ACTIONS(1931), 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_and, anon_sym_or, - [48570] = 4, + [58191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1779), 1, + ACTIONS(1937), 1, anon_sym_COMMA, - STATE(848), 1, + STATE(993), 1, aux_sym__patterns_repeat1, - ACTIONS(1777), 18, + ACTIONS(1935), 18, anon_sym_RPAREN, anon_sym_COLON, anon_sym_in, @@ -64110,124 +72650,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48600] = 2, + [58221] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1782), 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, - [48625] = 8, + ACTIONS(310), 1, + sym__string_start, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(1861), 1, + anon_sym_DASH, + ACTIONS(1869), 1, + sym_integer, + ACTIONS(1871), 1, + sym_float, + ACTIONS(1940), 1, + sym_identifier, + ACTIONS(1942), 1, + anon_sym_RBRACE, + ACTIONS(1944), 1, + anon_sym_STAR_STAR, + STATE(1317), 1, + sym_string, + STATE(1318), 1, + sym_template_string, + STATE(1477), 1, + sym_match_key_value_pattern, + STATE(1564), 1, + sym_match_double_star_pattern, + STATE(1140), 2, + sym_concatenated_string, + sym_concatenated_template_string, + STATE(1722), 2, + sym_match_literal_pattern, + sym_match_value_pattern, + ACTIONS(1873), 3, + sym_true, + sym_false, + sym_none, + [58274] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1949), 1, anon_sym_not, - ACTIONS(1660), 1, + ACTIONS(1955), 1, anon_sym_is, - ACTIONS(1763), 1, - anon_sym_EQ, - STATE(856), 1, + STATE(995), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1658), 2, + ACTIONS(1952), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1640), 6, + ACTIONS(1946), 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, + ACTIONS(1903), 7, anon_sym_COMMA, anon_sym_if, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - sym__semicolon, - [48662] = 16, + anon_sym_COLON2, + sym_type_conversion, + [58311] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(310), 1, sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(1701), 1, + ACTIONS(1861), 1, anon_sym_DASH, - ACTIONS(1709), 1, + ACTIONS(1869), 1, sym_integer, - ACTIONS(1711), 1, + ACTIONS(1871), 1, sym_float, - ACTIONS(1784), 1, + ACTIONS(1940), 1, sym_identifier, - ACTIONS(1786), 1, - anon_sym_RBRACE, - ACTIONS(1788), 1, + ACTIONS(1944), 1, anon_sym_STAR_STAR, - STATE(1119), 1, - sym_template_string, - STATE(1120), 1, + ACTIONS(1958), 1, + anon_sym_RBRACE, + STATE(1317), 1, sym_string, - STATE(1273), 1, - sym_match_key_value_pattern, - STATE(1337), 1, + STATE(1318), 1, + sym_template_string, + STATE(1569), 1, sym_match_double_star_pattern, - STATE(977), 2, + STATE(1573), 1, + sym_match_key_value_pattern, + STATE(1140), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1471), 2, + STATE(1722), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1713), 3, + ACTIONS(1873), 3, sym_true, sym_false, sym_none, - [48715] = 4, + [58364] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(265), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(825), 3, - anon_sym_RPAREN, + ACTIONS(1771), 1, + anon_sym_not, + ACTIONS(1779), 1, + anon_sym_is, + STATE(1007), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1777), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1761), 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(1931), 8, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - ACTIONS(298), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [48744] = 2, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [58399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1149), 19, + ACTIONS(1960), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64247,10 +72804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48769] = 2, + [58424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1790), 19, + ACTIONS(1184), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64270,76 +72827,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48794] = 16, + [58449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(310), 1, - sym__string_start, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(1701), 1, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1962), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1173), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(1709), 1, - sym_integer, - ACTIONS(1711), 1, - sym_float, - ACTIONS(1784), 1, - sym_identifier, - ACTIONS(1788), 1, + anon_sym_PLUS, + anon_sym_LBRACK, anon_sym_STAR_STAR, - ACTIONS(1792), 1, - anon_sym_RBRACE, - STATE(1119), 1, - sym_template_string, - STATE(1120), 1, - sym_string, - STATE(1339), 1, - sym_match_double_star_pattern, - STATE(1344), 1, - sym_match_key_value_pattern, - STATE(977), 2, - sym_concatenated_string, - sym_concatenated_template_string, - STATE(1471), 2, - sym_match_literal_pattern, - sym_match_value_pattern, - ACTIONS(1713), 3, - sym_true, - sym_false, - sym_none, - [48847] = 8, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [58478] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(265), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(911), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(298), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [58507] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(1807), 1, + anon_sym_not, + ACTIONS(1815), 1, + anon_sym_is, + ACTIONS(1933), 1, anon_sym_EQ, - ACTIONS(1797), 1, + STATE(1003), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1813), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1795), 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(1931), 7, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [58544] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1967), 1, anon_sym_not, - ACTIONS(1803), 1, + ACTIONS(1973), 1, anon_sym_is, - STATE(856), 1, + STATE(1003), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1800), 2, + ACTIONS(1970), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1794), 6, + ACTIONS(1964), 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(1745), 7, + ACTIONS(1903), 7, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_and, anon_sym_or, - sym__semicolon, - [48884] = 2, + anon_sym_SEMI, + [58581] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1976), 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, + [58606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1806), 19, + ACTIONS(1978), 19, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, @@ -64359,88 +72981,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [48909] = 16, + [58631] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1744), 1, + anon_sym_not, + ACTIONS(1752), 1, + anon_sym_is, + ACTIONS(1933), 1, + anon_sym_EQ, + STATE(995), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1750), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1732), 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(1931), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_COLON2, + sym_type_conversion, + [58668] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1983), 1, + anon_sym_not, + ACTIONS(1989), 1, + anon_sym_is, + STATE(1007), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1986), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1980), 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(1903), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + [58703] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(310), 1, sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(1701), 1, + ACTIONS(1861), 1, anon_sym_DASH, - ACTIONS(1709), 1, + ACTIONS(1869), 1, sym_integer, - ACTIONS(1711), 1, + ACTIONS(1871), 1, sym_float, - ACTIONS(1784), 1, + ACTIONS(1940), 1, sym_identifier, - ACTIONS(1788), 1, + ACTIONS(1944), 1, anon_sym_STAR_STAR, - ACTIONS(1808), 1, + ACTIONS(1992), 1, anon_sym_RBRACE, - STATE(1119), 1, - sym_template_string, - STATE(1120), 1, + STATE(1317), 1, sym_string, - STATE(1313), 1, + STATE(1318), 1, + sym_template_string, + STATE(1544), 1, sym_match_double_star_pattern, - STATE(1344), 1, + STATE(1573), 1, sym_match_key_value_pattern, - STATE(977), 2, + STATE(1140), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1471), 2, + STATE(1722), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1713), 3, + ACTIONS(1873), 3, sym_true, sym_false, sym_none, - [48962] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1810), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1083), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [48991] = 7, + [58756] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(1839), 1, anon_sym_not, - ACTIONS(1821), 1, + ACTIONS(1847), 1, anon_sym_is, - STATE(860), 1, + STATE(1011), 1, aux_sym_comparison_operator_repeat1, - ACTIONS(1818), 2, + ACTIONS(1845), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1812), 6, + ACTIONS(1827), 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(1745), 7, + ACTIONS(1931), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -64448,14 +73102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [49025] = 4, + [58790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1824), 1, + ACTIONS(1994), 1, anon_sym_COMMA, - STATE(848), 1, + STATE(993), 1, aux_sym__patterns_repeat1, - ACTIONS(1826), 16, + ACTIONS(1996), 16, anon_sym_COLON, anon_sym_in, anon_sym_EQ, @@ -64472,368 +73126,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [49053] = 13, + [58818] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(2001), 1, + anon_sym_not, + ACTIONS(2007), 1, + anon_sym_is, + STATE(1011), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(2004), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1998), 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(1903), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [58852] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1593), 1, anon_sym_DOT, - ACTIONS(1513), 1, + ACTIONS(1595), 1, anon_sym_LPAREN, - ACTIONS(1523), 1, + ACTIONS(1605), 1, anon_sym_PIPE, - ACTIONS(1527), 1, + ACTIONS(1609), 1, anon_sym_LBRACK, - ACTIONS(1529), 1, + ACTIONS(1611), 1, anon_sym_STAR_STAR, - ACTIONS(1537), 1, + ACTIONS(1619), 1, anon_sym_AMP, - ACTIONS(1539), 1, + ACTIONS(1621), 1, anon_sym_CARET, - ACTIONS(1517), 2, + ACTIONS(1599), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1519), 2, + ACTIONS(1601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1525), 2, + ACTIONS(1607), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(642), 2, + STATE(733), 2, sym_argument_list, sym_generator_expression, - ACTIONS(1533), 3, + ACTIONS(1615), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [49099] = 7, + [58898] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1685), 1, - anon_sym_not, - ACTIONS(1693), 1, - anon_sym_is, - STATE(860), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(1691), 2, - anon_sym_LT, - anon_sym_GT, - 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(1761), 7, - anon_sym_RPAREN, + ACTIONS(2010), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(2012), 1, anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [49133] = 12, + ACTIONS(2014), 1, + anon_sym_EQ, + STATE(1010), 1, + aux_sym__patterns_repeat1, + ACTIONS(2016), 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, + [58929] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(2018), 1, sym_identifier, - ACTIONS(1830), 1, + ACTIONS(2020), 1, anon_sym_LPAREN, - ACTIONS(1832), 1, + ACTIONS(2022), 1, anon_sym_STAR, - ACTIONS(1834), 1, + ACTIONS(2024), 1, anon_sym_COLON, - ACTIONS(1836), 1, + ACTIONS(2026), 1, anon_sym_STAR_STAR, - ACTIONS(1838), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - STATE(1276), 1, + STATE(1385), 1, sym_parameter, - STATE(1448), 1, + STATE(1593), 1, sym_lambda_parameters, - STATE(1474), 1, + STATE(1598), 1, sym__parameters, - STATE(1331), 2, + STATE(1520), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1278), 6, + STATE(1394), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49176] = 12, + [58972] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(2018), 1, sym_identifier, - ACTIONS(1830), 1, + ACTIONS(2020), 1, anon_sym_LPAREN, - ACTIONS(1832), 1, + ACTIONS(2022), 1, anon_sym_STAR, - ACTIONS(1836), 1, + ACTIONS(2026), 1, anon_sym_STAR_STAR, - ACTIONS(1838), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - ACTIONS(1840), 1, + ACTIONS(2030), 1, anon_sym_COLON, - STATE(1276), 1, + STATE(1385), 1, sym_parameter, - STATE(1435), 1, - sym_lambda_parameters, - STATE(1474), 1, + STATE(1598), 1, sym__parameters, - STATE(1331), 2, + STATE(1690), 1, + sym_lambda_parameters, + STATE(1520), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1278), 6, + STATE(1394), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49219] = 12, + [59015] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(2018), 1, sym_identifier, - ACTIONS(1830), 1, + ACTIONS(2020), 1, anon_sym_LPAREN, - ACTIONS(1832), 1, + ACTIONS(2022), 1, anon_sym_STAR, - ACTIONS(1836), 1, + ACTIONS(2026), 1, anon_sym_STAR_STAR, - ACTIONS(1838), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - ACTIONS(1842), 1, + ACTIONS(2032), 1, anon_sym_COLON, - STATE(1276), 1, + STATE(1385), 1, sym_parameter, - STATE(1423), 1, - sym_lambda_parameters, - STATE(1474), 1, + STATE(1598), 1, sym__parameters, - STATE(1331), 2, + STATE(1668), 1, + sym_lambda_parameters, + STATE(1520), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1278), 6, + STATE(1394), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49262] = 6, + [59058] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 1, - anon_sym_COMMA, - ACTIONS(1846), 1, + ACTIONS(2018), 1, + sym_identifier, + ACTIONS(2020), 1, + anon_sym_LPAREN, + ACTIONS(2022), 1, + anon_sym_STAR, + ACTIONS(2026), 1, + anon_sym_STAR_STAR, + ACTIONS(2028), 1, + anon_sym_SLASH, + ACTIONS(2034), 1, anon_sym_COLON, - ACTIONS(1848), 1, - anon_sym_EQ, - STATE(861), 1, - aux_sym__patterns_repeat1, - ACTIONS(1850), 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, - [49293] = 12, + STATE(1385), 1, + sym_parameter, + STATE(1598), 1, + sym__parameters, + STATE(1604), 1, + sym_lambda_parameters, + STATE(1520), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1394), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [59101] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(2018), 1, sym_identifier, - ACTIONS(1830), 1, + ACTIONS(2020), 1, anon_sym_LPAREN, - ACTIONS(1832), 1, + ACTIONS(2022), 1, anon_sym_STAR, - ACTIONS(1836), 1, + ACTIONS(2026), 1, anon_sym_STAR_STAR, - ACTIONS(1838), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - ACTIONS(1852), 1, + ACTIONS(2036), 1, anon_sym_COLON, - STATE(1276), 1, + STATE(1385), 1, sym_parameter, - STATE(1397), 1, - sym_lambda_parameters, - STATE(1474), 1, + STATE(1598), 1, sym__parameters, - STATE(1331), 2, + STATE(1673), 1, + sym_lambda_parameters, + STATE(1520), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1278), 6, + STATE(1394), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49336] = 12, + [59144] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(2018), 1, sym_identifier, - ACTIONS(1830), 1, + ACTIONS(2020), 1, anon_sym_LPAREN, - ACTIONS(1832), 1, + ACTIONS(2022), 1, anon_sym_STAR, - ACTIONS(1836), 1, + ACTIONS(2026), 1, anon_sym_STAR_STAR, - ACTIONS(1838), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - ACTIONS(1854), 1, + ACTIONS(2038), 1, anon_sym_COLON, - STATE(1276), 1, + STATE(1385), 1, sym_parameter, - STATE(1472), 1, + STATE(1598), 1, + sym__parameters, + STATE(1682), 1, sym_lambda_parameters, - STATE(1474), 1, + STATE(1520), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1394), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [59187] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2018), 1, + sym_identifier, + ACTIONS(2020), 1, + anon_sym_LPAREN, + ACTIONS(2022), 1, + anon_sym_STAR, + ACTIONS(2026), 1, + anon_sym_STAR_STAR, + ACTIONS(2028), 1, + anon_sym_SLASH, + ACTIONS(2040), 1, + anon_sym_COLON, + STATE(1385), 1, + sym_parameter, + STATE(1598), 1, sym__parameters, - STATE(1331), 2, + STATE(1711), 1, + sym_lambda_parameters, + STATE(1520), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1278), 6, + STATE(1394), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49379] = 13, + [59230] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(310), 1, sym__string_start, ACTIONS(312), 1, sym__template_string_start, - ACTIONS(1701), 1, + ACTIONS(1861), 1, anon_sym_DASH, - ACTIONS(1709), 1, + ACTIONS(1869), 1, sym_integer, - ACTIONS(1711), 1, + ACTIONS(1871), 1, sym_float, - ACTIONS(1784), 1, + ACTIONS(1940), 1, sym_identifier, - STATE(1119), 1, - sym_template_string, - STATE(1120), 1, + STATE(1317), 1, sym_string, - STATE(1344), 1, + STATE(1318), 1, + sym_template_string, + STATE(1573), 1, sym_match_key_value_pattern, - STATE(977), 2, + STATE(1140), 2, sym_concatenated_string, sym_concatenated_template_string, - STATE(1471), 2, + STATE(1722), 2, sym_match_literal_pattern, sym_match_value_pattern, - ACTIONS(1713), 3, + ACTIONS(1873), 3, sym_true, sym_false, sym_none, - [49423] = 11, + [59274] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(2020), 1, anon_sym_LPAREN, - ACTIONS(1832), 1, + ACTIONS(2022), 1, anon_sym_STAR, - ACTIONS(1836), 1, + ACTIONS(2026), 1, anon_sym_STAR_STAR, - ACTIONS(1838), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - ACTIONS(1856), 1, + ACTIONS(2042), 1, sym_identifier, - ACTIONS(1858), 1, + ACTIONS(2044), 1, anon_sym_RPAREN, - STATE(1229), 1, + STATE(1428), 1, sym_parameter, - STATE(1473), 1, + STATE(1684), 1, sym__parameters, - STATE(1222), 2, + STATE(1442), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1278), 6, + STATE(1394), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49463] = 10, + [59314] = 10, ACTIONS(3), 1, sym_comment, - 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, - ACTIONS(1856), 1, + ACTIONS(2018), 1, sym_identifier, - ACTIONS(1860), 1, - anon_sym_RPAREN, - STATE(1288), 1, - sym_parameter, - STATE(1222), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(1278), 6, - sym_tuple_pattern, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [49500] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1830), 1, + ACTIONS(2020), 1, anon_sym_LPAREN, - ACTIONS(1832), 1, + ACTIONS(2022), 1, anon_sym_STAR, - ACTIONS(1836), 1, + ACTIONS(2026), 1, anon_sym_STAR_STAR, - ACTIONS(1838), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - ACTIONS(1856), 1, - sym_identifier, - ACTIONS(1862), 1, - anon_sym_RPAREN, - STATE(1288), 1, + ACTIONS(2046), 1, + anon_sym_COLON, + STATE(1444), 1, sym_parameter, - STATE(1222), 2, + STATE(1520), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1278), 6, + STATE(1394), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49537] = 4, + [59351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1846), 1, + ACTIONS(2012), 1, anon_sym_COLON, - ACTIONS(1848), 1, + ACTIONS(2014), 1, anon_sym_EQ, - ACTIONS(1850), 13, + ACTIONS(2016), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64847,116 +73536,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [49562] = 10, + [59376] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, + ACTIONS(2018), 1, sym_identifier, - ACTIONS(1830), 1, + ACTIONS(2020), 1, anon_sym_LPAREN, - ACTIONS(1832), 1, + ACTIONS(2022), 1, anon_sym_STAR, - ACTIONS(1836), 1, + ACTIONS(2026), 1, anon_sym_STAR_STAR, - ACTIONS(1838), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - ACTIONS(1862), 1, + ACTIONS(2048), 1, anon_sym_COLON, - STATE(1288), 1, + STATE(1444), 1, sym_parameter, - STATE(1331), 2, + STATE(1520), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1278), 6, + STATE(1394), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49599] = 10, + [59413] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, - sym_identifier, - ACTIONS(1830), 1, + ACTIONS(2020), 1, anon_sym_LPAREN, - ACTIONS(1832), 1, + ACTIONS(2022), 1, anon_sym_STAR, - ACTIONS(1836), 1, + ACTIONS(2026), 1, anon_sym_STAR_STAR, - ACTIONS(1838), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - ACTIONS(1860), 1, - anon_sym_COLON, - STATE(1288), 1, + ACTIONS(2042), 1, + sym_identifier, + ACTIONS(2048), 1, + anon_sym_RPAREN, + STATE(1444), 1, sym_parameter, - STATE(1331), 2, + STATE(1442), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1278), 6, + STATE(1394), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49636] = 9, + [59450] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, - sym_identifier, - ACTIONS(1830), 1, + ACTIONS(2020), 1, anon_sym_LPAREN, - ACTIONS(1832), 1, + ACTIONS(2022), 1, anon_sym_STAR, - ACTIONS(1836), 1, + ACTIONS(2026), 1, anon_sym_STAR_STAR, - ACTIONS(1838), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - STATE(1288), 1, + ACTIONS(2042), 1, + sym_identifier, + ACTIONS(2046), 1, + anon_sym_RPAREN, + STATE(1444), 1, sym_parameter, - STATE(1331), 2, + STATE(1442), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1278), 6, + STATE(1394), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49670] = 9, + [59487] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1830), 1, + ACTIONS(2020), 1, anon_sym_LPAREN, - ACTIONS(1832), 1, + ACTIONS(2022), 1, anon_sym_STAR, - ACTIONS(1836), 1, + ACTIONS(2026), 1, anon_sym_STAR_STAR, - ACTIONS(1838), 1, + ACTIONS(2028), 1, anon_sym_SLASH, - ACTIONS(1856), 1, + ACTIONS(2042), 1, sym_identifier, - STATE(1288), 1, + STATE(1444), 1, + sym_parameter, + STATE(1442), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1394), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [59521] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2018), 1, + sym_identifier, + ACTIONS(2020), 1, + anon_sym_LPAREN, + ACTIONS(2022), 1, + anon_sym_STAR, + ACTIONS(2026), 1, + anon_sym_STAR_STAR, + ACTIONS(2028), 1, + anon_sym_SLASH, + STATE(1444), 1, sym_parameter, - STATE(1222), 2, + STATE(1520), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(1278), 6, + STATE(1394), 6, sym_tuple_pattern, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [49704] = 3, + [59555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1866), 1, + ACTIONS(2052), 1, anon_sym_as, - ACTIONS(1864), 13, + ACTIONS(2050), 12, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64969,13 +73685,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_and, anon_sym_or, - sym_type_conversion, - [49726] = 3, + [59576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1531), 1, + ACTIONS(1613), 1, anon_sym_as, - ACTIONS(1515), 13, + ACTIONS(1597), 12, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -64988,15 +73703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_and, anon_sym_or, - sym_type_conversion, - [49748] = 4, + [59597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1870), 1, + ACTIONS(2056), 1, anon_sym_DOT, - STATE(881), 1, + STATE(1032), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1868), 10, + ACTIONS(2054), 10, anon_sym_import, anon_sym_LPAREN, anon_sym_RPAREN, @@ -65007,16 +73721,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49770] = 5, + [59619] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2067), 1, + sym__string_end, + STATE(1052), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [59650] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, + anon_sym_COMMA, + ACTIONS(2071), 1, + anon_sym_if, + ACTIONS(2073), 1, + anon_sym_COLON, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2079), 1, + anon_sym_RBRACE, + ACTIONS(2081), 1, + anon_sym_and, + ACTIONS(2083), 1, + anon_sym_or, + STATE(1100), 1, + sym_for_in_clause, + STATE(1270), 1, + aux_sym__collection_elements_repeat1, + STATE(1627), 1, + sym__comprehension_clauses, + [59687] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2085), 1, + sym__string_end, + STATE(1043), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [59718] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2087), 1, + sym__string_end, + STATE(1052), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [59749] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2089), 1, + sym__string_end, + STATE(1036), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [59780] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, + ACTIONS(2091), 1, anon_sym_DOT, - ACTIONS(1875), 1, + ACTIONS(2093), 1, anon_sym_LPAREN, - STATE(902), 1, + STATE(1042), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(1877), 8, + ACTIONS(2095), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65025,365 +73852,689 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49793] = 4, + [59803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1879), 9, + ACTIONS(647), 1, + sym__string_start, + STATE(744), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2097), 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, - [49814] = 5, + [59824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1885), 1, - anon_sym_as, - ACTIONS(1887), 1, - anon_sym_and, - ACTIONS(1889), 1, - anon_sym_or, - ACTIONS(1879), 8, + ACTIONS(649), 1, + sym__template_string_start, + STATE(745), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + ACTIONS(2097), 8, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [49837] = 7, + [59845] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2099), 1, + anon_sym_RPAREN, + ACTIONS(2101), 1, + anon_sym_COMMA, + ACTIONS(2104), 1, + anon_sym_as, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1893), 1, + STATE(1100), 1, + sym_for_in_clause, + STATE(1270), 1, + aux_sym__collection_elements_repeat1, + STATE(1706), 1, + sym__comprehension_clauses, + [59882] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym_DOT, + ACTIONS(2112), 1, + anon_sym_LPAREN, + STATE(1032), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2114), 8, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1895), 1, + anon_sym_as, anon_sym_if, - STATE(982), 1, - aux_sym_expression_list_repeat1, - ACTIONS(1891), 6, - anon_sym_RPAREN, anon_sym_COLON, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49864] = 12, + [59905] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2116), 1, + sym__string_end, + STATE(1052), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [59936] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2118), 1, + sym__string_end, + STATE(1047), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [59967] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2120), 1, + sym__string_end, + STATE(1048), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [59998] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2069), 1, + anon_sym_COMMA, + ACTIONS(2071), 1, + anon_sym_if, + ACTIONS(2073), 1, + anon_sym_COLON, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2079), 1, + anon_sym_RBRACE, + ACTIONS(2081), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2083), 1, anon_sym_or, - ACTIONS(1897), 1, + STATE(1100), 1, + sym_for_in_clause, + STATE(1270), 1, + aux_sym__collection_elements_repeat1, + STATE(1645), 1, + sym__comprehension_clauses, + [60035] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2122), 1, + sym__string_end, + STATE(1052), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60066] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2124), 1, + sym__string_end, + STATE(1052), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60097] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 11, + anon_sym_import, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RBRACE, + [60114] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2126), 1, + sym__string_end, + STATE(1053), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60145] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2128), 1, + sym__string_end, + STATE(1054), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60176] = 9, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_LBRACE2, + ACTIONS(2136), 1, + anon_sym_BSLASH, + ACTIONS(2139), 1, + sym__string_end, + STATE(1052), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2133), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60207] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2141), 1, + sym__string_end, + STATE(1052), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60238] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2143), 1, + sym__string_end, + STATE(1052), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60269] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2145), 1, + sym__string_end, + STATE(1057), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60300] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2147), 1, + sym__string_end, + STATE(1058), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60331] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2149), 1, + sym__string_end, + STATE(1052), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60362] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2151), 1, + sym__string_end, + STATE(1052), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60393] = 9, + ACTIONS(2059), 1, + anon_sym_LBRACE2, + ACTIONS(2063), 1, + anon_sym_BSLASH, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2153), 1, + sym__string_end, + STATE(1033), 1, + aux_sym_string_repeat1, + STATE(1245), 1, + sym_interpolation, + STATE(1252), 1, + sym_string_content, + STATE(1147), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2061), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [60424] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, anon_sym_COMMA, - ACTIONS(1899), 1, + ACTIONS(2071), 1, anon_sym_if, - ACTIONS(1901), 1, + ACTIONS(2073), 1, anon_sym_COLON, - ACTIONS(1903), 1, + ACTIONS(2075), 1, anon_sym_async, - ACTIONS(1905), 1, + ACTIONS(2077), 1, anon_sym_for, - ACTIONS(1907), 1, + ACTIONS(2079), 1, anon_sym_RBRACE, - STATE(936), 1, + ACTIONS(2081), 1, + anon_sym_and, + ACTIONS(2083), 1, + anon_sym_or, + STATE(1100), 1, sym_for_in_clause, - STATE(1079), 1, + STATE(1270), 1, aux_sym__collection_elements_repeat1, - STATE(1455), 1, + STATE(1649), 1, sym__comprehension_clauses, - [49901] = 12, + [60461] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, - anon_sym_and, - ACTIONS(1889), 1, - anon_sym_or, - ACTIONS(1897), 1, + ACTIONS(2069), 1, anon_sym_COMMA, - ACTIONS(1899), 1, + ACTIONS(2071), 1, anon_sym_if, - ACTIONS(1901), 1, + ACTIONS(2073), 1, anon_sym_COLON, - ACTIONS(1903), 1, + ACTIONS(2075), 1, anon_sym_async, - ACTIONS(1905), 1, + ACTIONS(2077), 1, anon_sym_for, - ACTIONS(1907), 1, + ACTIONS(2079), 1, anon_sym_RBRACE, - STATE(936), 1, + ACTIONS(2081), 1, + anon_sym_and, + ACTIONS(2083), 1, + anon_sym_or, + STATE(1100), 1, sym_for_in_clause, - STATE(1079), 1, + STATE(1270), 1, aux_sym__collection_elements_repeat1, - STATE(1403), 1, + STATE(1715), 1, sym__comprehension_clauses, - [49938] = 6, + [60498] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1899), 1, - anon_sym_if, - ACTIONS(1911), 1, + ACTIONS(2157), 1, anon_sym_as, - ACTIONS(1909), 7, + ACTIONS(2155), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [49963] = 5, + [60520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(1913), 8, + ACTIONS(2159), 9, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [49986] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1895), 1, anon_sym_if, - ACTIONS(1915), 8, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, - sym_type_conversion, - [50009] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__template_string_start, - STATE(689), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - ACTIONS(1917), 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, - [50030] = 4, + anon_sym_or, + [60538] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, - sym__string_start, - STATE(691), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1917), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2106), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50051] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 1, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1921), 1, + ACTIONS(2165), 1, anon_sym_as, - ACTIONS(1919), 8, + ACTIONS(2163), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50074] = 2, + [60562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1868), 11, - anon_sym_import, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2159), 8, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, - [50091] = 5, + anon_sym_EQ, + [60582] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2069), 1, + anon_sym_COMMA, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(1909), 8, + ACTIONS(2169), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50114] = 4, + STATE(1100), 1, + sym_for_in_clause, + STATE(1270), 1, + aux_sym__collection_elements_repeat1, + STATE(1686), 1, + sym__comprehension_clauses, + [60616] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1919), 9, + ACTIONS(2171), 1, anon_sym_RPAREN, + ACTIONS(2173), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50135] = 4, + STATE(1100), 1, + sym_for_in_clause, + STATE(1451), 1, + aux_sym_argument_list_repeat1, + STATE(1686), 1, + sym__comprehension_clauses, + [60650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1925), 1, + ACTIONS(2175), 1, anon_sym_as, - ACTIONS(1923), 9, + ACTIONS(2159), 8, 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, - [50156] = 6, + [60670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1899), 1, - anon_sym_if, - ACTIONS(1927), 1, + ACTIONS(2175), 1, anon_sym_as, - ACTIONS(1915), 7, + ACTIONS(2159), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50181] = 5, + [60692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1925), 1, - anon_sym_as, - ACTIONS(1923), 8, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2179), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1923), 10, + ACTIONS(2177), 7, 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, - [50223] = 4, + [60714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1923), 9, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2181), 7, 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, - [50244] = 5, + [60736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_DOT, - ACTIONS(1929), 1, - anon_sym_LPAREN, - STATE(881), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1931), 8, + ACTIONS(2185), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2183), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65392,317 +74543,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50267] = 12, + [60754] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, - anon_sym_and, - ACTIONS(1889), 1, - anon_sym_or, - ACTIONS(1899), 1, - anon_sym_if, - ACTIONS(1903), 1, + ACTIONS(2069), 1, + anon_sym_COMMA, + ACTIONS(2075), 1, anon_sym_async, - ACTIONS(1905), 1, + ACTIONS(2077), 1, anon_sym_for, - ACTIONS(1933), 1, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, + anon_sym_and, + ACTIONS(2110), 1, + anon_sym_or, + ACTIONS(2187), 1, anon_sym_RPAREN, - ACTIONS(1935), 1, - anon_sym_COMMA, - ACTIONS(1938), 1, - anon_sym_as, - STATE(936), 1, + STATE(1100), 1, sym_for_in_clause, - STATE(1079), 1, + STATE(1270), 1, aux_sym__collection_elements_repeat1, - STATE(1400), 1, + STATE(1613), 1, sym__comprehension_clauses, - [50304] = 6, + [60788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1899), 1, - anon_sym_if, - ACTIONS(1940), 1, + ACTIONS(2189), 1, anon_sym_as, - ACTIONS(1913), 7, + ACTIONS(2177), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [50329] = 12, + [60812] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, - anon_sym_and, - ACTIONS(1889), 1, - anon_sym_or, - ACTIONS(1897), 1, - anon_sym_COMMA, - ACTIONS(1899), 1, - anon_sym_if, - ACTIONS(1901), 1, - anon_sym_COLON, - ACTIONS(1903), 1, + ACTIONS(2075), 1, anon_sym_async, - ACTIONS(1905), 1, + ACTIONS(2077), 1, anon_sym_for, - ACTIONS(1907), 1, - anon_sym_RBRACE, - STATE(936), 1, - sym_for_in_clause, - STATE(1079), 1, - aux_sym__collection_elements_repeat1, - STATE(1463), 1, - sym__comprehension_clauses, - [50366] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1950), 1, - sym__string_end, - STATE(919), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50396] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1952), 1, - sym__string_end, - STATE(914), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50426] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 1, - anon_sym_and, - ACTIONS(1889), 1, - anon_sym_or, - ACTIONS(1897), 1, - anon_sym_COMMA, - ACTIONS(1899), 1, + ACTIONS(2106), 1, anon_sym_if, - ACTIONS(1903), 1, - anon_sym_async, - ACTIONS(1905), 1, - anon_sym_for, - ACTIONS(1907), 1, - anon_sym_RBRACK, - STATE(936), 1, - sym_for_in_clause, - STATE(1079), 1, - aux_sym__collection_elements_repeat1, - STATE(1467), 1, - sym__comprehension_clauses, - [50460] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 1, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1899), 1, - anon_sym_if, - ACTIONS(1903), 1, - anon_sym_async, - ACTIONS(1905), 1, - anon_sym_for, - ACTIONS(1954), 1, + ACTIONS(2191), 1, anon_sym_RPAREN, - ACTIONS(1956), 1, + ACTIONS(2193), 1, anon_sym_COMMA, - STATE(936), 1, + STATE(1100), 1, sym_for_in_clause, - STATE(1264), 1, + STATE(1418), 1, aux_sym_argument_list_repeat1, - STATE(1499), 1, + STATE(1706), 1, sym__comprehension_clauses, - [50494] = 5, + [60846] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2106), 1, anon_sym_if, - ACTIONS(1958), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [50516] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 1, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1899), 1, - anon_sym_if, - ACTIONS(1903), 1, - anon_sym_async, - ACTIONS(1905), 1, - anon_sym_for, - ACTIONS(1960), 1, + ACTIONS(2195), 1, anon_sym_RPAREN, - ACTIONS(1962), 1, + ACTIONS(2197), 1, anon_sym_COMMA, - STATE(936), 1, + STATE(1100), 1, sym_for_in_clause, - STATE(1286), 1, + STATE(1483), 1, aux_sym_argument_list_repeat1, - STATE(1426), 1, + STATE(1592), 1, sym__comprehension_clauses, - [50550] = 11, + [60880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1897), 1, + ACTIONS(2199), 8, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1899), 1, anon_sym_if, - ACTIONS(1903), 1, - anon_sym_async, - ACTIONS(1905), 1, - anon_sym_for, - ACTIONS(1907), 1, + anon_sym_COLON, + anon_sym_else, anon_sym_RBRACK, - STATE(936), 1, - sym_for_in_clause, - STATE(1079), 1, - aux_sym__collection_elements_repeat1, - STATE(1441), 1, - sym__comprehension_clauses, - [50584] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1964), 1, - sym__string_end, - STATE(922), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50614] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1966), 1, - sym__string_end, - STATE(918), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50644] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1968), 1, - sym__string_end, - STATE(920), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50674] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1970), 1, - sym__string_end, - STATE(923), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50704] = 3, + anon_sym_RBRACE, + anon_sym_EQ, + [60900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1974), 2, + ACTIONS(2203), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1972), 8, + ACTIONS(2201), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -65711,401 +74661,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [50722] = 9, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_LBRACE2, - ACTIONS(1982), 1, - sym__not_escape_sequence, - ACTIONS(1985), 1, - sym__string_end, - STATE(918), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1979), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50752] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1987), 1, - sym__string_end, - STATE(918), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50782] = 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(918), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50812] = 11, + [60918] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, - anon_sym_and, - ACTIONS(1889), 1, - anon_sym_or, - ACTIONS(1897), 1, + ACTIONS(2069), 1, anon_sym_COMMA, - ACTIONS(1899), 1, - anon_sym_if, - ACTIONS(1903), 1, + ACTIONS(2075), 1, anon_sym_async, - ACTIONS(1905), 1, + ACTIONS(2077), 1, anon_sym_for, - ACTIONS(1933), 1, + ACTIONS(2099), 1, anon_sym_RPAREN, - STATE(936), 1, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, + anon_sym_and, + ACTIONS(2110), 1, + anon_sym_or, + STATE(1100), 1, sym_for_in_clause, - STATE(1079), 1, + STATE(1270), 1, aux_sym__collection_elements_repeat1, - STATE(1400), 1, + STATE(1706), 1, sym__comprehension_clauses, - [50846] = 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(918), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50876] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1993), 1, - sym__string_end, - STATE(918), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50906] = 3, + [60952] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1997), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1995), 8, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, + anon_sym_and, + ACTIONS(2110), 1, + anon_sym_or, + ACTIONS(2205), 1, anon_sym_RPAREN, + ACTIONS(2207), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [50924] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(1999), 1, - sym__string_end, - STATE(918), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50954] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, + STATE(1100), 1, + sym_for_in_clause, + STATE(1437), 1, + aux_sym_argument_list_repeat1, + STATE(1613), 1, + sym__comprehension_clauses, + [60986] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(2001), 1, - sym__string_end, - STATE(929), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [50984] = 5, + ACTIONS(2069), 1, + anon_sym_COMMA, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2079), 1, + anon_sym_RBRACK, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, + anon_sym_and, + ACTIONS(2110), 1, + anon_sym_or, + STATE(1100), 1, + sym_for_in_clause, + STATE(1270), 1, + aux_sym__collection_elements_repeat1, + STATE(1624), 1, + sym__comprehension_clauses, + [61020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2003), 7, + ACTIONS(2163), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, + anon_sym_else, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, - sym_type_conversion, - [51006] = 11, + [61042] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, - anon_sym_and, - ACTIONS(1889), 1, - anon_sym_or, - ACTIONS(1897), 1, + ACTIONS(2069), 1, anon_sym_COMMA, - ACTIONS(1899), 1, - anon_sym_if, - ACTIONS(1903), 1, + ACTIONS(2075), 1, anon_sym_async, - ACTIONS(1905), 1, + ACTIONS(2077), 1, anon_sym_for, - ACTIONS(1907), 1, + ACTIONS(2079), 1, anon_sym_RBRACK, - STATE(936), 1, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, + anon_sym_and, + ACTIONS(2110), 1, + anon_sym_or, + STATE(1100), 1, sym_for_in_clause, - STATE(1079), 1, + STATE(1270), 1, aux_sym__collection_elements_repeat1, - STATE(1401), 1, + STATE(1677), 1, sym__comprehension_clauses, - [51040] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2005), 1, - sym__string_end, - STATE(918), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [51070] = 11, + [61076] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, - anon_sym_and, - ACTIONS(1889), 1, - anon_sym_or, - ACTIONS(1897), 1, + ACTIONS(2069), 1, anon_sym_COMMA, - ACTIONS(1899), 1, - anon_sym_if, - ACTIONS(1903), 1, + ACTIONS(2075), 1, anon_sym_async, - ACTIONS(1905), 1, + ACTIONS(2077), 1, anon_sym_for, - ACTIONS(2007), 1, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, + anon_sym_and, + ACTIONS(2110), 1, + anon_sym_or, + ACTIONS(2209), 1, anon_sym_RPAREN, - STATE(936), 1, + STATE(1100), 1, sym_for_in_clause, - STATE(1079), 1, + STATE(1270), 1, aux_sym__collection_elements_repeat1, - STATE(1426), 1, + STATE(1592), 1, sym__comprehension_clauses, - [51104] = 5, + [61110] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2009), 7, + ACTIONS(2211), 1, + anon_sym_as, + ACTIONS(2181), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [51126] = 9, - ACTIONS(1942), 1, - anon_sym_LBRACE2, - ACTIONS(1946), 1, - sym__not_escape_sequence, - ACTIONS(1948), 1, + [61134] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 1, - sym__string_end, - STATE(925), 1, - aux_sym_string_repeat1, - STATE(1037), 1, - aux_sym_string_content_repeat1, - STATE(1046), 1, - sym_string_content, - STATE(1054), 1, - sym_interpolation, - ACTIONS(1944), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [51156] = 11, + ACTIONS(2069), 1, + anon_sym_COMMA, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2079), 1, + anon_sym_RBRACK, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, + anon_sym_and, + ACTIONS(2110), 1, + anon_sym_or, + STATE(1100), 1, + sym_for_in_clause, + STATE(1270), 1, + aux_sym__collection_elements_repeat1, + STATE(1708), 1, + sym__comprehension_clauses, + [61168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1899), 1, + ACTIONS(2213), 1, + anon_sym_as, + ACTIONS(2199), 7, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(1903), 1, anon_sym_async, - ACTIONS(1905), 1, anon_sym_for, - ACTIONS(2013), 1, - anon_sym_RPAREN, - ACTIONS(2015), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, + [61190] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, anon_sym_COMMA, - STATE(936), 1, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2079), 1, + anon_sym_RBRACK, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, + anon_sym_and, + ACTIONS(2110), 1, + anon_sym_or, + STATE(1100), 1, sym_for_in_clause, - STATE(1188), 1, - aux_sym_argument_list_repeat1, - STATE(1400), 1, + STATE(1270), 1, + aux_sym__collection_elements_repeat1, + STATE(1614), 1, sym__comprehension_clauses, - [51190] = 5, + [61224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2017), 7, + ACTIONS(2155), 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, - sym_type_conversion, - [51212] = 11, + [61244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1897), 1, + ACTIONS(2215), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1899), 1, anon_sym_if, - ACTIONS(1903), 1, anon_sym_async, - ACTIONS(1905), 1, anon_sym_for, - ACTIONS(2019), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, + [61263] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, + anon_sym_PIPE, + STATE(1101), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2217), 7, anon_sym_RPAREN, - STATE(936), 1, - sym_for_in_clause, - STATE(1079), 1, - aux_sym__collection_elements_repeat1, - STATE(1499), 1, - sym__comprehension_clauses, - [51246] = 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [61282] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 1, + ACTIONS(2223), 1, + anon_sym_if, + ACTIONS(2226), 1, anon_sym_async, - ACTIONS(1905), 1, + ACTIONS(2229), 1, anon_sym_for, - ACTIONS(2023), 1, - anon_sym_if, - ACTIONS(2021), 3, + ACTIONS(2221), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(943), 3, + STATE(1092), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [51269] = 4, + [61305] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2232), 1, + anon_sym_COMMA, + ACTIONS(2234), 1, + anon_sym_if, + ACTIONS(2238), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2240), 1, + anon_sym_or, + STATE(1215), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2236), 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [61330] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2108), 1, + anon_sym_and, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(2025), 7, + ACTIONS(2215), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -66113,62 +74970,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [51288] = 4, + [61349] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, - anon_sym_PIPE, - STATE(944), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2027), 7, - anon_sym_RPAREN, + ACTIONS(2232), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(2234), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(2238), 1, + anon_sym_and, + ACTIONS(2240), 1, + anon_sym_or, + STATE(1215), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2242), 4, anon_sym_RBRACE, - [51307] = 4, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [61374] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, - anon_sym_PIPE, - STATE(938), 1, - aux_sym_match_or_pattern_repeat1, - ACTIONS(2031), 7, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2244), 6, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [51326] = 7, + anon_sym_EQ, + [61395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1893), 1, + ACTIONS(2248), 1, + anon_sym_PIPE, + STATE(1097), 1, + aux_sym_match_or_pattern_repeat1, + ACTIONS(2246), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1895), 1, + anon_sym_as, anon_sym_if, - STATE(982), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2033), 4, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [51351] = 4, + [61414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(2025), 7, + ACTIONS(2215), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -66176,48 +75034,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [51370] = 6, + [61433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, - anon_sym_if, - ACTIONS(2040), 1, + ACTIONS(2075), 1, anon_sym_async, - ACTIONS(2043), 1, + ACTIONS(2077), 1, anon_sym_for, - ACTIONS(2035), 3, + ACTIONS(2253), 1, + anon_sym_if, + ACTIONS(2251), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(942), 3, + STATE(1092), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [51393] = 6, + [61456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 1, + ACTIONS(2075), 1, anon_sym_async, - ACTIONS(1905), 1, + ACTIONS(2077), 1, anon_sym_for, - ACTIONS(2023), 1, + ACTIONS(2253), 1, anon_sym_if, - ACTIONS(2046), 3, + ACTIONS(2255), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(942), 3, + STATE(1099), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [51416] = 4, + [61479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 1, + ACTIONS(2219), 1, anon_sym_PIPE, - STATE(944), 1, + STATE(1097), 1, aux_sym_match_or_pattern_repeat1, - ACTIONS(2048), 7, + ACTIONS(2257), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66225,25 +75083,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [51435] = 4, + [61498] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2071), 1, + anon_sym_if, + ACTIONS(2081), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2083), 1, + anon_sym_or, + ACTIONS(2181), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [61518] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2234), 1, + anon_sym_if, + ACTIONS(2238), 1, + anon_sym_and, + ACTIONS(2240), 1, + anon_sym_or, + ACTIONS(2163), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [61538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + anon_sym_and, + ACTIONS(2240), 1, + anon_sym_or, + ACTIONS(2155), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [61556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + anon_sym_and, + ACTIONS(2159), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_COLON2, + sym_type_conversion, + [61572] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2238), 1, + anon_sym_and, + ACTIONS(2240), 1, anon_sym_or, - ACTIONS(2025), 7, + ACTIONS(2159), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [61590] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2234), 1, + anon_sym_if, + ACTIONS(2238), 1, + anon_sym_and, + ACTIONS(2240), 1, + anon_sym_or, + ACTIONS(2177), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [61610] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2234), 1, + anon_sym_if, + ACTIONS(2238), 1, + anon_sym_and, + ACTIONS(2240), 1, + anon_sym_or, + ACTIONS(2181), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [61630] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, + anon_sym_and, + ACTIONS(2263), 1, + anon_sym_or, + ACTIONS(2181), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_SEMI, + [61650] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2265), 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, + [61664] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_COMMA, + STATE(1136), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2267), 6, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [51454] = 2, + [61682] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2234), 1, + anon_sym_if, + ACTIONS(2238), 1, + anon_sym_and, + ACTIONS(2240), 1, + anon_sym_or, + ACTIONS(2244), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [61702] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2271), 1, + anon_sym_async, + ACTIONS(2273), 1, + anon_sym_def, + ACTIONS(2275), 1, + anon_sym_class, + STATE(552), 2, + sym_function_definition, + sym_class_definition, + STATE(1248), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [61726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 8, + ACTIONS(2277), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66252,10 +75269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51468] = 2, + [61740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2055), 8, + ACTIONS(2279), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66264,10 +75281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51482] = 2, + [61754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2057), 8, + ACTIONS(2246), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66276,10 +75293,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51496] = 2, + [61768] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2281), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [61788] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_AT, + ACTIONS(2283), 1, + anon_sym_async, + ACTIONS(2285), 1, + anon_sym_def, + ACTIONS(2287), 1, + anon_sym_class, + STATE(521), 2, + sym_function_definition, + sym_class_definition, + STATE(1248), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [61812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2059), 8, + ACTIONS(2289), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66288,10 +75337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51510] = 2, + [61826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2061), 8, + ACTIONS(2291), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66300,51 +75349,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51524] = 4, + [61840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, - anon_sym_or, - ACTIONS(1879), 6, + ACTIONS(2159), 7, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_EQ, - sym__semicolon, - [51542] = 2, + anon_sym_or, + anon_sym_SEMI, + [61856] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2067), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2259), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RBRACE, - [51556] = 5, + ACTIONS(2261), 1, + anon_sym_and, + ACTIONS(2263), 1, + anon_sym_or, + ACTIONS(2293), 1, + anon_sym_from, + ACTIONS(2295), 1, + anon_sym_COMMA, + STATE(1260), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2297), 2, + sym__newline, + anon_sym_SEMI, + [61882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(1913), 5, + ACTIONS(2159), 6, sym__newline, anon_sym_from, anon_sym_COMMA, + anon_sym_if, anon_sym_EQ, - sym__semicolon, - [51576] = 2, + anon_sym_SEMI, + [61900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2071), 8, + ACTIONS(2299), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66353,22 +75406,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51590] = 2, + [61914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 8, - sym__newline, - anon_sym_from, - anon_sym_COMMA, + ACTIONS(2234), 1, anon_sym_if, - anon_sym_EQ, + ACTIONS(2238), 1, anon_sym_and, + ACTIONS(2240), 1, anon_sym_or, - sym__semicolon, - [51604] = 2, + ACTIONS(2301), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [61934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2048), 8, + ACTIONS(2303), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66377,10 +75433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51618] = 2, + [61948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2073), 8, + ACTIONS(2305), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66389,24 +75445,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51632] = 4, + [61962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2077), 1, + ACTIONS(2309), 1, anon_sym_COMMA, - STATE(958), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2075), 6, + STATE(1146), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2307), 6, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, + [61980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1597), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_COLON2, sym_type_conversion, - [51650] = 2, + [61994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2080), 8, + ACTIONS(2311), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66415,44 +75483,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51664] = 7, + [62008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_AT, - ACTIONS(2082), 1, - anon_sym_async, - ACTIONS(2084), 1, - anon_sym_def, - ACTIONS(2086), 1, - anon_sym_class, - STATE(527), 2, - sym_function_definition, - sym_class_definition, - STATE(1045), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [51688] = 7, + ACTIONS(2313), 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, + [62022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_AT, - ACTIONS(2088), 1, - anon_sym_async, - ACTIONS(2090), 1, - anon_sym_def, - ACTIONS(2092), 1, - anon_sym_class, - STATE(553), 2, - sym_function_definition, - sym_class_definition, - STATE(1045), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [51712] = 2, + ACTIONS(2315), 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, + [62036] = 6, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2317), 1, + anon_sym_LBRACE2, + ACTIONS(2322), 1, + anon_sym_BSLASH, + ACTIONS(2325), 1, + sym__string_end, + STATE(1133), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2319), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [62058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 8, + ACTIONS(2327), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66461,25 +75535,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51726] = 5, + [62072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_and, - ACTIONS(2065), 1, - anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(1909), 5, + ACTIONS(2050), 8, sym__newline, anon_sym_from, anon_sym_COMMA, + anon_sym_if, anon_sym_EQ, - sym__semicolon, - [51746] = 2, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [62086] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2331), 1, + anon_sym_COMMA, + STATE(1162), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2329), 6, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [62104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2096), 8, + ACTIONS(2333), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66488,10 +75573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51760] = 2, + [62118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 8, + ACTIONS(2335), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66500,10 +75585,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51774] = 2, + [62132] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym_DOT, + ACTIONS(2093), 1, + anon_sym_LPAREN, + ACTIONS(2337), 1, + anon_sym_EQ, + STATE(1042), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2095), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [62154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2100), 8, + ACTIONS(2097), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66512,24 +75613,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51788] = 4, + [62168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(1889), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2102), 6, + ACTIONS(2244), 5, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_SEMI, + [62188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2341), 1, + anon_sym_PIPE, + ACTIONS(2339), 7, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [51806] = 2, + [62204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 8, + ACTIONS(2343), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66538,113 +75653,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51820] = 4, + [62218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(1923), 6, + ACTIONS(2177), 5, sym__newline, anon_sym_from, anon_sym_COMMA, - anon_sym_if, anon_sym_EQ, - sym__semicolon, - [51838] = 3, + anon_sym_SEMI, + [62238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(1923), 7, + ACTIONS(2263), 1, + anon_sym_or, + ACTIONS(2199), 6, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_if, anon_sym_EQ, - anon_sym_or, - sym__semicolon, - [51854] = 2, + anon_sym_SEMI, + [62256] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 8, - anon_sym_RPAREN, + ACTIONS(2347), 1, anon_sym_COMMA, - anon_sym_as, + STATE(1162), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2345), 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, - [51868] = 2, + [62274] = 6, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2349), 1, + anon_sym_LBRACE2, + ACTIONS(2353), 1, + anon_sym_BSLASH, + ACTIONS(2355), 1, + sym__string_end, + STATE(1133), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(2351), 3, + sym__string_content, + sym__escape_interpolation, + sym_escape_sequence, + [62296] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1864), 8, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - anon_sym_if, - anon_sym_EQ, + ACTIONS(2161), 1, anon_sym_and, + ACTIONS(2167), 1, anon_sym_or, - sym__semicolon, - [51882] = 4, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2357), 1, + anon_sym_COMMA, + STATE(1232), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2236), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [62320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2110), 1, + ACTIONS(2081), 1, + anon_sym_and, + ACTIONS(2083), 1, + anon_sym_or, + ACTIONS(2199), 6, anon_sym_COMMA, - STATE(988), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2108), 6, - anon_sym_RPAREN, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, anon_sym_RBRACE, - [51900] = 2, + [62338] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2112), 8, - anon_sym_RPAREN, + ACTIONS(2071), 1, + anon_sym_if, + ACTIONS(2081), 1, + anon_sym_and, + ACTIONS(2083), 1, + anon_sym_or, + ACTIONS(2163), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [62358] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2081), 1, + anon_sym_and, + ACTIONS(2083), 1, + anon_sym_or, + ACTIONS(2155), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - [51914] = 2, + [62376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2114), 8, - anon_sym_RPAREN, + ACTIONS(2081), 1, + anon_sym_and, + ACTIONS(2159), 7, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - [51928] = 4, + anon_sym_or, + [62392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2118), 1, + ACTIONS(2081), 1, + anon_sym_and, + ACTIONS(2083), 1, + anon_sym_or, + ACTIONS(2159), 6, anon_sym_COMMA, - STATE(976), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2116), 6, - anon_sym_RPAREN, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, anon_sym_RBRACE, - [51946] = 2, + [62410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1917), 8, + ACTIONS(2359), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66653,82 +75811,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [51960] = 4, + [62424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2123), 1, - anon_sym_COMMA, - STATE(976), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2121), 6, + ACTIONS(2108), 1, + anon_sym_and, + ACTIONS(2110), 1, + anon_sym_or, + ACTIONS(2361), 6, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [51978] = 5, + [62442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2017), 5, + ACTIONS(2163), 5, sym__newline, anon_sym_from, anon_sym_COMMA, anon_sym_EQ, - sym__semicolon, - [51998] = 3, + anon_sym_SEMI, + [62462] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2127), 1, - anon_sym_PIPE, - ACTIONS(2125), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2071), 1, anon_sym_if, + ACTIONS(2081), 1, + anon_sym_and, + ACTIONS(2083), 1, + anon_sym_or, + ACTIONS(2177), 5, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - [52014] = 6, + [62482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_DOT, - ACTIONS(1875), 1, - anon_sym_LPAREN, - ACTIONS(2129), 1, + ACTIONS(1597), 8, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_if, anon_sym_EQ, - STATE(902), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1877), 4, + anon_sym_and, + anon_sym_or, + anon_sym_SEMI, + [62496] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2363), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [52036] = 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + [62510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, - anon_sym_COMMA, - STATE(958), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2131), 6, + ACTIONS(2365), 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, - [52054] = 2, + [62524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2135), 8, + ACTIONS(2367), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66737,111 +75903,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [52068] = 4, + [62538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_and, - ACTIONS(2065), 1, - anon_sym_or, - ACTIONS(1919), 6, - sym__newline, - anon_sym_from, + ACTIONS(2371), 1, anon_sym_COMMA, + STATE(1162), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2369), 6, + anon_sym_RPAREN, anon_sym_if, - anon_sym_EQ, - sym__semicolon, - [52086] = 5, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [62556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(1915), 5, + ACTIONS(2155), 6, sym__newline, anon_sym_from, anon_sym_COMMA, + anon_sym_if, anon_sym_EQ, - sym__semicolon, - [52106] = 4, + anon_sym_SEMI, + [62574] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2137), 1, + ACTIONS(2234), 1, + anon_sym_if, + ACTIONS(2238), 1, + anon_sym_and, + ACTIONS(2240), 1, + anon_sym_or, + ACTIONS(2281), 5, anon_sym_COMMA, - STATE(958), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2131), 6, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COLON2, sym_type_conversion, - [52124] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2141), 1, - anon_sym_COMMA, - STATE(978), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2139), 6, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52142] = 4, + [62594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2145), 1, + ACTIONS(2238), 1, + anon_sym_and, + ACTIONS(2240), 1, + anon_sym_or, + ACTIONS(2199), 6, anon_sym_COMMA, - STATE(976), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(2143), 6, - anon_sym_RPAREN, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, anon_sym_RBRACE, - [52160] = 8, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [62612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(2069), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2147), 1, - anon_sym_from, - ACTIONS(2149), 1, - anon_sym_COMMA, - STATE(1082), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2151), 2, - sym__newline, - sym__semicolon, - [52186] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2153), 8, + ACTIONS(2301), 5, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [52200] = 2, + [62632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 8, + ACTIONS(2374), 8, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -66850,7412 +75987,8144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RBRACE, - [52214] = 5, + [62646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2157), 4, - anon_sym_RPAREN, + ACTIONS(2050), 8, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52233] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2159), 1, anon_sym_if, - ACTIONS(2161), 1, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_and, - ACTIONS(2163), 1, anon_sym_or, - ACTIONS(1915), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [52252] = 4, + anon_sym_COLON2, + sym_type_conversion, + [62660] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, - anon_sym_and, - ACTIONS(2163), 1, - anon_sym_or, - ACTIONS(1879), 5, - anon_sym_RPAREN, + ACTIONS(2376), 1, + sym_identifier, + ACTIONS(2378), 1, + anon_sym_LPAREN, + ACTIONS(2380), 1, + anon_sym_STAR, + STATE(1290), 1, + sym_dotted_name, + STATE(1368), 1, + sym_aliased_import, + STATE(1532), 1, + sym__import_list, + STATE(1533), 1, + sym_wildcard_import, + [62685] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2382), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [52269] = 6, + ACTIONS(2384), 1, + anon_sym_RBRACE, + STATE(1100), 1, + sym_for_in_clause, + STATE(1491), 1, + aux_sym_dictionary_repeat1, + STATE(1650), 1, + sym__comprehension_clauses, + [62710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 1, + ACTIONS(2386), 1, anon_sym_except, - ACTIONS(2167), 1, + ACTIONS(2388), 1, anon_sym_finally, - STATE(549), 1, + STATE(553), 1, sym_finally_clause, - STATE(239), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - STATE(259), 2, + STATE(279), 2, sym_except_clause, aux_sym_try_statement_repeat1, - [52290] = 2, + STATE(283), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [62731] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 7, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2390), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [52303] = 6, + anon_sym_EQ, + [62750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(2386), 1, anon_sym_except, - ACTIONS(2171), 1, + ACTIONS(2388), 1, anon_sym_finally, - STATE(478), 1, + STATE(562), 1, sym_finally_clause, - STATE(255), 2, + STATE(266), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(257), 2, - sym_except_group_clause, - aux_sym_try_statement_repeat2, - [52324] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 1, - anon_sym_except, - ACTIONS(2167), 1, - anon_sym_finally, - STATE(469), 1, - sym_finally_clause, - STATE(260), 2, + STATE(267), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - STATE(261), 2, - sym_except_clause, - aux_sym_try_statement_repeat1, - [52345] = 6, + [62771] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, - anon_sym_if, ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2163), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(2175), 1, - anon_sym_as, - ACTIONS(2173), 3, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2392), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [52366] = 8, + anon_sym_RBRACK, + anon_sym_RBRACE, + [62790] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, + ACTIONS(2259), 1, anon_sym_if, - ACTIONS(2161), 1, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2163), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2177), 1, + ACTIONS(2394), 1, anon_sym_COMMA, - ACTIONS(2179), 1, - anon_sym_as, - ACTIONS(2181), 1, - anon_sym_COLON, - STATE(1178), 1, - aux_sym_exception_list_repeat1, - [52391] = 2, + STATE(1360), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2396), 2, + sym__newline, + anon_sym_SEMI, + [62813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 7, + ACTIONS(1597), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [52404] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2063), 1, anon_sym_and, - ACTIONS(2065), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2009), 4, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - sym__semicolon, - [52423] = 5, + [62826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_and, - ACTIONS(2065), 1, - anon_sym_or, - ACTIONS(2069), 1, + ACTIONS(2259), 1, anon_sym_if, - ACTIONS(1958), 4, - sym__newline, - anon_sym_from, - anon_sym_COMMA, - sym__semicolon, - [52442] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2183), 1, - sym_identifier, - ACTIONS(2185), 1, - anon_sym_STAR, - ACTIONS(2187), 1, - anon_sym_STAR_STAR, - STATE(1327), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [52461] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2063), 1, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2149), 1, + ACTIONS(2398), 1, anon_sym_COMMA, - STATE(1082), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2189), 2, + STATE(1365), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2400), 2, sym__newline, - sym__semicolon, - [52484] = 8, + anon_sym_SEMI, + [62849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 1, - anon_sym_async, - ACTIONS(1905), 1, - anon_sym_for, - ACTIONS(2191), 1, + ACTIONS(2402), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2193), 1, - anon_sym_RBRACE, - STATE(936), 1, - sym_for_in_clause, - STATE(1207), 1, - aux_sym_dictionary_repeat1, - STATE(1404), 1, - sym__comprehension_clauses, - [52509] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1887), 1, - anon_sym_and, - ACTIONS(1889), 1, - anon_sym_or, - ACTIONS(1899), 1, anon_sym_if, - ACTIONS(2195), 4, - anon_sym_COMMA, anon_sym_async, anon_sym_for, + anon_sym_RBRACK, anon_sym_RBRACE, - [52528] = 7, + [62862] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2197), 1, + ACTIONS(2295), 1, anon_sym_COMMA, - STATE(1167), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2199), 2, + STATE(1260), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2404), 2, sym__newline, - sym__semicolon, - [52551] = 7, + anon_sym_SEMI, + [62885] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2197), 1, + ACTIONS(2295), 1, anon_sym_COMMA, - STATE(1134), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2201), 2, + STATE(1260), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2406), 2, sym__newline, - sym__semicolon, - [52574] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2009), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - sym_type_conversion, - [52587] = 6, + anon_sym_SEMI, + [62908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 1, + ACTIONS(2408), 1, anon_sym_except, - ACTIONS(2171), 1, + ACTIONS(2410), 1, anon_sym_finally, - STATE(551), 1, + STATE(535), 1, sym_finally_clause, - STATE(250), 2, + STATE(268), 2, sym_except_clause, aux_sym_try_statement_repeat1, - STATE(252), 2, + STATE(280), 2, sym_except_group_clause, aux_sym_try_statement_repeat2, - [52608] = 7, + [62929] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_and, - ACTIONS(2065), 1, - anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2203), 1, - anon_sym_COMMA, - STATE(1130), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2205), 2, - sym__newline, - sym__semicolon, - [52631] = 7, + ACTIONS(2412), 1, + sym_identifier, + ACTIONS(2414), 1, + anon_sym_STAR, + ACTIONS(2416), 1, + anon_sym_STAR_STAR, + STATE(1524), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [62948] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 1, - sym_identifier, - ACTIONS(2209), 1, - anon_sym_DOT, - ACTIONS(2211), 1, - anon_sym___future__, - STATE(1171), 1, - aux_sym_import_prefix_repeat1, - STATE(1219), 1, - sym_import_prefix, - STATE(1420), 2, - sym_relative_import, - sym_dotted_name, - [52654] = 3, + ACTIONS(2234), 1, + anon_sym_if, + ACTIONS(2238), 1, + anon_sym_and, + ACTIONS(2240), 1, + anon_sym_or, + ACTIONS(2418), 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [62967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2215), 1, + ACTIONS(2422), 1, anon_sym_as, - ACTIONS(2213), 6, + ACTIONS(2420), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RBRACE, - [52669] = 5, + [62982] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, + ACTIONS(2259), 1, anon_sym_if, - ACTIONS(2161), 1, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2163), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(1909), 4, - anon_sym_RPAREN, + ACTIONS(2295), 1, + anon_sym_COMMA, + STATE(1260), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2424), 2, + sym__newline, + anon_sym_SEMI, + [63005] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2426), 1, anon_sym_COMMA, + ACTIONS(2428), 1, anon_sym_as, + ACTIONS(2430), 1, + anon_sym_if, + ACTIONS(2432), 1, anon_sym_COLON, - [52688] = 5, + ACTIONS(2434), 1, + anon_sym_and, + ACTIONS(2436), 1, + anon_sym_or, + STATE(1338), 1, + aux_sym_exception_list_repeat1, + [63030] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 1, - sym_identifier, - ACTIONS(2185), 1, - anon_sym_STAR, - ACTIONS(2187), 1, - anon_sym_STAR_STAR, - STATE(1240), 4, - sym_typevar_parameter, - sym_typevartuple_parameter, - sym_paramspec_parameter, - sym__type_parameter, - [52707] = 8, + ACTIONS(2408), 1, + anon_sym_except, + ACTIONS(2410), 1, + anon_sym_finally, + STATE(607), 1, + sym_finally_clause, + STATE(275), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + STATE(287), 2, + sym_except_group_clause, + aux_sym_try_statement_repeat2, + [63051] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2434), 1, + anon_sym_and, + ACTIONS(2436), 1, + anon_sym_or, + ACTIONS(2199), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + [63068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2418), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + [63087] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 1, + ACTIONS(2075), 1, anon_sym_async, - ACTIONS(1905), 1, + ACTIONS(2077), 1, anon_sym_for, - ACTIONS(2217), 1, + ACTIONS(2438), 1, anon_sym_COMMA, - ACTIONS(2219), 1, + ACTIONS(2440), 1, anon_sym_RBRACE, - STATE(936), 1, + STATE(1100), 1, sym_for_in_clause, - STATE(1246), 1, + STATE(1409), 1, aux_sym_dictionary_repeat1, - STATE(1445), 1, + STATE(1718), 1, sym__comprehension_clauses, - [52732] = 2, + [63112] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2259), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52745] = 2, + ACTIONS(2261), 1, + anon_sym_and, + ACTIONS(2263), 1, + anon_sym_or, + ACTIONS(2301), 4, + sym__newline, + anon_sym_from, + anon_sym_COMMA, + anon_sym_SEMI, + [63131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1864), 7, + ACTIONS(2430), 1, + anon_sym_if, + ACTIONS(2434), 1, + anon_sym_and, + ACTIONS(2436), 1, + anon_sym_or, + ACTIONS(2163), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [52758] = 2, + [63150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2116), 7, + ACTIONS(2434), 1, + anon_sym_and, + ACTIONS(2436), 1, + anon_sym_or, + ACTIONS(2155), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_RBRACE, - [52771] = 4, + anon_sym_COLON, + [63167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(2434), 1, anon_sym_and, - ACTIONS(2163), 1, - anon_sym_or, - ACTIONS(1919), 5, + ACTIONS(2159), 6, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - [52788] = 5, + anon_sym_or, + [63182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2434), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2436), 1, anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2223), 4, + ACTIONS(2159), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, - [52807] = 2, + [63199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 7, + ACTIONS(2236), 7, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_RBRACK, anon_sym_RBRACE, - [52820] = 3, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [63212] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, - anon_sym_and, - ACTIONS(1923), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(2259), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(2261), 1, + anon_sym_and, + ACTIONS(2263), 1, anon_sym_or, - [52835] = 8, + ACTIONS(2398), 1, + anon_sym_COMMA, + STATE(1344), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2442), 2, + sym__newline, + anon_sym_SEMI, + [63235] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 1, + ACTIONS(2075), 1, anon_sym_async, - ACTIONS(1905), 1, + ACTIONS(2077), 1, anon_sym_for, - ACTIONS(2227), 1, + ACTIONS(2444), 1, anon_sym_COMMA, - ACTIONS(2229), 1, + ACTIONS(2446), 1, anon_sym_RBRACE, - STATE(936), 1, + STATE(1100), 1, sym_for_in_clause, - STATE(1251), 1, + STATE(1427), 1, aux_sym_dictionary_repeat1, - STATE(1462), 1, + STATE(1631), 1, sym__comprehension_clauses, - [52860] = 7, + [63260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2149), 1, - anon_sym_COMMA, - STATE(1082), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2231), 2, + ACTIONS(2281), 4, sym__newline, - sym__semicolon, - [52883] = 4, + anon_sym_from, + anon_sym_COMMA, + anon_sym_SEMI, + [63279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 1, + ACTIONS(2430), 1, + anon_sym_if, + ACTIONS(2434), 1, anon_sym_and, - ACTIONS(2163), 1, + ACTIONS(2436), 1, anon_sym_or, - ACTIONS(1923), 5, + ACTIONS(2450), 1, + anon_sym_as, + ACTIONS(2448), 3, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - [52900] = 8, + [63300] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(2452), 1, sym_identifier, - ACTIONS(2235), 1, - anon_sym_LPAREN, - ACTIONS(2237), 1, - anon_sym_STAR, - STATE(1105), 1, + ACTIONS(2454), 1, + anon_sym_DOT, + ACTIONS(2456), 1, + anon_sym___future__, + STATE(1336), 1, + aux_sym_import_prefix_repeat1, + STATE(1402), 1, + sym_import_prefix, + STATE(1709), 2, + sym_relative_import, sym_dotted_name, - STATE(1159), 1, - sym_aliased_import, - STATE(1335), 1, - sym_wildcard_import, - STATE(1338), 1, - sym__import_list, - [52925] = 5, + [63323] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, + ACTIONS(2259), 1, anon_sym_if, - ACTIONS(2161), 1, - anon_sym_and, - ACTIONS(2163), 1, - anon_sym_or, - ACTIONS(1913), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_COLON, - [52944] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2063), 1, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2149), 1, + ACTIONS(2295), 1, anon_sym_COMMA, - STATE(1082), 1, + STATE(1260), 1, aux_sym_expression_list_repeat1, - ACTIONS(1891), 2, + ACTIONS(2236), 2, sym__newline, - sym__semicolon, - [52967] = 7, + anon_sym_SEMI, + [63346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_and, - ACTIONS(2065), 1, - anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2149), 1, + ACTIONS(2458), 7, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1082), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2239), 2, - sym__newline, - sym__semicolon, - [52990] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2063), 1, - anon_sym_and, - ACTIONS(2065), 1, - anon_sym_or, - ACTIONS(2069), 1, anon_sym_if, - ACTIONS(2149), 1, - anon_sym_COMMA, - STATE(1082), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2241), 2, - sym__newline, - sym__semicolon, - [53013] = 8, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [63359] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, + ACTIONS(2426), 1, + anon_sym_COMMA, + ACTIONS(2430), 1, anon_sym_if, - ACTIONS(2161), 1, + ACTIONS(2434), 1, anon_sym_and, - ACTIONS(2163), 1, + ACTIONS(2436), 1, anon_sym_or, - ACTIONS(2177), 1, - anon_sym_COMMA, - ACTIONS(2243), 1, + ACTIONS(2460), 1, anon_sym_as, - ACTIONS(2245), 1, + ACTIONS(2462), 1, anon_sym_COLON, - STATE(1178), 1, + STATE(1338), 1, aux_sym_exception_list_repeat1, - [53038] = 8, + [63384] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, + ACTIONS(2426), 1, + anon_sym_COMMA, + ACTIONS(2430), 1, anon_sym_if, - ACTIONS(2161), 1, + ACTIONS(2434), 1, anon_sym_and, - ACTIONS(2163), 1, + ACTIONS(2436), 1, anon_sym_or, - ACTIONS(2177), 1, - anon_sym_COMMA, - ACTIONS(2247), 1, + ACTIONS(2464), 1, anon_sym_as, - ACTIONS(2249), 1, + ACTIONS(2466), 1, anon_sym_COLON, - STATE(1178), 1, + STATE(1338), 1, aux_sym_exception_list_repeat1, - [53063] = 6, - ACTIONS(1948), 1, + [63409] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, - anon_sym_LBRACE2, - ACTIONS(2256), 1, - sym__not_escape_sequence, - ACTIONS(2259), 1, - sym__string_end, - STATE(1035), 1, - aux_sym_string_content_repeat1, - ACTIONS(2253), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [53084] = 8, + ACTIONS(2412), 1, + sym_identifier, + ACTIONS(2414), 1, + anon_sym_STAR, + ACTIONS(2416), 1, + anon_sym_STAR_STAR, + STATE(1416), 4, + sym_typevar_parameter, + sym_typevartuple_parameter, + sym_paramspec_parameter, + sym__type_parameter, + [63428] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, + ACTIONS(2426), 1, + anon_sym_COMMA, + ACTIONS(2430), 1, anon_sym_if, - ACTIONS(2161), 1, + ACTIONS(2434), 1, anon_sym_and, - ACTIONS(2163), 1, + ACTIONS(2436), 1, anon_sym_or, - ACTIONS(2177), 1, - anon_sym_COMMA, - ACTIONS(2261), 1, + ACTIONS(2468), 1, anon_sym_as, - ACTIONS(2263), 1, + ACTIONS(2470), 1, anon_sym_COLON, - STATE(1178), 1, + STATE(1338), 1, aux_sym_exception_list_repeat1, - [53109] = 6, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2265), 1, - anon_sym_LBRACE2, - ACTIONS(2269), 1, - sym__not_escape_sequence, - ACTIONS(2271), 1, - sym__string_end, - STATE(1035), 1, - aux_sym_string_content_repeat1, - ACTIONS(2267), 3, - sym__string_content, - sym__escape_interpolation, - sym_escape_sequence, - [53130] = 4, + [63453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_DOT, - STATE(1038), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(1868), 4, - sym__newline, + ACTIONS(2430), 1, + anon_sym_if, + ACTIONS(2434), 1, + anon_sym_and, + ACTIONS(2436), 1, + anon_sym_or, + ACTIONS(2177), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - sym__semicolon, - [53146] = 4, + anon_sym_COLON, + [63472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_DOT, - STATE(1051), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2276), 4, - anon_sym_import, + ACTIONS(2430), 1, + anon_sym_if, + ACTIONS(2434), 1, + anon_sym_and, + ACTIONS(2436), 1, + anon_sym_or, + ACTIONS(2181), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - [53162] = 7, + anon_sym_COLON, + [63491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2050), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_and, - ACTIONS(1883), 1, anon_sym_or, - ACTIONS(1893), 1, + [63504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2369), 7, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1895), 1, anon_sym_if, - ACTIONS(2278), 1, - anon_sym_COLON, - STATE(982), 1, - aux_sym_expression_list_repeat1, - [53184] = 4, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_RBRACE, + [63517] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_DOT, - STATE(1047), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2276), 4, - sym__newline, + ACTIONS(2075), 1, + anon_sym_async, + ACTIONS(2077), 1, + anon_sym_for, + ACTIONS(2472), 1, anon_sym_COMMA, - anon_sym_as, - sym__semicolon, - [53200] = 6, + ACTIONS(2474), 1, + anon_sym_RBRACE, + STATE(1100), 1, + sym_for_in_clause, + STATE(1433), 1, + aux_sym_dictionary_repeat1, + STATE(1721), 1, + sym__comprehension_clauses, + [63542] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2284), 1, - anon_sym_COLON, - ACTIONS(2282), 2, + ACTIONS(2295), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [53220] = 5, + STATE(1260), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2476), 2, + sym__newline, + anon_sym_SEMI, + [63565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2106), 1, + anon_sym_if, + ACTIONS(2108), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2110), 1, anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2286), 3, + ACTIONS(2478), 4, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [63584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2480), 1, + anon_sym_COMMA, + STATE(1221), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2482), 4, + anon_sym_RBRACE, anon_sym_EQ, - [53238] = 3, - ACTIONS(1948), 1, + anon_sym_COLON2, + sym_type_conversion, + [63600] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2091), 1, + anon_sym_DOT, + STATE(1241), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2484), 4, + anon_sym_import, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [63616] = 3, + ACTIONS(2065), 1, sym_comment, - ACTIONS(2288), 2, + ACTIONS(2486), 2, anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2290), 4, + anon_sym_BSLASH, + ACTIONS(2488), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [53252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2294), 1, - anon_sym_AT, - STATE(1045), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(2292), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [53268] = 3, - ACTIONS(1948), 1, + [63630] = 3, + ACTIONS(2065), 1, sym_comment, - ACTIONS(2297), 2, + ACTIONS(2490), 2, anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2299), 4, + anon_sym_BSLASH, + ACTIONS(2492), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [53282] = 4, + [63644] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2494), 1, anon_sym_DOT, - STATE(1038), 1, + STATE(1233), 1, aux_sym_match_value_pattern_repeat1, - ACTIONS(2301), 4, + ACTIONS(2484), 4, sym__newline, anon_sym_COMMA, anon_sym_as, - sym__semicolon, - [53298] = 3, - ACTIONS(1948), 1, + anon_sym_SEMI, + [63660] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2498), 1, + anon_sym_COLON, + ACTIONS(2500), 1, + anon_sym_EQ, + STATE(1327), 1, + sym__type_bound, + STATE(1529), 1, + sym__type_param_default, + ACTIONS(2496), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [63680] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2502), 1, + anon_sym_COMMA, + STATE(1221), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2505), 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [63696] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2507), 1, + anon_sym_COMMA, + STATE(1222), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2505), 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [63712] = 3, + ACTIONS(2065), 1, sym_comment, - ACTIONS(2303), 2, + ACTIONS(2510), 2, anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2305), 4, + anon_sym_BSLASH, + ACTIONS(2512), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [53312] = 6, + [63726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2309), 1, - anon_sym_COLON, - ACTIONS(2307), 2, + ACTIONS(2514), 3, + sym__newline, anon_sym_COMMA, - anon_sym_RBRACK, - [53332] = 7, + anon_sym_SEMI, + [63744] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1893), 1, + ACTIONS(2171), 1, + anon_sym_RPAREN, + ACTIONS(2173), 1, anon_sym_COMMA, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2311), 1, - anon_sym_COLON, - STATE(982), 1, - aux_sym_expression_list_repeat1, - [53354] = 4, + STATE(1451), 1, + aux_sym_argument_list_repeat1, + [63766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_DOT, - STATE(881), 1, - aux_sym_match_value_pattern_repeat1, - ACTIONS(2301), 4, - anon_sym_import, - anon_sym_RPAREN, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, + anon_sym_and, + ACTIONS(2263), 1, + anon_sym_or, + ACTIONS(2516), 3, + sym__newline, anon_sym_COMMA, - anon_sym_as, - [53370] = 7, + anon_sym_SEMI, + [63784] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(1893), 1, + ACTIONS(2518), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2313), 1, - anon_sym_COLON, - STATE(982), 1, - aux_sym_expression_list_repeat1, - [53392] = 5, + anon_sym_SEMI, + [63802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(2069), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2315), 3, - sym__newline, + ACTIONS(2520), 3, + anon_sym_RPAREN, anon_sym_COMMA, - sym__semicolon, - [53410] = 3, - ACTIONS(1948), 1, + anon_sym_COLON, + [63820] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2317), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2319), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [53424] = 7, + ACTIONS(2522), 1, + anon_sym_COMMA, + STATE(1222), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2482), 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [63836] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1893), 1, - anon_sym_COMMA, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2321), 1, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(2524), 1, anon_sym_COLON, - STATE(982), 1, + STATE(1232), 1, aux_sym_expression_list_repeat1, - [53446] = 3, - ACTIONS(1948), 1, + [63858] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2323), 2, - anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2325), 4, - sym__string_content, - sym__string_end, - sym__escape_interpolation, - sym_escape_sequence, - [53460] = 4, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2526), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [63876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2528), 1, anon_sym_COMMA, - STATE(1057), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(2327), 4, + STATE(1222), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2482), 4, anon_sym_RPAREN, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, - [53476] = 5, + anon_sym_RBRACE, + [63892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2494), 1, + anon_sym_DOT, + STATE(1234), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2530), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_as, + anon_sym_SEMI, + [63908] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2532), 1, + anon_sym_DOT, + STATE(1234), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2054), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_as, + anon_sym_SEMI, + [63924] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2332), 3, - anon_sym_RPAREN, + ACTIONS(2357), 1, anon_sym_COMMA, + ACTIONS(2535), 1, anon_sym_COLON, - [53494] = 5, + STATE(1232), 1, + aux_sym_expression_list_repeat1, + [63946] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2334), 3, - anon_sym_RPAREN, + ACTIONS(2357), 1, anon_sym_COMMA, + ACTIONS(2537), 1, anon_sym_COLON, - [53512] = 7, + STATE(1232), 1, + aux_sym_expression_list_repeat1, + [63968] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(1960), 1, - anon_sym_RPAREN, - ACTIONS(1962), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - STATE(1286), 1, - aux_sym_argument_list_repeat1, - [53534] = 2, + ACTIONS(2539), 1, + anon_sym_COLON, + STATE(1232), 1, + aux_sym_expression_list_repeat1, + [63990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2336), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(2541), 3, + anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_RBRACE, - [53546] = 6, + anon_sym_EQ, + [64008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2340), 1, - anon_sym_COLON, - ACTIONS(2342), 1, - anon_sym_EQ, - STATE(1176), 1, - sym__type_bound, - STATE(1364), 1, - sym__type_param_default, - ACTIONS(2338), 2, + ACTIONS(2095), 6, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, anon_sym_RBRACK, - [53566] = 5, + anon_sym_RBRACE, + [64020] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(2069), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2223), 3, - sym__newline, - anon_sym_EQ, - sym__semicolon, - [53584] = 5, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(2543), 1, + anon_sym_COLON, + STATE(1232), 1, + aux_sym_expression_list_repeat1, + [64042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2159), 1, - anon_sym_if, - ACTIONS(2161), 1, - anon_sym_and, - ACTIONS(2163), 1, - anon_sym_or, - ACTIONS(2344), 3, + ACTIONS(2091), 1, + anon_sym_DOT, + STATE(1032), 1, + aux_sym_match_value_pattern_repeat1, + ACTIONS(2530), 4, + anon_sym_import, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_COLON, - [53602] = 7, + [64058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1893), 1, + ACTIONS(2547), 1, anon_sym_COMMA, - ACTIONS(1895), 1, + STATE(1242), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(2545), 4, + anon_sym_RPAREN, anon_sym_if, - ACTIONS(2346), 1, anon_sym_COLON, - STATE(982), 1, - aux_sym_expression_list_repeat1, - [53624] = 7, + anon_sym_RBRACK, + [64074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2430), 1, + anon_sym_if, + ACTIONS(2434), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2436), 1, anon_sym_or, - ACTIONS(1893), 1, + ACTIONS(2550), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_COLON, + [64092] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2552), 6, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1895), 1, anon_sym_if, - ACTIONS(2348), 1, anon_sym_COLON, - STATE(982), 1, - aux_sym_expression_list_repeat1, - [53646] = 3, - ACTIONS(1948), 1, + anon_sym_RBRACK, + anon_sym_RBRACE, + [64104] = 3, + ACTIONS(2065), 1, sym_comment, - ACTIONS(2350), 2, + ACTIONS(2554), 2, anon_sym_LBRACE2, - sym__not_escape_sequence, - ACTIONS(2352), 4, + anon_sym_BSLASH, + ACTIONS(2556), 4, sym__string_content, sym__string_end, sym__escape_interpolation, sym_escape_sequence, - [53660] = 5, + [64118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(2069), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2354), 3, - sym__newline, + ACTIONS(2560), 1, + anon_sym_COLON, + ACTIONS(2558), 2, anon_sym_COMMA, - sym__semicolon, - [53678] = 5, + anon_sym_RBRACK, + [64138] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(2069), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2356), 3, - sym__newline, + ACTIONS(2564), 1, + anon_sym_COLON, + ACTIONS(2562), 2, anon_sym_COMMA, - sym__semicolon, - [53696] = 2, + anon_sym_RBRACK, + [64158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 6, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RBRACE, - [53708] = 6, + ACTIONS(2568), 1, + anon_sym_AT, + STATE(1248), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(2566), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [64174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2360), 1, + ACTIONS(2573), 1, anon_sym_COLON, - ACTIONS(2358), 2, + ACTIONS(2571), 2, anon_sym_COMMA, anon_sym_RBRACK, - [53728] = 6, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2362), 1, - anon_sym_RBRACE, - ACTIONS(2364), 1, - anon_sym_LBRACE2, - ACTIONS(2367), 1, - aux_sym_format_specifier_token1, - STATE(1072), 1, - aux_sym_format_specifier_repeat1, - STATE(1255), 1, - sym_interpolation, - [53747] = 5, + [64194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2003), 2, + ACTIONS(2390), 3, sym__newline, - sym__semicolon, - [53764] = 6, + anon_sym_EQ, + anon_sym_SEMI, + [64212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, - sym_identifier, - ACTIONS(2370), 1, - anon_sym_LPAREN, - STATE(1105), 1, - sym_dotted_name, - STATE(1159), 1, - sym_aliased_import, - STATE(1343), 1, - sym__import_list, - [53783] = 5, + ACTIONS(2575), 1, + anon_sym_COMMA, + STATE(1221), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2482), 4, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [64228] = 3, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2577), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2579), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [64242] = 3, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2581), 2, + anon_sym_LBRACE2, + anon_sym_BSLASH, + ACTIONS(2583), 4, + sym__string_content, + sym__string_end, + sym__escape_interpolation, + sym_escape_sequence, + [64256] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2372), 2, + ACTIONS(2357), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [53800] = 6, + ACTIONS(2585), 1, + anon_sym_COLON, + STATE(1232), 1, + aux_sym_expression_list_repeat1, + [64278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_COLON, ACTIONS(2376), 1, - anon_sym_RBRACE, - ACTIONS(2378), 1, - anon_sym_EQ, - ACTIONS(2380), 1, - sym_type_conversion, - STATE(1460), 1, - sym_format_specifier, - [53819] = 4, + sym_identifier, + STATE(1306), 1, + sym_dotted_name, + STATE(1486), 1, + sym_aliased_import, + ACTIONS(2587), 2, + sym__newline, + anon_sym_SEMI, + [64295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 1, + ACTIONS(2589), 1, + anon_sym_LPAREN, + ACTIONS(2591), 1, + anon_sym_COLON, + ACTIONS(2593), 1, + anon_sym_LBRACK, + STATE(1453), 1, + sym_type_parameters, + STATE(1601), 1, + sym_argument_list, + [64314] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2069), 1, anon_sym_COMMA, - STATE(1099), 1, + STATE(1259), 1, aux_sym__collection_elements_repeat1, - ACTIONS(2382), 3, + ACTIONS(2079), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [53834] = 4, + [64329] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2386), 1, - anon_sym_COMMA, - STATE(1096), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2131), 3, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, + anon_sym_and, + ACTIONS(2263), 1, + anon_sym_or, + ACTIONS(2418), 2, sym__newline, - anon_sym_from, - sym__semicolon, - [53849] = 4, + anon_sym_SEMI, + [64346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2388), 1, + ACTIONS(2597), 1, anon_sym_COMMA, - STATE(1099), 1, + STATE(1286), 1, aux_sym__collection_elements_repeat1, - ACTIONS(2382), 3, + ACTIONS(2595), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [53864] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2233), 1, - sym_identifier, - STATE(1132), 1, - sym_dotted_name, - STATE(1289), 1, - sym_aliased_import, - ACTIONS(2390), 2, - sym__newline, - sym__semicolon, - [53881] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2063), 1, - anon_sym_and, - ACTIONS(2065), 1, - anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2392), 2, - sym__newline, - sym__semicolon, - [53898] = 4, + [64361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2394), 1, + ACTIONS(2599), 1, anon_sym_COMMA, - STATE(1096), 1, + STATE(1280), 1, aux_sym_expression_list_repeat1, - ACTIONS(2131), 3, + ACTIONS(2482), 3, sym__newline, anon_sym_from, - sym__semicolon, - [53913] = 5, + anon_sym_SEMI, + [64376] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2195), 2, + ACTIONS(2601), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [53930] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2396), 1, - anon_sym_LPAREN, - ACTIONS(2398), 1, - anon_sym_COLON, - ACTIONS(2400), 1, - anon_sym_LBRACK, - STATE(1210), 1, - sym_type_parameters, - STATE(1402), 1, - sym_argument_list, - [53949] = 5, + [64393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2402), 2, + ACTIONS(2603), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [53966] = 2, + [64410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2404), 5, + ACTIONS(2605), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, - [53977] = 5, + [64421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2406), 2, + ACTIONS(2607), 2, anon_sym_COMMA, anon_sym_RBRACK, - [53994] = 6, + [64438] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_COLON, - ACTIONS(2408), 1, + ACTIONS(2609), 1, anon_sym_RBRACE, - ACTIONS(2410), 1, + ACTIONS(2611), 1, anon_sym_EQ, - ACTIONS(2412), 1, + ACTIONS(2613), 1, + anon_sym_COLON2, + ACTIONS(2615), 1, sym_type_conversion, - STATE(1470), 1, + STATE(1652), 1, sym_format_specifier, - [54013] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2327), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - [54024] = 5, + [64457] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2414), 2, + ACTIONS(2617), 2, anon_sym_COMMA, anon_sym_RBRACK, - [54041] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2063), 1, - anon_sym_and, - ACTIONS(2065), 1, - anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2416), 2, - sym__newline, - sym__semicolon, - [54058] = 5, + [64474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2418), 2, + ACTIONS(2281), 5, anon_sym_RPAREN, anon_sym_COMMA, - [54075] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RBRACE, + [64485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(2069), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2420), 2, - sym__newline, - sym__semicolon, - [54092] = 5, + ACTIONS(2619), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [64502] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, anon_sym_and, - ACTIONS(2065), 1, + ACTIONS(2263), 1, anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2422), 2, + ACTIONS(2621), 2, sym__newline, - sym__semicolon, - [54109] = 4, + anon_sym_SEMI, + [64519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(2623), 1, anon_sym_COMMA, - STATE(1077), 1, + STATE(1286), 1, aux_sym__collection_elements_repeat1, - ACTIONS(1907), 3, + ACTIONS(2595), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [54124] = 4, + [64534] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2424), 1, - anon_sym_COMMA, - STATE(1096), 1, - aux_sym_expression_list_repeat1, - ACTIONS(2075), 3, + ACTIONS(2376), 1, + sym_identifier, + STATE(1306), 1, + sym_dotted_name, + STATE(1486), 1, + sym_aliased_import, + ACTIONS(2625), 2, sym__newline, - anon_sym_from, - sym__semicolon, - [54139] = 5, + anon_sym_SEMI, + [64551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(2376), 1, sym_identifier, - STATE(1132), 1, + ACTIONS(2627), 1, + anon_sym_LPAREN, + STATE(1290), 1, sym_dotted_name, - STATE(1289), 1, + STATE(1368), 1, sym_aliased_import, - ACTIONS(2427), 2, - sym__newline, - sym__semicolon, - [54156] = 6, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2429), 1, - anon_sym_RBRACE, - ACTIONS(2431), 1, - anon_sym_LBRACE2, - ACTIONS(2433), 1, - aux_sym_format_specifier_token1, - STATE(1104), 1, - aux_sym_format_specifier_repeat1, - STATE(1255), 1, - sym_interpolation, - [54175] = 4, + STATE(1527), 1, + sym__import_list, + [64570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 1, + ACTIONS(2281), 5, anon_sym_COMMA, - STATE(1099), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(2435), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_RBRACE, - [54190] = 5, + anon_sym_EQ, + anon_sym_COLON2, + sym_type_conversion, + [64581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2440), 2, + ACTIONS(2629), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [54207] = 5, + [64598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(2376), 1, sym_identifier, - STATE(1132), 1, + STATE(1306), 1, sym_dotted_name, - STATE(1289), 1, + STATE(1486), 1, sym_aliased_import, - ACTIONS(2427), 2, + ACTIONS(2625), 2, sym__newline, - sym__semicolon, - [54224] = 5, + anon_sym_SEMI, + [64615] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2442), 2, + ACTIONS(2631), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [64632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2545), 5, anon_sym_RPAREN, anon_sym_COMMA, - [54241] = 6, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [64643] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2633), 1, + anon_sym_COMMA, + STATE(1280), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2482), 3, + sym__newline, + anon_sym_from, + anon_sym_SEMI, + [64658] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, + anon_sym_and, + ACTIONS(2263), 1, + anon_sym_or, + ACTIONS(2635), 2, + sym__newline, + anon_sym_SEMI, + [64675] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2637), 1, + anon_sym_COMMA, + STATE(1280), 1, + aux_sym_expression_list_repeat1, + ACTIONS(2505), 3, + sym__newline, + anon_sym_from, + anon_sym_SEMI, + [64690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(2589), 1, anon_sym_LPAREN, - ACTIONS(2400), 1, + ACTIONS(2593), 1, anon_sym_LBRACK, - ACTIONS(2444), 1, + ACTIONS(2640), 1, anon_sym_COLON, - STATE(1239), 1, + STATE(1493), 1, sym_type_parameters, - STATE(1444), 1, + STATE(1710), 1, sym_argument_list, - [54260] = 6, - ACTIONS(1948), 1, + [64709] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2478), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [64726] = 6, + ACTIONS(2065), 1, sym_comment, - ACTIONS(2431), 1, + ACTIONS(2642), 1, + anon_sym_RBRACE, + ACTIONS(2644), 1, anon_sym_LBRACE2, - ACTIONS(2446), 1, + ACTIONS(2646), 1, + aux_sym_format_specifier_token1, + STATE(1288), 1, + aux_sym_format_specifier_repeat1, + STATE(1497), 1, + sym_interpolation, + [64745] = 6, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2648), 1, anon_sym_RBRACE, - ACTIONS(2448), 1, + ACTIONS(2650), 1, + anon_sym_LBRACE2, + ACTIONS(2653), 1, aux_sym_format_specifier_token1, - STATE(1072), 1, + STATE(1284), 1, aux_sym_format_specifier_repeat1, - STATE(1255), 1, + STATE(1497), 1, sym_interpolation, - [54279] = 5, + [64764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 1, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, + anon_sym_and, + ACTIONS(2263), 1, + anon_sym_or, + ACTIONS(2656), 2, + sym__newline, + anon_sym_SEMI, + [64781] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2660), 1, + anon_sym_COMMA, + STATE(1286), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(2658), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [64796] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2613), 1, + anon_sym_COLON2, + ACTIONS(2663), 1, + anon_sym_RBRACE, + ACTIONS(2665), 1, + anon_sym_EQ, + ACTIONS(2667), 1, + sym_type_conversion, + STATE(1587), 1, + sym_format_specifier, + [64815] = 6, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2644), 1, + anon_sym_LBRACE2, + ACTIONS(2669), 1, + anon_sym_RBRACE, + ACTIONS(2671), 1, + aux_sym_format_specifier_token1, + STATE(1284), 1, + aux_sym_format_specifier_repeat1, + STATE(1497), 1, + sym_interpolation, + [64834] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 5, + sym__newline, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(2452), 1, anon_sym_as, - STATE(1145), 1, + anon_sym_SEMI, + [64845] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2673), 1, + anon_sym_COMMA, + ACTIONS(2675), 1, + anon_sym_as, + STATE(1359), 1, aux_sym__import_list_repeat1, - ACTIONS(2454), 2, + ACTIONS(2677), 2, sym__newline, - sym__semicolon, - [54296] = 5, + anon_sym_SEMI, + [64862] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2679), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [64879] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, + anon_sym_and, + ACTIONS(2263), 1, + anon_sym_or, + ACTIONS(2681), 2, + sym__newline, + anon_sym_SEMI, + [64896] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2685), 1, + anon_sym_COMMA, + STATE(993), 1, + aux_sym__patterns_repeat1, + ACTIONS(2683), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [64910] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2687), 1, + anon_sym_COMMA, + STATE(1242), 1, + aux_sym_open_sequence_match_pattern_repeat1, + ACTIONS(1859), 2, + anon_sym_if, + anon_sym_COLON, + [64924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2689), 1, + anon_sym_COLON, + [64940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2691), 1, + anon_sym_COLON, + [64956] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2456), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [54313] = 2, + ACTIONS(2693), 1, + anon_sym_else, + [64972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1868), 5, - sym__newline, - anon_sym_DOT, + ACTIONS(2695), 1, + anon_sym_case, + STATE(610), 1, + sym_cases, + STATE(453), 2, + sym_case_block, + aux_sym_cases_repeat1, + [64986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2697), 1, anon_sym_COMMA, - anon_sym_as, - sym__semicolon, - [54324] = 5, + STATE(1355), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2699), 2, + sym__newline, + anon_sym_SEMI, + [65000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2701), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [65010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 1, + ACTIONS(2593), 1, anon_sym_LBRACK, - ACTIONS(2458), 1, + ACTIONS(2703), 1, anon_sym_LPAREN, - STATE(1359), 1, + STATE(1554), 1, sym_parameters, - STATE(1367), 1, + STATE(1557), 1, sym_type_parameters, - [54340] = 4, + [65026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2460), 1, - anon_sym_COMMA, - STATE(1124), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2462), 2, - sym__newline, - sym__semicolon, - [54354] = 4, + ACTIONS(2613), 1, + anon_sym_COLON2, + ACTIONS(2705), 1, + anon_sym_RBRACE, + ACTIONS(2707), 1, + sym_type_conversion, + STATE(1692), 1, + sym_format_specifier, + [65042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 1, - anon_sym_COMMA, - STATE(1110), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2354), 2, + ACTIONS(562), 1, sym__newline, + ACTIONS(2709), 1, + anon_sym_SEMI, + STATE(129), 1, sym__semicolon, - [54368] = 4, + STATE(1357), 1, + aux_sym__simple_statements_repeat1, + [65058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2467), 1, - anon_sym_COMMA, - STATE(1111), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2470), 2, + ACTIONS(2711), 1, + anon_sym_case, + STATE(555), 1, + sym_cases, + STATE(452), 2, + sym_case_block, + aux_sym_cases_repeat1, + [65072] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2711), 1, + anon_sym_case, + STATE(556), 1, + sym_cases, + STATE(452), 2, + sym_case_block, + aux_sym_cases_repeat1, + [65086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 1, + anon_sym_as, + ACTIONS(2713), 3, sym__newline, - sym__semicolon, - [54382] = 5, + anon_sym_COMMA, + anon_sym_SEMI, + [65098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2472), 1, + ACTIONS(2715), 1, + anon_sym_else, + [65114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2390), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - [54398] = 5, + anon_sym_EQ, + [65124] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2717), 1, + anon_sym_COMMA, + STATE(1309), 1, + aux_sym__import_list_repeat1, + ACTIONS(2720), 2, + sym__newline, + anon_sym_SEMI, + [65138] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2613), 1, + anon_sym_COLON2, + ACTIONS(2722), 1, + anon_sym_RBRACE, + ACTIONS(2724), 1, + sym_type_conversion, + STATE(1641), 1, + sym_format_specifier, + [65154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(2726), 1, sym_identifier, - STATE(1105), 1, + STATE(1330), 1, sym_dotted_name, - STATE(1159), 1, + STATE(1395), 1, sym_aliased_import, - STATE(1352), 1, + STATE(1701), 1, sym__import_list, - [54414] = 4, + [65170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 1, - anon_sym_DOT, - STATE(1114), 1, - aux_sym_import_prefix_repeat1, - ACTIONS(2474), 2, - anon_sym_import, + ACTIONS(2726), 1, sym_identifier, - [54428] = 4, + STATE(1330), 1, + sym_dotted_name, + STATE(1395), 1, + sym_aliased_import, + STATE(1702), 1, + sym__import_list, + [65186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2481), 1, - anon_sym_COMMA, - STATE(1115), 1, - aux_sym_with_clause_repeat1, - ACTIONS(2479), 2, + ACTIONS(2728), 4, anon_sym_RPAREN, - anon_sym_COLON, - [54442] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2486), 1, anon_sym_COMMA, - STATE(848), 1, - aux_sym__patterns_repeat1, - ACTIONS(2484), 2, - anon_sym_RPAREN, anon_sym_RBRACK, - [54456] = 2, + anon_sym_RBRACE, + [65196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 4, + ACTIONS(2730), 4, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [54466] = 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [65206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2157), 4, + ACTIONS(2392), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RBRACE, - [54476] = 4, + [65216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(312), 1, - sym__template_string_start, - ACTIONS(1917), 1, - anon_sym_COLON, - STATE(572), 2, - sym_template_string, - aux_sym_concatenated_template_string_repeat1, - [54490] = 4, + ACTIONS(2732), 1, + anon_sym_COMMA, + STATE(1340), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2734), 2, + sym__newline, + anon_sym_SEMI, + [65230] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(310), 1, sym__string_start, - ACTIONS(1917), 1, + ACTIONS(2097), 1, anon_sym_COLON, - STATE(573), 2, + STATE(616), 2, sym_string, aux_sym_concatenated_string_repeat1, - [54504] = 3, + [65244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2490), 1, - anon_sym_EQ, - ACTIONS(2488), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(312), 1, + sym__template_string_start, + ACTIONS(2097), 1, anon_sym_COLON, - [54516] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2492), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [54526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2494), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - [54536] = 4, + STATE(617), 2, + sym_template_string, + aux_sym_concatenated_template_string_repeat1, + [65258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 1, + ACTIONS(2736), 1, anon_sym_COMMA, - STATE(1111), 1, + STATE(1319), 1, aux_sym_print_statement_repeat1, - ACTIONS(2498), 2, + ACTIONS(2739), 2, sym__newline, - sym__semicolon, - [54550] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2500), 1, - anon_sym_COLON, - [54566] = 5, + anon_sym_SEMI, + [65272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2502), 1, - anon_sym_COLON, - [54582] = 5, + ACTIONS(2741), 1, + anon_sym_COMMA, + STATE(1320), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2518), 2, + sym__newline, + anon_sym_SEMI, + [65286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, + ACTIONS(2376), 1, sym_identifier, - STATE(1172), 1, + STATE(1290), 1, sym_dotted_name, - STATE(1182), 1, + STATE(1368), 1, sym_aliased_import, - STATE(1447), 1, + STATE(1507), 1, sym__import_list, - [54598] = 5, + [65302] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2506), 1, + ACTIONS(2744), 1, anon_sym_COLON, - [54614] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2504), 1, - sym_identifier, - STATE(1172), 1, - sym_dotted_name, - STATE(1182), 1, - sym_aliased_import, - STATE(1386), 1, - sym__import_list, - [54630] = 4, + [65318] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 1, - anon_sym_COMMA, - STATE(1111), 1, - aux_sym_print_statement_repeat1, - ACTIONS(2510), 2, - sym__newline, - sym__semicolon, - [54644] = 4, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2703), 1, + anon_sym_LPAREN, + STATE(1511), 1, + sym_parameters, + STATE(1512), 1, + sym_type_parameters, + [65334] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, - anon_sym_COMMA, - STATE(1131), 1, - aux_sym__import_list_repeat1, - ACTIONS(2515), 2, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2261), 1, + anon_sym_and, + ACTIONS(2263), 1, + anon_sym_or, + ACTIONS(2746), 1, sym__newline, - sym__semicolon, - [54658] = 3, + [65350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2452), 1, - anon_sym_as, - ACTIONS(2517), 3, - sym__newline, + ACTIONS(2750), 1, anon_sym_COMMA, - sym__semicolon, - [54670] = 4, + STATE(1325), 1, + aux_sym_with_clause_repeat1, + ACTIONS(2748), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [65364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2519), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - STATE(1131), 1, - aux_sym__import_list_repeat1, - ACTIONS(2521), 2, + STATE(1354), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2753), 2, sym__newline, - sym__semicolon, - [54684] = 4, + anon_sym_SEMI, + [65378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2500), 1, + anon_sym_EQ, + STATE(1522), 1, + sym__type_param_default, + ACTIONS(2755), 2, anon_sym_COMMA, - STATE(1110), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2523), 2, - sym__newline, - sym__semicolon, - [54698] = 4, + anon_sym_RBRACK, + [65392] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2525), 1, - anon_sym_COMMA, - STATE(1135), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2528), 2, - sym__newline, - sym__semicolon, - [54712] = 5, + ACTIONS(2625), 1, + anon_sym_RPAREN, + ACTIONS(2726), 1, + sym_identifier, + STATE(1382), 1, + sym_dotted_name, + STATE(1540), 1, + sym_aliased_import, + [65408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 1, - anon_sym_LBRACK, - ACTIONS(2458), 1, - anon_sym_LPAREN, - STATE(1322), 1, - sym_type_parameters, - STATE(1355), 1, - sym_parameters, - [54728] = 4, + ACTIONS(2625), 1, + anon_sym_RPAREN, + ACTIONS(2726), 1, + sym_identifier, + STATE(1382), 1, + sym_dotted_name, + STATE(1540), 1, + sym_aliased_import, + [65424] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_case, - STATE(541), 1, - sym_cases, - STATE(414), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54742] = 4, + ACTIONS(2677), 1, + anon_sym_RPAREN, + ACTIONS(2757), 1, + anon_sym_COMMA, + ACTIONS(2759), 1, + anon_sym_as, + STATE(1488), 1, + aux_sym__import_list_repeat1, + [65440] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2530), 1, - anon_sym_case, - STATE(484), 1, - sym_cases, - STATE(414), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54756] = 5, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2761), 1, + anon_sym_COLON, + [65456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_COLON, - ACTIONS(2532), 1, - anon_sym_RBRACE, - ACTIONS(2534), 1, - sym_type_conversion, - STATE(1410), 1, - sym_format_specifier, - [54772] = 5, + ACTIONS(2763), 1, + anon_sym_SEMI, + ACTIONS(2765), 1, + sym__newline, + STATE(132), 1, + sym__semicolon, + STATE(1333), 1, + aux_sym__simple_statements_repeat1, + [65472] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2063), 1, - anon_sym_and, - ACTIONS(2065), 1, - anon_sym_or, - ACTIONS(2069), 1, - anon_sym_if, - ACTIONS(2536), 1, + ACTIONS(566), 1, sym__newline, - [54788] = 4, + ACTIONS(2767), 1, + anon_sym_SEMI, + STATE(131), 1, + sym__semicolon, + STATE(1357), 1, + aux_sym__simple_statements_repeat1, + [65488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2538), 1, - anon_sym_COMMA, - STATE(1057), 1, - aux_sym_open_sequence_match_pattern_repeat1, - ACTIONS(1723), 2, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, anon_sym_if, + ACTIONS(2769), 1, anon_sym_COLON, - [54802] = 5, + [65504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2540), 1, + ACTIONS(2771), 1, anon_sym_else, - [54818] = 4, + [65520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2775), 1, + anon_sym_DOT, + STATE(1362), 1, + aux_sym_import_prefix_repeat1, + ACTIONS(2773), 2, + anon_sym_import, + sym_identifier, + [65534] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2777), 1, anon_sym_COMMA, - STATE(1156), 1, + STATE(1337), 1, aux_sym_global_statement_repeat1, - ACTIONS(2544), 2, + ACTIONS(2780), 2, sym__newline, - sym__semicolon, - [54832] = 4, + anon_sym_SEMI, + [65548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2426), 1, anon_sym_COMMA, - STATE(1155), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2546), 2, - sym__newline, - sym__semicolon, - [54846] = 4, + STATE(1364), 1, + aux_sym_exception_list_repeat1, + ACTIONS(2782), 2, + anon_sym_as, + anon_sym_COLON, + [65562] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2784), 1, + anon_sym_else, + [65578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2786), 1, anon_sym_COMMA, - STATE(1131), 1, - aux_sym__import_list_repeat1, - ACTIONS(2521), 2, + STATE(1319), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2788), 2, sym__newline, - sym__semicolon, - [54860] = 5, + anon_sym_SEMI, + [65592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2390), 1, + ACTIONS(2792), 1, + anon_sym_EQ, + ACTIONS(2790), 3, anon_sym_RPAREN, - ACTIONS(2504), 1, - sym_identifier, - STATE(1226), 1, - sym_dotted_name, - STATE(1358), 1, - sym_aliased_import, - [54876] = 4, + anon_sym_COMMA, + anon_sym_COLON, + [65604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_case, - STATE(530), 1, - sym_cases, - STATE(390), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54890] = 4, + ACTIONS(2796), 1, + anon_sym_COLON, + ACTIONS(2798), 1, + anon_sym_EQ, + ACTIONS(2794), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2550), 1, - anon_sym_case, - STATE(529), 1, - sym_cases, - STATE(390), 2, - sym_case_block, - aux_sym_cases_repeat1, - [54904] = 5, + ACTIONS(556), 1, + sym__newline, + ACTIONS(2800), 1, + anon_sym_SEMI, + STATE(128), 1, + sym__semicolon, + STATE(1357), 1, + aux_sym__simple_statements_repeat1, + [65634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2400), 1, - anon_sym_LBRACK, - ACTIONS(2458), 1, - anon_sym_LPAREN, - STATE(1317), 1, - sym_type_parameters, - STATE(1349), 1, - sym_parameters, - [54920] = 5, + ACTIONS(2398), 1, + anon_sym_COMMA, + STATE(1320), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2802), 2, + sym__newline, + anon_sym_SEMI, + [65648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2552), 1, - anon_sym_COLON, - [54936] = 5, + ACTIONS(2804), 1, + anon_sym_else, + [65664] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2554), 1, - anon_sym_COLON, - [54952] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2556), 1, - anon_sym_COMMA, - STATE(1152), 1, - aux_sym_exception_list_repeat1, - ACTIONS(2559), 2, - anon_sym_as, + ACTIONS(2806), 1, anon_sym_COLON, - [54966] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2400), 1, - anon_sym_LBRACK, - ACTIONS(2458), 1, - anon_sym_LPAREN, - STATE(1319), 1, - sym_type_parameters, - STATE(1350), 1, - sym_parameters, - [54982] = 5, + [65680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2561), 1, + ACTIONS(2808), 1, anon_sym_COLON, - [54998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_COMMA, - STATE(1135), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2563), 2, - sym__newline, - sym__semicolon, - [55012] = 4, + [65696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_COMMA, - STATE(1135), 1, - aux_sym_global_statement_repeat1, - ACTIONS(2565), 2, + ACTIONS(2810), 1, + anon_sym_SEMI, + ACTIONS(2812), 1, sym__newline, + STATE(127), 1, sym__semicolon, - [55026] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2569), 1, - anon_sym_COLON, - ACTIONS(2571), 1, - anon_sym_EQ, - ACTIONS(2567), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [55040] = 5, + STATE(1343), 1, + aux_sym__simple_statements_repeat1, + [65712] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2573), 1, + ACTIONS(2814), 1, anon_sym_COLON, - [55056] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2450), 1, - anon_sym_COMMA, - STATE(1133), 1, - aux_sym__import_list_repeat1, - ACTIONS(2454), 2, - sym__newline, - sym__semicolon, - [55070] = 5, + [65728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2575), 1, - anon_sym_else, - [55086] = 5, + ACTIONS(2816), 1, + anon_sym_COLON, + [65744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2577), 1, + ACTIONS(2818), 1, anon_sym_COLON, - [55102] = 5, + [65760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2579), 1, + ACTIONS(2820), 1, anon_sym_COLON, - [55118] = 5, + [65776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, - anon_sym_RPAREN, - ACTIONS(2504), 1, - sym_identifier, - STATE(1226), 1, - sym_dotted_name, - STATE(1358), 1, - sym_aliased_import, - [55134] = 5, + ACTIONS(2822), 1, + anon_sym_COMMA, + STATE(1309), 1, + aux_sym__import_list_repeat1, + ACTIONS(2824), 2, + sym__newline, + anon_sym_SEMI, + [65790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2581), 1, - anon_sym_else, - [55150] = 5, + ACTIONS(2697), 1, + anon_sym_COMMA, + STATE(1337), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2826), 2, + sym__newline, + anon_sym_SEMI, + [65804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 1, - anon_sym_RPAREN, - ACTIONS(2504), 1, - sym_identifier, - STATE(1226), 1, - sym_dotted_name, - STATE(1358), 1, - sym_aliased_import, - [55166] = 5, + ACTIONS(2697), 1, + anon_sym_COMMA, + STATE(1337), 1, + aux_sym_global_statement_repeat1, + ACTIONS(2828), 2, + sym__newline, + anon_sym_SEMI, + [65818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2583), 1, - anon_sym_COLON, - [55182] = 4, + ACTIONS(2832), 1, + anon_sym_COMMA, + STATE(1293), 1, + aux_sym__patterns_repeat1, + ACTIONS(2830), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [65832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - anon_sym_COMMA, - STATE(1110), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(2585), 2, + ACTIONS(2834), 1, + anon_sym_SEMI, + ACTIONS(2837), 1, sym__newline, + STATE(133), 1, sym__semicolon, - [55196] = 2, + STATE(1357), 1, + aux_sym__simple_statements_repeat1, + [65848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2009), 4, + ACTIONS(2281), 4, sym__newline, anon_sym_from, anon_sym_COMMA, - sym__semicolon, - [55206] = 5, + anon_sym_SEMI, + [65858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_and, - ACTIONS(1883), 1, - anon_sym_or, - ACTIONS(1895), 1, - anon_sym_if, - ACTIONS(2587), 1, - anon_sym_COLON, - [55222] = 5, + ACTIONS(2839), 1, + anon_sym_COMMA, + STATE(1309), 1, + aux_sym__import_list_repeat1, + ACTIONS(2824), 2, + sym__newline, + anon_sym_SEMI, + [65872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, + ACTIONS(2841), 1, + anon_sym_COMMA, + STATE(1319), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2843), 2, + sym__newline, + anon_sym_SEMI, + [65886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, anon_sym_and, - ACTIONS(1883), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1895), 1, + ACTIONS(2179), 1, anon_sym_if, - ACTIONS(2589), 1, - anon_sym_else, - [55238] = 4, + ACTIONS(2845), 1, + anon_sym_COLON, + [65902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 1, + ACTIONS(2849), 1, anon_sym_DOT, - STATE(1114), 1, + STATE(1362), 1, aux_sym_import_prefix_repeat1, - ACTIONS(2591), 2, + ACTIONS(2847), 2, anon_sym_import, sym_identifier, - [55252] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2454), 1, - anon_sym_RPAREN, - ACTIONS(2595), 1, - anon_sym_COMMA, - ACTIONS(2597), 1, - anon_sym_as, - STATE(1305), 1, - aux_sym__import_list_repeat1, - [55268] = 2, + [65916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [55278] = 4, + ACTIONS(2695), 1, + anon_sym_case, + STATE(609), 1, + sym_cases, + STATE(453), 2, + sym_case_block, + aux_sym_cases_repeat1, + [65930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 1, - anon_sym_EQ, - STATE(1321), 1, - sym__type_param_default, - ACTIONS(2601), 2, + ACTIONS(2852), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [55292] = 4, + STATE(1364), 1, + aux_sym_exception_list_repeat1, + ACTIONS(2855), 2, + anon_sym_as, + anon_sym_COLON, + [65944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 1, - anon_sym_EQ, - STATE(1323), 1, - sym__type_param_default, - ACTIONS(2603), 2, + ACTIONS(2398), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [55306] = 4, + STATE(1320), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2857), 2, + sym__newline, + anon_sym_SEMI, + [65958] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 1, - anon_sym_EQ, - STATE(1325), 1, - sym__type_param_default, - ACTIONS(2605), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [55320] = 4, + ACTIONS(2161), 1, + anon_sym_and, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2179), 1, + anon_sym_if, + ACTIONS(2859), 1, + anon_sym_else, + [65974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2609), 1, - anon_sym_COMMA, - STATE(1116), 1, - aux_sym__patterns_repeat1, - ACTIONS(2607), 2, + ACTIONS(2587), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [55334] = 4, + ACTIONS(2726), 1, + sym_identifier, + STATE(1382), 1, + sym_dotted_name, + STATE(1540), 1, + sym_aliased_import, + [65990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 1, + ACTIONS(2673), 1, anon_sym_COMMA, - STATE(1152), 1, - aux_sym_exception_list_repeat1, - ACTIONS(2611), 2, - anon_sym_as, - anon_sym_COLON, - [55348] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2374), 1, - anon_sym_COLON, - ACTIONS(2613), 1, - anon_sym_RBRACE, - ACTIONS(2615), 1, - sym_type_conversion, - STATE(1458), 1, - sym_format_specifier, - [55364] = 4, + STATE(1353), 1, + aux_sym__import_list_repeat1, + ACTIONS(2677), 2, + sym__newline, + anon_sym_SEMI, + [66004] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, - anon_sym_COMMA, - ACTIONS(2620), 1, - anon_sym_RBRACE, - STATE(1180), 1, - aux_sym_dictionary_repeat1, - [55377] = 4, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2703), 1, + anon_sym_LPAREN, + STATE(1541), 1, + sym_parameters, + STATE(1576), 1, + sym_type_parameters, + [66020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2622), 1, - sym__semicolon, - ACTIONS(2624), 1, - sym__newline, - STATE(1299), 1, - aux_sym__simple_statements_repeat1, - [55390] = 4, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(2703), 1, + anon_sym_LPAREN, + STATE(1543), 1, + sym_parameters, + STATE(1578), 1, + sym_type_parameters, + [66036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 1, - anon_sym_RPAREN, - ACTIONS(2595), 1, + ACTIONS(2500), 1, + anon_sym_EQ, + STATE(1555), 1, + sym__type_param_default, + ACTIONS(2861), 2, anon_sym_COMMA, - STATE(1267), 1, - aux_sym__import_list_repeat1, - [55403] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2626), 1, - anon_sym_if, - ACTIONS(2628), 1, - anon_sym_COLON, - STATE(1506), 1, - sym_guard, - [55416] = 3, + anon_sym_RBRACK, + [66050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 1, + ACTIONS(2500), 1, + anon_sym_EQ, + STATE(1516), 1, + sym__type_param_default, + ACTIONS(2863), 2, anon_sym_COMMA, - ACTIONS(2632), 2, - anon_sym_if, - anon_sym_COLON, - [55427] = 2, + anon_sym_RBRACK, + [66064] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 3, + ACTIONS(2865), 1, + anon_sym_SEMI, + ACTIONS(2867), 1, sym__newline, - anon_sym_EQ, + STATE(130), 1, sym__semicolon, - [55436] = 2, + STATE(1303), 1, + aux_sym__simple_statements_repeat1, + [66080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2634), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_EQ, - [55445] = 4, + ACTIONS(2869), 1, + sym_identifier, + ACTIONS(2871), 1, + sym_match_wildcard_pattern, + STATE(1263), 1, + sym_match_capture_pattern, + [66093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, + ACTIONS(2873), 1, anon_sym_COMMA, - ACTIONS(2638), 1, + ACTIONS(2876), 1, anon_sym_RBRACK, - STATE(1248), 1, + STATE(1375), 1, aux_sym_type_parameters_repeat1, - [55458] = 4, + [66106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2640), 1, + ACTIONS(2048), 1, anon_sym_RPAREN, - ACTIONS(2642), 1, + ACTIONS(2878), 1, anon_sym_COMMA, - STATE(1194), 1, - aux_sym_argument_list_repeat1, - [55471] = 4, + STATE(1443), 1, + aux_sym__parameters_repeat1, + [66119] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2644), 1, - anon_sym_RPAREN, - ACTIONS(2646), 1, + ACTIONS(2880), 1, anon_sym_COMMA, - STATE(1194), 1, - aux_sym_argument_list_repeat1, - [55484] = 4, + ACTIONS(2882), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_index_expression_list_repeat1, + [66132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 1, - sym_identifier, - STATE(1226), 1, - sym_dotted_name, - STATE(1358), 1, - sym_aliased_import, - [55497] = 3, - ACTIONS(1948), 1, + ACTIONS(2884), 1, + anon_sym_COMMA, + ACTIONS(2887), 1, + anon_sym_RBRACK, + STATE(1378), 1, + aux_sym_index_expression_list_repeat1, + [66145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2889), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_EQ, + [66154] = 3, + ACTIONS(2065), 1, sym_comment, - ACTIONS(2288), 1, + ACTIONS(2510), 1, anon_sym_RBRACE, - ACTIONS(2290), 2, + ACTIONS(2512), 2, anon_sym_LBRACE2, aux_sym_format_specifier_token1, - [55508] = 4, + [66165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(2891), 1, anon_sym_RPAREN, - ACTIONS(2650), 1, + ACTIONS(2893), 1, anon_sym_COMMA, - STATE(1295), 1, + STATE(1413), 1, aux_sym_match_class_pattern_repeat2, - [55521] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2652), 1, - anon_sym_RPAREN, - ACTIONS(2654), 1, - anon_sym_COMMA, - STATE(1194), 1, - aux_sym_argument_list_repeat1, - [55534] = 4, + [66178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2656), 1, + ACTIONS(2759), 1, + anon_sym_as, + ACTIONS(2713), 2, anon_sym_RPAREN, - ACTIONS(2658), 1, anon_sym_COMMA, - STATE(1194), 1, - aux_sym_argument_list_repeat1, - [55547] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 3, - sym__newline, - anon_sym_in, - sym__semicolon, - [55556] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2661), 1, - sym__semicolon, - ACTIONS(2664), 1, - sym__newline, - STATE(1196), 1, - aux_sym__simple_statements_repeat1, - [55569] = 4, + [66189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(2069), 1, anon_sym_COMMA, - ACTIONS(2019), 1, + ACTIONS(2169), 1, anon_sym_RPAREN, - STATE(1293), 1, + STATE(1454), 1, aux_sym__collection_elements_repeat1, - [55582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1862), 1, - anon_sym_COLON, - ACTIONS(2666), 1, - anon_sym_COMMA, - STATE(1284), 1, - aux_sym__parameters_repeat1, - [55595] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1417), 3, - sym__newline, - anon_sym_in, - sym__semicolon, - [55604] = 4, + [66202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2648), 1, + ACTIONS(2720), 1, anon_sym_RPAREN, - ACTIONS(2668), 1, - anon_sym_COMMA, - STATE(1275), 1, - aux_sym_match_class_pattern_repeat1, - [55617] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2670), 1, + ACTIONS(2895), 1, anon_sym_COMMA, - ACTIONS(2673), 1, - anon_sym_RBRACK, - STATE(1201), 1, - aux_sym_index_expression_list_repeat1, - [55630] = 4, + STATE(1384), 1, + aux_sym__import_list_repeat1, + [66215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2675), 1, + ACTIONS(2898), 1, anon_sym_COMMA, - ACTIONS(2678), 1, - anon_sym_RBRACE, - STATE(1202), 1, - aux_sym_match_mapping_pattern_repeat1, - [55643] = 4, + ACTIONS(2900), 1, + anon_sym_COLON, + STATE(1471), 1, + aux_sym__parameters_repeat1, + [66228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, + ACTIONS(2902), 1, anon_sym_COMMA, - ACTIONS(2682), 1, + ACTIONS(2904), 1, anon_sym_RBRACK, - STATE(1257), 1, - aux_sym_index_expression_list_repeat1, - [55656] = 4, + STATE(1375), 1, + aux_sym_type_parameters_repeat1, + [66241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2684), 1, + ACTIONS(2195), 1, anon_sym_RPAREN, - ACTIONS(2686), 1, + ACTIONS(2197), 1, anon_sym_COMMA, - STATE(1189), 1, + STATE(1462), 1, aux_sym_argument_list_repeat1, - [55669] = 4, + [66254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2013), 1, + ACTIONS(2906), 1, anon_sym_RPAREN, - ACTIONS(2015), 1, + ACTIONS(2908), 1, anon_sym_COMMA, - STATE(1193), 1, + STATE(1481), 1, aux_sym_argument_list_repeat1, - [55682] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2688), 1, - anon_sym_COMMA, - ACTIONS(2690), 1, - anon_sym_RBRACK, - STATE(1232), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [55695] = 4, + [66267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2910), 1, anon_sym_COMMA, - ACTIONS(2694), 1, + ACTIONS(2912), 1, anon_sym_RBRACE, - STATE(1180), 1, + STATE(1401), 1, aux_sym_dictionary_repeat1, - [55708] = 4, + [66280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2696), 1, - anon_sym_COMMA, - ACTIONS(2698), 1, - anon_sym_RBRACE, - STATE(1180), 1, - aux_sym_dictionary_repeat1, - [55721] = 2, + ACTIONS(2914), 1, + anon_sym_if, + ACTIONS(2916), 1, + anon_sym_COLON, + STATE(1689), 1, + sym_guard, + [66293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 3, - anon_sym_RPAREN, + ACTIONS(2918), 1, anon_sym_COMMA, + ACTIONS(2920), 2, + anon_sym_if, anon_sym_COLON, - [55730] = 4, + [66304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, - anon_sym_LPAREN, - ACTIONS(2700), 1, - anon_sym_COLON, - STATE(1413), 1, - sym_argument_list, - [55743] = 4, + ACTIONS(2922), 1, + anon_sym_RPAREN, + ACTIONS(2924), 1, + anon_sym_COMMA, + STATE(1392), 1, + aux_sym_argument_list_repeat1, + [66317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(556), 1, + ACTIONS(2927), 1, + anon_sym_in, + ACTIONS(2929), 2, sym__newline, - ACTIONS(2702), 1, - sym__semicolon, - STATE(1196), 1, - aux_sym__simple_statements_repeat1, - [55756] = 4, + anon_sym_SEMI, + [66328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, - sym__semicolon, - ACTIONS(2706), 1, - sym__newline, - STATE(1231), 1, - aux_sym__simple_statements_repeat1, - [55769] = 4, + ACTIONS(2794), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + [66337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, + ACTIONS(2677), 1, anon_sym_RPAREN, - ACTIONS(2708), 1, + ACTIONS(2757), 1, anon_sym_COMMA, - STATE(1249), 1, - aux_sym_match_class_pattern_repeat2, - [55782] = 4, + STATE(1487), 1, + aux_sym__import_list_repeat1, + [66350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2710), 1, + ACTIONS(1893), 1, + anon_sym_RPAREN, + ACTIONS(2931), 1, sym_identifier, - ACTIONS(2712), 1, - sym_match_wildcard_pattern, - STATE(1086), 1, - sym_match_capture_pattern, - [55795] = 4, + STATE(1558), 1, + sym_match_keyword_pattern, + [66363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2191), 1, + ACTIONS(2171), 1, + anon_sym_RPAREN, + ACTIONS(2173), 1, anon_sym_COMMA, - ACTIONS(2193), 1, - anon_sym_RBRACE, - STATE(1208), 1, - aux_sym_dictionary_repeat1, - [55808] = 4, + STATE(1448), 1, + aux_sym_argument_list_repeat1, + [66376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2933), 1, anon_sym_RPAREN, - ACTIONS(2714), 1, + ACTIONS(2935), 1, anon_sym_COMMA, - STATE(1216), 1, - aux_sym__import_list_repeat1, - [55821] = 3, + STATE(1450), 1, + aux_sym_argument_list_repeat1, + [66389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, - anon_sym_EQ, - ACTIONS(2719), 2, - sym__newline, - sym__semicolon, - [55832] = 4, + ACTIONS(1895), 1, + anon_sym_RPAREN, + ACTIONS(2937), 1, + anon_sym_COMMA, + STATE(1468), 1, + aux_sym_match_class_pattern_repeat1, + [66402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(2069), 1, anon_sym_COMMA, - ACTIONS(2007), 1, + ACTIONS(2099), 1, anon_sym_RPAREN, - STATE(1293), 1, + STATE(1454), 1, aux_sym__collection_elements_repeat1, - [55845] = 4, + [66415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 1, + ACTIONS(2939), 1, + anon_sym_COMMA, + ACTIONS(2942), 1, + anon_sym_RBRACE, + STATE(1401), 1, + aux_sym_dictionary_repeat1, + [66428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2452), 1, sym_identifier, - ACTIONS(2721), 1, + ACTIONS(2944), 1, anon_sym_import, - STATE(1489), 1, + STATE(1654), 1, sym_dotted_name, - [55858] = 4, + [66441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(2438), 1, anon_sym_COMMA, - ACTIONS(1933), 1, - anon_sym_RPAREN, - STATE(1293), 1, - aux_sym__collection_elements_repeat1, - [55871] = 4, + ACTIONS(2440), 1, + anon_sym_RBRACE, + STATE(1408), 1, + aux_sym_dictionary_repeat1, + [66454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - sym_identifier, - ACTIONS(2725), 1, - anon_sym_RPAREN, - STATE(1333), 1, - sym_match_keyword_pattern, - [55884] = 3, + ACTIONS(1525), 3, + sym__newline, + anon_sym_in, + anon_sym_SEMI, + [66463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2727), 1, - anon_sym_COLON, - ACTIONS(2567), 2, + ACTIONS(1895), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [55895] = 4, + ACTIONS(2931), 1, + sym_identifier, + STATE(1558), 1, + sym_match_keyword_pattern, + [66476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1954), 1, - anon_sym_RPAREN, - ACTIONS(1956), 1, - anon_sym_COMMA, - STATE(1296), 1, - aux_sym_argument_list_repeat1, - [55908] = 4, + ACTIONS(2946), 1, + anon_sym_EQ, + ACTIONS(2948), 2, + sym__newline, + anon_sym_SEMI, + [66487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_DOT, - ACTIONS(1931), 1, - anon_sym_COLON, - STATE(881), 1, - aux_sym_match_value_pattern_repeat1, - [55921] = 4, + ACTIONS(2880), 1, + anon_sym_COMMA, + ACTIONS(2950), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_index_expression_list_repeat1, + [66500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 1, + ACTIONS(2952), 1, anon_sym_COMMA, - ACTIONS(2229), 1, + ACTIONS(2954), 1, anon_sym_RBRACE, - STATE(1247), 1, + STATE(1401), 1, aux_sym_dictionary_repeat1, - [55934] = 3, + [66513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 1, - anon_sym_as, - ACTIONS(2517), 2, - anon_sym_RPAREN, + ACTIONS(2956), 1, anon_sym_COMMA, - [55945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2729), 1, - sym__semicolon, - ACTIONS(2731), 1, - sym__newline, - STATE(1211), 1, - aux_sym__simple_statements_repeat1, - [55958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_from, - ACTIONS(2151), 2, - sym__newline, - sym__semicolon, - [55969] = 4, + ACTIONS(2958), 1, + anon_sym_RBRACE, + STATE(1401), 1, + aux_sym_dictionary_repeat1, + [66526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 1, - anon_sym_RPAREN, - ACTIONS(2735), 1, + ACTIONS(2382), 1, anon_sym_COMMA, - STATE(1253), 1, - aux_sym__parameters_repeat1, - [55982] = 4, + ACTIONS(2384), 1, + anon_sym_RBRACE, + STATE(1485), 1, + aux_sym_dictionary_repeat1, + [66539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 1, + ACTIONS(2191), 1, anon_sym_RPAREN, - ACTIONS(2739), 1, + ACTIONS(2193), 1, anon_sym_COMMA, - STATE(1265), 1, + STATE(1415), 1, aux_sym_argument_list_repeat1, - [55995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(562), 1, - sym__newline, - ACTIONS(2741), 1, - sym__semicolon, - STATE(1196), 1, - aux_sym__simple_statements_repeat1, - [56008] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1727), 1, - anon_sym_RBRACK, - ACTIONS(2743), 1, - anon_sym_COMMA, - STATE(1057), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1844), 1, - anon_sym_COMMA, - ACTIONS(2745), 1, - anon_sym_in, - STATE(861), 1, - aux_sym__patterns_repeat1, - [56034] = 4, + [66552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1727), 1, + ACTIONS(2960), 1, anon_sym_RPAREN, - ACTIONS(2747), 1, + ACTIONS(2962), 1, anon_sym_COMMA, - STATE(1057), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [56047] = 4, + STATE(1417), 1, + aux_sym_argument_list_repeat1, + [66565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 1, + ACTIONS(1895), 1, anon_sym_RPAREN, - ACTIONS(2751), 1, + ACTIONS(2964), 1, anon_sym_COMMA, - STATE(1302), 1, + STATE(1422), 1, aux_sym_match_class_pattern_repeat2, - [56060] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2723), 1, - sym_identifier, - ACTIONS(2749), 1, - anon_sym_RPAREN, - STATE(1333), 1, - sym_match_keyword_pattern, - [56073] = 4, + [66578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 1, + ACTIONS(2880), 1, anon_sym_COMMA, - ACTIONS(2753), 1, - anon_sym_in, - STATE(861), 1, - aux_sym__patterns_repeat1, - [56086] = 4, + ACTIONS(2966), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_index_expression_list_repeat1, + [66591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(2968), 1, + anon_sym_RPAREN, + ACTIONS(2970), 1, anon_sym_COMMA, - ACTIONS(2757), 1, - anon_sym_COLON, - STATE(1272), 1, - aux_sym_with_clause_repeat1, - [56099] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2396), 1, - anon_sym_LPAREN, - ACTIONS(2759), 1, - anon_sym_COLON, - STATE(1451), 1, - sym_argument_list, - [56112] = 4, + STATE(1392), 1, + aux_sym_argument_list_repeat1, + [66604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2636), 1, + ACTIONS(2902), 1, anon_sym_COMMA, - ACTIONS(2761), 1, + ACTIONS(2972), 1, anon_sym_RBRACK, - STATE(1187), 1, + STATE(1386), 1, aux_sym_type_parameters_repeat1, - [56125] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2323), 1, - anon_sym_RBRACE, - ACTIONS(2325), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [56136] = 4, + [66617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(2974), 1, anon_sym_RPAREN, - ACTIONS(2765), 1, + ACTIONS(2976), 1, anon_sym_COMMA, - STATE(1235), 1, - aux_sym_match_class_pattern_repeat2, - [56149] = 4, + STATE(1392), 1, + aux_sym_argument_list_repeat1, + [66630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, + ACTIONS(2978), 1, + anon_sym_RPAREN, + ACTIONS(2980), 1, anon_sym_COMMA, - ACTIONS(2767), 1, - anon_sym_RBRACK, - STATE(1257), 1, - aux_sym_index_expression_list_repeat1, - [56162] = 4, + STATE(1392), 1, + aux_sym_argument_list_repeat1, + [66643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, - sym_identifier, - STATE(1132), 1, - sym_dotted_name, - STATE(1289), 1, - sym_aliased_import, - [56175] = 3, - ACTIONS(1948), 1, - sym_comment, - ACTIONS(2303), 1, + ACTIONS(2613), 1, + anon_sym_COLON2, + ACTIONS(2722), 1, anon_sym_RBRACE, - ACTIONS(2305), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [56186] = 4, + STATE(1641), 1, + sym_format_specifier, + [66656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 1, + ACTIONS(2780), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(2771), 1, - anon_sym_RBRACE, - STATE(1180), 1, - aux_sym_dictionary_repeat1, - [56199] = 4, + anon_sym_SEMI, + [66665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2982), 3, + sym__newline, anon_sym_COMMA, - ACTIONS(2775), 1, - anon_sym_RBRACE, - STATE(1180), 1, - aux_sym_dictionary_repeat1, - [56212] = 4, + anon_sym_SEMI, + [66674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2984), 1, + anon_sym_RPAREN, + ACTIONS(2986), 1, anon_sym_COMMA, - ACTIONS(2780), 1, - anon_sym_RBRACK, - STATE(1248), 1, - aux_sym_type_parameters_repeat1, - [56225] = 4, + STATE(1422), 1, + aux_sym_match_class_pattern_repeat2, + [66687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 1, + ACTIONS(2069), 1, + anon_sym_COMMA, + ACTIONS(2187), 1, anon_sym_RPAREN, - ACTIONS(2765), 1, + STATE(1454), 1, + aux_sym__collection_elements_repeat1, + [66700] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1958), 1, + anon_sym_RBRACE, + ACTIONS(2989), 1, anon_sym_COMMA, - STATE(1302), 1, - aux_sym_match_class_pattern_repeat2, - [56238] = 4, + STATE(1480), 1, + aux_sym_match_mapping_pattern_repeat1, + [66713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - sym_identifier, - ACTIONS(2763), 1, - anon_sym_RPAREN, - STATE(1333), 1, - sym_match_keyword_pattern, - [56251] = 4, + ACTIONS(2444), 1, + anon_sym_COMMA, + ACTIONS(2446), 1, + anon_sym_RBRACE, + STATE(1426), 1, + aux_sym_dictionary_repeat1, + [66726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2782), 1, + ACTIONS(2991), 1, anon_sym_COMMA, - ACTIONS(2784), 1, + ACTIONS(2993), 1, anon_sym_RBRACE, - STATE(1180), 1, + STATE(1401), 1, aux_sym_dictionary_repeat1, - [56264] = 4, + [66739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, - anon_sym_COLON, - ACTIONS(2786), 1, + ACTIONS(2995), 1, + anon_sym_COMMA, + ACTIONS(2997), 1, anon_sym_RBRACE, - STATE(1408), 1, - sym_format_specifier, - [56277] = 4, + STATE(1401), 1, + aux_sym_dictionary_repeat1, + [66752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1862), 1, + ACTIONS(2900), 1, anon_sym_RPAREN, - ACTIONS(2788), 1, + ACTIONS(2999), 1, anon_sym_COMMA, - STATE(1281), 1, + STATE(1376), 1, aux_sym__parameters_repeat1, - [56290] = 3, - ACTIONS(1948), 1, + [66765] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 1, - anon_sym_RBRACE, - ACTIONS(2352), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [56301] = 3, - ACTIONS(1948), 1, + ACTIONS(2205), 1, + anon_sym_RPAREN, + ACTIONS(2207), 1, + anon_sym_COMMA, + STATE(1435), 1, + aux_sym_argument_list_repeat1, + [66778] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2790), 1, - anon_sym_RBRACE, - ACTIONS(2792), 2, - anon_sym_LBRACE2, - aux_sym_format_specifier_token1, - [56312] = 3, + ACTIONS(3001), 1, + anon_sym_RPAREN, + ACTIONS(3003), 1, + anon_sym_COMMA, + STATE(1436), 1, + aux_sym_argument_list_repeat1, + [66791] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2794), 1, - anon_sym_in, - ACTIONS(2796), 2, - sym__newline, - sym__semicolon, - [56323] = 4, + ACTIONS(2931), 1, + sym_identifier, + ACTIONS(3005), 1, + anon_sym_RPAREN, + STATE(1558), 1, + sym_match_keyword_pattern, + [66804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 1, + ACTIONS(2880), 1, anon_sym_COMMA, - ACTIONS(2800), 1, + ACTIONS(3007), 1, anon_sym_RBRACK, - STATE(1201), 1, + STATE(1492), 1, aux_sym_index_expression_list_repeat1, - [56336] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2400), 1, - anon_sym_LBRACK, - ACTIONS(2802), 1, - anon_sym_EQ, - STATE(1392), 1, - sym_type_parameters, - [56349] = 4, + [66817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 1, + ACTIONS(3009), 1, anon_sym_COMMA, - ACTIONS(2219), 1, + ACTIONS(3011), 1, anon_sym_RBRACE, - STATE(1269), 1, + STATE(1401), 1, aux_sym_dictionary_repeat1, - [56362] = 4, + [66830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_COMMA, + ACTIONS(3015), 1, + anon_sym_COLON, + STATE(1452), 1, + aux_sym_with_clause_repeat1, + [66843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1960), 1, + ACTIONS(3017), 1, anon_sym_RPAREN, - ACTIONS(1962), 1, + ACTIONS(3019), 1, anon_sym_COMMA, - STATE(1283), 1, + STATE(1392), 1, aux_sym_argument_list_repeat1, - [56375] = 4, + [66856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(3021), 1, anon_sym_RPAREN, - ACTIONS(2806), 1, + ACTIONS(3023), 1, anon_sym_COMMA, - STATE(1285), 1, + STATE(1392), 1, aux_sym_argument_list_repeat1, - [56388] = 2, + [66869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 3, - sym__newline, + ACTIONS(3025), 1, + anon_sym_RPAREN, + ACTIONS(3027), 1, anon_sym_COMMA, - sym__semicolon, - [56397] = 4, + STATE(1392), 1, + aux_sym_argument_list_repeat1, + [66882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, + ACTIONS(1893), 1, + anon_sym_RPAREN, + ACTIONS(3029), 1, anon_sym_COMMA, - ACTIONS(2808), 1, - anon_sym_RBRACK, - STATE(1257), 1, - aux_sym_index_expression_list_repeat1, - [56410] = 4, + STATE(1449), 1, + aux_sym_match_class_pattern_repeat2, + [66895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 1, + ACTIONS(3031), 1, anon_sym_RPAREN, - ACTIONS(2812), 1, + ACTIONS(3033), 1, anon_sym_COMMA, - STATE(1194), 1, - aux_sym_argument_list_repeat1, - [56423] = 4, + STATE(1495), 1, + aux_sym_with_clause_repeat1, + [66908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 1, + ACTIONS(2069), 1, + anon_sym_COMMA, + ACTIONS(3035), 1, anon_sym_RPAREN, - ACTIONS(2816), 1, + STATE(1441), 1, + aux_sym__collection_elements_repeat1, + [66921] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2595), 1, + anon_sym_RPAREN, + ACTIONS(3037), 1, anon_sym_COMMA, - STATE(1194), 1, - aux_sym_argument_list_repeat1, - [56436] = 4, + STATE(1286), 1, + aux_sym__collection_elements_repeat1, + [66934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(3039), 1, anon_sym_COLON, - ACTIONS(2532), 1, - anon_sym_RBRACE, - STATE(1410), 1, - sym_format_specifier, - [56449] = 4, + ACTIONS(2794), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 1, + ACTIONS(3041), 1, anon_sym_RPAREN, - ACTIONS(2818), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(1216), 1, - aux_sym__import_list_repeat1, - [56462] = 2, + STATE(1443), 1, + aux_sym__parameters_repeat1, + [66958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2820), 3, + ACTIONS(3041), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [56471] = 4, + [66967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(3046), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2824), 1, - anon_sym_RBRACE, - STATE(1180), 1, - aux_sym_dictionary_repeat1, - [56484] = 4, + anon_sym_COLON, + [66976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(3048), 3, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2613), 1, - anon_sym_RBRACE, - STATE(1458), 1, - sym_format_specifier, - [56497] = 3, + anon_sym_EQ, + [66985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2571), 1, - anon_sym_EQ, - ACTIONS(2567), 2, + ACTIONS(2790), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [56508] = 4, + [66994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(3050), 1, + anon_sym_RPAREN, + ACTIONS(3052), 1, anon_sym_COMMA, - ACTIONS(2826), 1, - anon_sym_COLON, - STATE(1115), 1, - aux_sym_with_clause_repeat1, - [56521] = 4, + STATE(1392), 1, + aux_sym_argument_list_repeat1, + [67007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, + ACTIONS(3005), 1, + anon_sym_RPAREN, + ACTIONS(3054), 1, anon_sym_COMMA, - ACTIONS(2830), 1, - anon_sym_RBRACE, - STATE(1301), 1, - aux_sym_match_mapping_pattern_repeat1, - [56534] = 4, + STATE(1422), 1, + aux_sym_match_class_pattern_repeat2, + [67020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(3056), 1, anon_sym_RPAREN, - ACTIONS(2834), 1, + ACTIONS(3058), 1, anon_sym_COMMA, - STATE(1294), 1, - aux_sym_with_clause_repeat1, - [56547] = 4, + STATE(1392), 1, + aux_sym_argument_list_repeat1, + [67033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(3060), 1, anon_sym_RPAREN, - ACTIONS(2836), 1, + ACTIONS(3062), 1, anon_sym_COMMA, - STATE(1309), 1, - aux_sym_match_class_pattern_repeat1, - [56560] = 4, + STATE(1392), 1, + aux_sym_argument_list_repeat1, + [67046] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3013), 1, + anon_sym_COMMA, + ACTIONS(3064), 1, + anon_sym_COLON, + STATE(1325), 1, + aux_sym_with_clause_repeat1, + [67059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 1, + ACTIONS(2589), 1, + anon_sym_LPAREN, + ACTIONS(3066), 1, anon_sym_COLON, - ACTIONS(2838), 1, + STATE(1608), 1, + sym_argument_list, + [67072] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2595), 1, + anon_sym_RPAREN, + ACTIONS(3068), 1, anon_sym_COMMA, - STATE(1198), 1, - aux_sym__parameters_repeat1, - [56573] = 4, + STATE(1286), 1, + aux_sym__collection_elements_repeat1, + [67085] = 3, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2581), 1, + anon_sym_RBRACE, + ACTIONS(2583), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [67096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2626), 1, + ACTIONS(2914), 1, anon_sym_if, - ACTIONS(2840), 1, + ACTIONS(3070), 1, anon_sym_COLON, - STATE(1464), 1, + STATE(1621), 1, sym_guard, - [56586] = 2, + [67109] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2613), 1, + anon_sym_COLON2, + ACTIONS(3072), 1, + anon_sym_RBRACE, + STATE(1699), 1, + sym_format_specifier, + [67122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 3, + ACTIONS(2613), 1, + anon_sym_COLON2, + ACTIONS(2705), 1, + anon_sym_RBRACE, + STATE(1692), 1, + sym_format_specifier, + [67135] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3005), 1, anon_sym_RPAREN, + ACTIONS(3054), 1, anon_sym_COMMA, - anon_sym_COLON, - [56595] = 4, + STATE(1472), 1, + aux_sym_match_class_pattern_repeat2, + [67148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 1, - anon_sym_COMMA, - ACTIONS(2842), 1, - anon_sym_in, - STATE(861), 1, - aux_sym__patterns_repeat1, - [56608] = 4, + ACTIONS(2726), 1, + sym_identifier, + STATE(1382), 1, + sym_dotted_name, + STATE(1540), 1, + sym_aliased_import, + [67161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 1, + ACTIONS(2010), 1, anon_sym_COMMA, - ACTIONS(2844), 1, + ACTIONS(3074), 1, anon_sym_in, - STATE(861), 1, + STATE(1010), 1, aux_sym__patterns_repeat1, - [56621] = 4, + [67174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 1, + ACTIONS(3076), 1, anon_sym_RPAREN, - ACTIONS(2848), 1, + ACTIONS(3078), 1, anon_sym_COMMA, - STATE(1281), 1, - aux_sym__parameters_repeat1, - [56634] = 2, + STATE(1392), 1, + aux_sym_argument_list_repeat1, + [67187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2390), 3, + sym__newline, + anon_sym_EQ, + anon_sym_SEMI, + [67196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 3, + ACTIONS(1274), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - [56643] = 4, + [67205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 1, + ACTIONS(3080), 3, anon_sym_RPAREN, - ACTIONS(2853), 1, anon_sym_COMMA, - STATE(1194), 1, - aux_sym_argument_list_repeat1, - [56656] = 4, + anon_sym_COLON, + [67214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 1, - anon_sym_COLON, - ACTIONS(2855), 1, + ACTIONS(2891), 1, + anon_sym_RPAREN, + ACTIONS(3082), 1, anon_sym_COMMA, - STATE(1284), 1, - aux_sym__parameters_repeat1, - [56669] = 4, + STATE(1399), 1, + aux_sym_match_class_pattern_repeat1, + [67227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, + ACTIONS(2931), 1, + sym_identifier, + ACTIONS(3084), 1, anon_sym_RPAREN, - ACTIONS(2860), 1, - anon_sym_COMMA, - STATE(1194), 1, - aux_sym_argument_list_repeat1, - [56682] = 4, + STATE(1558), 1, + sym_match_keyword_pattern, + [67240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 1, + ACTIONS(3086), 1, anon_sym_RPAREN, - ACTIONS(2864), 1, + ACTIONS(3088), 1, anon_sym_COMMA, - STATE(1194), 1, - aux_sym_argument_list_repeat1, - [56695] = 4, + STATE(1468), 1, + aux_sym_match_class_pattern_repeat1, + [67253] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3091), 1, + anon_sym_COMMA, + ACTIONS(3093), 1, + anon_sym_RBRACK, + STATE(1503), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [67266] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1517), 3, + sym__newline, + anon_sym_in, + anon_sym_SEMI, + [67275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2374), 1, + ACTIONS(2048), 1, anon_sym_COLON, - ACTIONS(2866), 1, - anon_sym_RBRACE, - STATE(1497), 1, - sym_format_specifier, - [56708] = 2, + ACTIONS(3095), 1, + anon_sym_COMMA, + STATE(1506), 1, + aux_sym__parameters_repeat1, + [67288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 3, + ACTIONS(3084), 1, anon_sym_RPAREN, + ACTIONS(3097), 1, anon_sym_COMMA, - anon_sym_COLON, - [56717] = 2, + STATE(1422), 1, + aux_sym_match_class_pattern_repeat2, + [67301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 3, - sym__newline, + ACTIONS(2010), 1, anon_sym_COMMA, - sym__semicolon, - [56726] = 2, + ACTIONS(3099), 1, + anon_sym_in, + STATE(1010), 1, + aux_sym__patterns_repeat1, + [67314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 3, - sym__newline, + ACTIONS(2069), 1, anon_sym_COMMA, - sym__semicolon, - [56735] = 4, + ACTIONS(3101), 1, + anon_sym_RPAREN, + STATE(1259), 1, + aux_sym__collection_elements_repeat1, + [67327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2293), 1, + anon_sym_from, + ACTIONS(2297), 2, + sym__newline, + anon_sym_SEMI, + [67338] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + sym_identifier, + ACTIONS(3103), 1, + anon_sym_RPAREN, + STATE(1558), 1, + sym_match_keyword_pattern, + [67351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 1, + ACTIONS(3105), 1, anon_sym_COMMA, - ACTIONS(2870), 1, - anon_sym_in, - STATE(861), 1, - aux_sym__patterns_repeat1, - [56748] = 2, + ACTIONS(3107), 1, + anon_sym_RBRACE, + STATE(1424), 1, + aux_sym_match_mapping_pattern_repeat1, + [67364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2872), 3, - anon_sym_LPAREN, + ACTIONS(2091), 1, + anon_sym_DOT, + ACTIONS(2114), 1, anon_sym_COLON, - anon_sym_EQ, - [56757] = 4, + STATE(1032), 1, + aux_sym_match_value_pattern_repeat1, + [67377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 1, - anon_sym_RPAREN, - ACTIONS(2874), 1, + ACTIONS(2798), 1, + anon_sym_EQ, + ACTIONS(2794), 2, anon_sym_COMMA, - STATE(1099), 1, - aux_sym__collection_elements_repeat1, - [56770] = 4, + anon_sym_COLON, + [67388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(923), 1, - anon_sym_RPAREN, - ACTIONS(2876), 1, + ACTIONS(3109), 1, anon_sym_COMMA, - STATE(1115), 1, - aux_sym_with_clause_repeat1, - [56783] = 4, + ACTIONS(3112), 1, + anon_sym_RBRACE, + STATE(1480), 1, + aux_sym_match_mapping_pattern_repeat1, + [67401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(3114), 1, anon_sym_RPAREN, - ACTIONS(2878), 1, + ACTIONS(3116), 1, anon_sym_COMMA, - STATE(1302), 1, - aux_sym_match_class_pattern_repeat2, - [56796] = 4, + STATE(1392), 1, + aux_sym_argument_list_repeat1, + [67414] = 3, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2490), 1, + anon_sym_RBRACE, + ACTIONS(2492), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [67425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, + ACTIONS(3118), 1, anon_sym_RPAREN, - ACTIONS(2882), 1, + ACTIONS(3120), 1, anon_sym_COMMA, - STATE(1194), 1, + STATE(1392), 1, aux_sym_argument_list_repeat1, - [56809] = 4, + [67438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2382), 1, + ACTIONS(1889), 1, anon_sym_RPAREN, - ACTIONS(2884), 1, + ACTIONS(3122), 1, anon_sym_COMMA, - STATE(1099), 1, - aux_sym__collection_elements_repeat1, - [56822] = 2, + STATE(1242), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [67451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2479), 3, - anon_sym_RPAREN, + ACTIONS(3124), 1, anon_sym_COMMA, - anon_sym_COLON, - [56831] = 4, + ACTIONS(3126), 1, + anon_sym_RBRACE, + STATE(1401), 1, + aux_sym_dictionary_repeat1, + [67464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(558), 1, + ACTIONS(2713), 3, sym__newline, - ACTIONS(2886), 1, - sym__semicolon, - STATE(1196), 1, - aux_sym__simple_statements_repeat1, - [56844] = 4, + anon_sym_COMMA, + anon_sym_SEMI, + [67473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1737), 1, + ACTIONS(2824), 1, anon_sym_RPAREN, - ACTIONS(2723), 1, - sym_identifier, - STATE(1333), 1, - sym_match_keyword_pattern, - [56857] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1792), 1, - anon_sym_RBRACE, - ACTIONS(2888), 1, + ACTIONS(3128), 1, anon_sym_COMMA, - STATE(1202), 1, - aux_sym_match_mapping_pattern_repeat1, - [56870] = 4, + STATE(1384), 1, + aux_sym__import_list_repeat1, + [67486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 1, + ACTIONS(2824), 1, anon_sym_RPAREN, - ACTIONS(2892), 1, + ACTIONS(3130), 1, anon_sym_COMMA, - STATE(1302), 1, - aux_sym_match_class_pattern_repeat2, - [56883] = 4, + STATE(1384), 1, + aux_sym__import_list_repeat1, + [67499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(2069), 1, anon_sym_COMMA, - ACTIONS(2895), 1, + ACTIONS(2209), 1, anon_sym_RPAREN, - STATE(1297), 1, + STATE(1454), 1, aux_sym__collection_elements_repeat1, - [56896] = 4, + [67512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1897), 1, + ACTIONS(2472), 1, anon_sym_COMMA, - ACTIONS(2897), 1, - anon_sym_RPAREN, - STATE(1077), 1, - aux_sym__collection_elements_repeat1, - [56909] = 4, + ACTIONS(2474), 1, + anon_sym_RBRACE, + STATE(1389), 1, + aux_sym_dictionary_repeat1, + [67525] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3132), 1, + anon_sym_COMMA, + ACTIONS(3134), 1, + anon_sym_RBRACE, + STATE(1401), 1, + aux_sym_dictionary_repeat1, + [67538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3136), 1, + anon_sym_COMMA, + ACTIONS(3138), 1, + anon_sym_RBRACK, + STATE(1378), 1, + aux_sym_index_expression_list_repeat1, + [67551] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2589), 1, + anon_sym_LPAREN, + ACTIONS(3140), 1, + anon_sym_COLON, + STATE(1666), 1, + sym_argument_list, + [67564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 1, + ACTIONS(2613), 1, + anon_sym_COLON2, + ACTIONS(3142), 1, + anon_sym_RBRACE, + STATE(1644), 1, + sym_format_specifier, + [67577] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1017), 1, anon_sym_RPAREN, - ACTIONS(2899), 1, + ACTIONS(3144), 1, anon_sym_COMMA, - STATE(1216), 1, - aux_sym__import_list_repeat1, - [56922] = 4, + STATE(1325), 1, + aux_sym_with_clause_repeat1, + [67590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1844), 1, + ACTIONS(2010), 1, anon_sym_COMMA, - ACTIONS(2901), 1, + ACTIONS(3146), 1, anon_sym_in, - STATE(861), 1, + STATE(1010), 1, aux_sym__patterns_repeat1, - [56935] = 2, + [67603] = 3, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(3148), 1, + anon_sym_RBRACE, + ACTIONS(3150), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [67614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - [56944] = 4, + ACTIONS(2593), 1, + anon_sym_LBRACK, + ACTIONS(3152), 1, + anon_sym_EQ, + STATE(1647), 1, + sym_type_parameters, + [67627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1739), 1, - anon_sym_RPAREN, - ACTIONS(2723), 1, + ACTIONS(2376), 1, sym_identifier, - STATE(1333), 1, - sym_match_keyword_pattern, - [56957] = 4, + STATE(1306), 1, + sym_dotted_name, + STATE(1486), 1, + sym_aliased_import, + [67640] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, - anon_sym_RPAREN, - ACTIONS(2907), 1, + ACTIONS(2010), 1, anon_sym_COMMA, - STATE(1309), 1, - aux_sym_match_class_pattern_repeat1, - [56970] = 2, + ACTIONS(3154), 1, + anon_sym_in, + STATE(1010), 1, + aux_sym__patterns_repeat1, + [67653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 2, + ACTIONS(2748), 3, anon_sym_RPAREN, anon_sym_COMMA, - [56978] = 2, + anon_sym_COLON, + [67662] = 3, + ACTIONS(2065), 1, + sym_comment, + ACTIONS(2486), 1, + anon_sym_RBRACE, + ACTIONS(2488), 2, + anon_sym_LBRACE2, + aux_sym_format_specifier_token1, + [67673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 2, - sym__newline, - sym__semicolon, - [56986] = 2, + ACTIONS(1889), 1, + anon_sym_RBRACK, + ACTIONS(3156), 1, + anon_sym_COMMA, + STATE(1242), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [67686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(992), 2, - anon_sym_except, - anon_sym_finally, - [56994] = 3, + ACTIONS(2010), 1, + anon_sym_COMMA, + ACTIONS(3158), 1, + anon_sym_in, + STATE(1010), 1, + aux_sym__patterns_repeat1, + [67699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 1, + ACTIONS(2010), 1, anon_sym_COMMA, - ACTIONS(2914), 1, - anon_sym_RBRACE, - [57004] = 2, + ACTIONS(3160), 1, + anon_sym_in, + STATE(1010), 1, + aux_sym__patterns_repeat1, + [67712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2916), 2, - sym__newline, - sym__semicolon, - [57012] = 2, + ACTIONS(3041), 1, + anon_sym_COLON, + ACTIONS(3162), 1, + anon_sym_COMMA, + STATE(1506), 1, + aux_sym__parameters_repeat1, + [67725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 2, + ACTIONS(3165), 2, sym__newline, - sym__semicolon, - [57020] = 2, + anon_sym_SEMI, + [67733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2920), 2, - sym__newline, - sym__semicolon, - [57028] = 3, + ACTIONS(3167), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [67741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, - anon_sym_LPAREN, - STATE(1347), 1, - sym_parameters, - [57038] = 2, + ACTIONS(3169), 1, + anon_sym_COMMA, + STATE(1294), 1, + aux_sym_open_sequence_match_pattern_repeat1, + [67751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(964), 2, - anon_sym_except, - anon_sym_finally, - [57046] = 3, + ACTIONS(2357), 1, + anon_sym_COMMA, + STATE(1229), 1, + aux_sym_expression_list_repeat1, + [67761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3171), 1, + anon_sym_COLON, + ACTIONS(3173), 1, + anon_sym_DASH_GT, + [67771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, + ACTIONS(2703), 1, anon_sym_LPAREN, - STATE(1348), 1, + STATE(1539), 1, sym_parameters, - [57056] = 3, + [67781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(3175), 1, anon_sym_COLON, - ACTIONS(2924), 1, + ACTIONS(3177), 1, anon_sym_DASH_GT, - [57066] = 2, + [67791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2926), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [57074] = 3, + ACTIONS(3179), 2, + sym__newline, + anon_sym_SEMI, + [67799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, - anon_sym_LPAREN, - STATE(1353), 1, - sym_parameters, - [57084] = 2, + ACTIONS(1027), 2, + anon_sym_except, + anon_sym_finally, + [67807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2928), 2, + ACTIONS(3181), 2, anon_sym_COMMA, anon_sym_RBRACK, - [57092] = 2, + [67815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2372), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [57100] = 2, + ACTIONS(2837), 2, + sym__newline, + anon_sym_SEMI, + [67823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2930), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [57108] = 2, + ACTIONS(3183), 2, + sym__newline, + anon_sym_SEMI, + [67831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2932), 2, - anon_sym_RPAREN, + ACTIONS(2607), 2, anon_sym_COMMA, - [57116] = 2, + anon_sym_RBRACK, + [67839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2934), 2, + ACTIONS(2794), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [57124] = 3, + anon_sym_COLON, + [67847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2149), 1, - anon_sym_COMMA, - STATE(1078), 1, - aux_sym_expression_list_repeat1, - [57134] = 2, + ACTIONS(1045), 2, + anon_sym_except, + anon_sym_finally, + [67855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2241), 2, - sym__newline, - sym__semicolon, - [57142] = 2, + ACTIONS(3185), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [67863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 2, + ACTIONS(3187), 2, sym__newline, - sym__semicolon, - [57150] = 2, + anon_sym_SEMI, + [67871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2567), 2, + ACTIONS(3189), 2, anon_sym_COMMA, - anon_sym_COLON, - [57158] = 2, + anon_sym_RBRACK, + [67879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57166] = 2, + ACTIONS(3191), 2, + sym__newline, + anon_sym_SEMI, + [67887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 2, + ACTIONS(3193), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [57174] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2936), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [57182] = 2, + anon_sym_COMMA, + [67895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2938), 2, + ACTIONS(3195), 2, sym__newline, - sym__semicolon, - [57190] = 3, + anon_sym_SEMI, + [67903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2940), 1, - sym_integer, - ACTIONS(2942), 1, - sym_float, - [57200] = 3, + ACTIONS(3197), 2, + sym__newline, + anon_sym_SEMI, + [67911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, - anon_sym_RBRACE, - ACTIONS(2944), 1, + ACTIONS(3199), 2, anon_sym_COMMA, - [57210] = 2, + anon_sym_RBRACK, + [67919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2946), 2, + ACTIONS(3201), 2, sym__newline, - sym__semicolon, - [57218] = 3, + anon_sym_SEMI, + [67927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1808), 1, - anon_sym_RBRACE, - ACTIONS(2948), 1, - anon_sym_COMMA, - [57228] = 2, + ACTIONS(3203), 2, + sym__newline, + anon_sym_SEMI, + [67935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 2, + ACTIONS(3205), 2, sym__newline, - sym__semicolon, - [57236] = 3, + anon_sym_SEMI, + [67943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_DOT, - STATE(1224), 1, - aux_sym_match_value_pattern_repeat1, - [57246] = 3, + ACTIONS(3207), 2, + sym__newline, + anon_sym_SEMI, + [67951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - sym_identifier, - STATE(1370), 1, - sym_match_capture_pattern, - [57256] = 2, + ACTIONS(3086), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [67959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2954), 2, + ACTIONS(3209), 2, sym__newline, - sym__semicolon, - [57264] = 2, + anon_sym_SEMI, + [67967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [57272] = 3, + ACTIONS(1031), 2, + anon_sym_except, + anon_sym_finally, + [67975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 1, - anon_sym_as, - ACTIONS(2245), 1, - anon_sym_COLON, - [57282] = 3, + ACTIONS(2236), 2, + sym__newline, + anon_sym_SEMI, + [67983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2247), 1, - anon_sym_as, - ACTIONS(2249), 1, - anon_sym_COLON, - [57292] = 3, + ACTIONS(1037), 2, + anon_sym_except, + anon_sym_finally, + [67991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2956), 1, + ACTIONS(3211), 1, anon_sym_COLON, - ACTIONS(2958), 1, + ACTIONS(3213), 1, anon_sym_DASH_GT, - [57302] = 3, + [68001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2960), 1, - anon_sym_COLON, - ACTIONS(2962), 1, - anon_sym_DASH_GT, - [57312] = 3, + ACTIONS(2713), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 1, + ACTIONS(3215), 1, anon_sym_COLON, - ACTIONS(2966), 1, + ACTIONS(3217), 1, anon_sym_DASH_GT, - [57322] = 3, + [68019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(3219), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [68027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3221), 1, anon_sym_COLON, - ACTIONS(2970), 1, + ACTIONS(3223), 1, anon_sym_DASH_GT, - [57332] = 3, + [68037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - sym_identifier, - STATE(1333), 1, - sym_match_keyword_pattern, - [57342] = 2, + ACTIONS(3225), 1, + anon_sym_COMMA, + ACTIONS(3227), 1, + anon_sym_RBRACE, + [68047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 2, - sym__newline, - sym__semicolon, - [57350] = 3, + ACTIONS(2982), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2974), 1, + ACTIONS(3229), 1, anon_sym_COLON, - ACTIONS(2976), 1, + ACTIONS(3231), 1, anon_sym_DASH_GT, - [57360] = 3, + [68065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 1, + ACTIONS(3233), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [68073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2460), 1, anon_sym_as, - ACTIONS(2181), 1, + ACTIONS(2462), 1, anon_sym_COLON, - [57370] = 3, + [68083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2978), 1, + ACTIONS(2295), 1, + anon_sym_COMMA, + STATE(1278), 1, + aux_sym_expression_list_repeat1, + [68093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2464), 1, + anon_sym_as, + ACTIONS(2466), 1, anon_sym_COLON, - ACTIONS(2980), 1, - anon_sym_DASH_GT, - [57380] = 2, + [68103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2982), 2, + ACTIONS(2424), 2, sym__newline, - sym__semicolon, - [57388] = 2, + anon_sym_SEMI, + [68111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 2, - sym__newline, - sym__semicolon, - [57396] = 2, + ACTIONS(2468), 1, + anon_sym_as, + ACTIONS(2470), 1, + anon_sym_COLON, + [68121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2517), 2, - anon_sym_RPAREN, + ACTIONS(2918), 1, anon_sym_COMMA, - [57404] = 3, + ACTIONS(3235), 1, + anon_sym_RPAREN, + [68131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 1, + ACTIONS(3237), 1, anon_sym_COLON, - ACTIONS(2988), 1, + ACTIONS(3239), 1, anon_sym_DASH_GT, - [57414] = 2, + [68141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 2, - anon_sym_except, - anon_sym_finally, - [57422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2990), 1, - sym_integer, - ACTIONS(2992), 1, - sym_float, - [57432] = 3, + ACTIONS(3241), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [68149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, + ACTIONS(3243), 1, anon_sym_COMMA, - STATE(1141), 1, + STATE(1484), 1, aux_sym_open_sequence_match_pattern_repeat1, - [57442] = 2, + [68159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2996), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [57450] = 2, + ACTIONS(2703), 1, + anon_sym_LPAREN, + STATE(1513), 1, + sym_parameters, + [68169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 2, + ACTIONS(2984), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - [57458] = 2, + [68177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3000), 2, - sym__newline, - sym__semicolon, - [57466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3002), 1, + ACTIONS(3245), 1, sym_integer, - ACTIONS(3004), 1, + ACTIONS(3247), 1, sym_float, - [57476] = 3, + [68187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, - anon_sym_LPAREN, - STATE(1320), 1, - sym_parameters, - [57486] = 2, + ACTIONS(2931), 1, + sym_identifier, + STATE(1558), 1, + sym_match_keyword_pattern, + [68197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57494] = 2, + ACTIONS(3249), 1, + sym_identifier, + STATE(1581), 1, + sym_match_capture_pattern, + [68207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2664), 2, - sym__newline, - sym__semicolon, - [57502] = 2, + ACTIONS(2091), 1, + anon_sym_DOT, + STATE(1478), 1, + aux_sym_match_value_pattern_repeat1, + [68217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 2, + ACTIONS(3251), 2, anon_sym_COMMA, anon_sym_RBRACE, - [57510] = 2, + [68225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3010), 2, + ACTIONS(3107), 1, + anon_sym_RBRACE, + ACTIONS(3253), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [57518] = 2, + [68235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(956), 2, - anon_sym_except, - anon_sym_finally, - [57526] = 2, + ACTIONS(2428), 1, + anon_sym_as, + ACTIONS(2432), 1, + anon_sym_COLON, + [68245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3012), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [57534] = 2, + ACTIONS(3255), 1, + sym_integer, + ACTIONS(3257), 1, + sym_float, + [68255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 2, - anon_sym_RPAREN, + ACTIONS(2232), 1, anon_sym_COMMA, - [57542] = 3, + STATE(1251), 1, + aux_sym_expression_list_repeat1, + [68265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, - anon_sym_COMMA, - STATE(986), 1, - aux_sym_expression_list_repeat1, - [57552] = 3, + ACTIONS(3259), 2, + sym__newline, + anon_sym_SEMI, + [68273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2630), 1, + ACTIONS(1992), 1, + anon_sym_RBRACE, + ACTIONS(3261), 1, anon_sym_COMMA, - ACTIONS(3014), 1, + [68283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2601), 2, anon_sym_RPAREN, - [57562] = 2, + anon_sym_COMMA, + [68291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2239), 2, + ACTIONS(3263), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [68299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2404), 2, sym__newline, - sym__semicolon, - [57570] = 2, + anon_sym_SEMI, + [68307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3016), 2, + ACTIONS(3112), 2, anon_sym_COMMA, anon_sym_RBRACE, - [57578] = 3, + [68315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, - anon_sym_as, - ACTIONS(2263), 1, - anon_sym_COLON, - [57588] = 2, + ACTIONS(3265), 1, + sym_integer, + ACTIONS(3267), 1, + sym_float, + [68325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 2, - sym__newline, - sym__semicolon, - [57596] = 2, + ACTIONS(3269), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3018), 2, - sym__newline, - sym__semicolon, - [57604] = 3, + ACTIONS(2703), 1, + anon_sym_LPAREN, + STATE(1546), 1, + sym_parameters, + [68343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3020), 1, + ACTIONS(3271), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1234), 1, - aux_sym_open_sequence_match_pattern_repeat1, - [57614] = 2, + [68351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2703), 1, + anon_sym_LPAREN, + STATE(1582), 1, + sym_parameters, + [68361] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2406), 2, + sym__newline, + anon_sym_SEMI, + [68369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(986), 2, + ACTIONS(1081), 2, anon_sym_except, anon_sym_finally, - [57622] = 2, + [68377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 2, + ACTIONS(3273), 2, anon_sym_COMMA, anon_sym_RBRACE, - [57630] = 2, + [68385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3275), 1, + anon_sym_COLON, + ACTIONS(3277), 1, + anon_sym_DASH_GT, + [68395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3024), 1, + ACTIONS(3279), 1, anon_sym_COLON, - [57637] = 2, + [68402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3026), 1, + ACTIONS(3281), 1, anon_sym_RPAREN, - [57644] = 2, + [68409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 1, - anon_sym_RBRACE, - [57651] = 2, + ACTIONS(3283), 1, + sym_identifier, + [68416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1792), 1, - anon_sym_RBRACE, - [57658] = 2, + ACTIONS(3285), 1, + anon_sym_RPAREN, + [68423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, + ACTIONS(2705), 1, anon_sym_RBRACE, - [57665] = 2, + [68430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3032), 1, - anon_sym_RBRACK, - [57672] = 2, + ACTIONS(3287), 1, + anon_sym_COLON, + [68437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3289), 1, + anon_sym_COLON, + [68444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3291), 1, + anon_sym_COLON, + [68451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3293), 1, anon_sym_RPAREN, - [57679] = 2, + [68458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3036), 1, - anon_sym_EQ, - [57686] = 2, + ACTIONS(3295), 1, + anon_sym_RPAREN, + [68465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 1, + ACTIONS(3297), 1, + anon_sym_COLON, + [68472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3299), 1, anon_sym_RBRACK, - [57693] = 2, + [68479] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3301), 1, + anon_sym_for, + [68486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3040), 1, + ACTIONS(3303), 1, anon_sym_RBRACE, - [57700] = 2, + [68493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_COLON, + [68500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3042), 1, + ACTIONS(3307), 1, anon_sym_COLON, - [57707] = 2, + [68507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3309), 1, + sym_identifier, + [68514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3044), 1, + ACTIONS(3311), 1, anon_sym_RBRACE, - [57714] = 2, + [68521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3046), 1, + ACTIONS(3313), 1, anon_sym_COLON, - [57721] = 2, + [68528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3048), 1, - sym_identifier, - [57728] = 2, + ACTIONS(3315), 1, + anon_sym_RBRACE, + [68535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3050), 1, - anon_sym_in, - [57735] = 2, + ACTIONS(2535), 1, + anon_sym_COLON, + [68542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_RPAREN, - [57742] = 2, + ACTIONS(3317), 1, + anon_sym_COLON, + [68549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3054), 1, - anon_sym_RBRACK, - [57749] = 2, + ACTIONS(3319), 1, + sym_identifier, + [68556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3056), 1, + ACTIONS(3321), 1, anon_sym_COLON, - [57756] = 2, + [68563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3058), 1, - anon_sym_RBRACE, - [57763] = 2, + ACTIONS(3323), 1, + anon_sym_COLON, + [68570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3060), 1, - anon_sym_RBRACE, - [57770] = 2, + ACTIONS(3325), 1, + anon_sym_COLON, + [68577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, - anon_sym_RPAREN, - [57777] = 2, + ACTIONS(3327), 1, + anon_sym_COLON, + [68584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3064), 1, + ACTIONS(2537), 1, anon_sym_COLON, - [57784] = 2, + [68591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, - anon_sym_RBRACK, - [57791] = 2, + ACTIONS(963), 1, + anon_sym_STAR, + [68598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3066), 1, - anon_sym_RBRACE, - [57798] = 2, + ACTIONS(3329), 1, + anon_sym_in, + [68605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3068), 1, + ACTIONS(3331), 1, anon_sym_RPAREN, - [57805] = 2, + [68612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 1, - anon_sym_RBRACE, - [57812] = 2, + ACTIONS(3333), 1, + anon_sym_RBRACK, + [68619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3070), 1, - sym_identifier, - [57819] = 2, + ACTIONS(3335), 1, + anon_sym_RPAREN, + [68626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3072), 1, - sym_identifier, - [57826] = 2, + ACTIONS(3337), 1, + anon_sym_COLON, + [68633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3074), 1, + ACTIONS(3339), 1, anon_sym_COLON, - [57833] = 2, + [68640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 1, + ACTIONS(3341), 1, + anon_sym_COLON, + [68647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3343), 1, sym_identifier, - [57840] = 2, + [68654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3078), 1, + ACTIONS(3345), 1, anon_sym_COLON, - [57847] = 2, + [68661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_RPAREN, - [57854] = 2, + ACTIONS(3347), 1, + anon_sym_COLON, + [68668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3082), 1, - anon_sym_in, - [57861] = 2, + ACTIONS(3349), 1, + anon_sym_COLON, + [68675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3084), 1, - sym_identifier, - [57868] = 2, + ACTIONS(3227), 1, + anon_sym_RBRACE, + [68682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3086), 1, - anon_sym_LPAREN, - [57875] = 2, + ACTIONS(3351), 1, + anon_sym_RBRACK, + [68689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3088), 1, - anon_sym_import, - [57882] = 2, + ACTIONS(2543), 1, + anon_sym_COLON, + [68696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3090), 1, - sym_identifier, - [57889] = 2, + ACTIONS(3353), 1, + anon_sym_RPAREN, + [68703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2745), 1, - anon_sym_in, - [57896] = 2, + ACTIONS(3355), 1, + anon_sym_RBRACE, + [68710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_COLON, - [57903] = 2, + ACTIONS(3357), 1, + anon_sym_RBRACK, + [68717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3094), 1, - anon_sym_in, - [57910] = 2, + ACTIONS(3359), 1, + sym_identifier, + [68724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3361), 1, anon_sym_COLON, - [57917] = 2, + [68731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_RPAREN, - [57924] = 2, + ACTIONS(3363), 1, + anon_sym_RBRACE, + [68738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3100), 1, - anon_sym_import, - [57931] = 2, + ACTIONS(3365), 1, + sym_identifier, + [68745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 1, + ACTIONS(3367), 1, + anon_sym_RBRACK, + [68752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3369), 1, anon_sym_in, - [57938] = 2, + [68759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(891), 1, - anon_sym_STAR, - [57945] = 2, + ACTIONS(3371), 1, + anon_sym_RPAREN, + [68766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3102), 1, - anon_sym_COLON, - [57952] = 2, + ACTIONS(3373), 1, + sym_identifier, + [68773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(2539), 1, anon_sym_COLON, - [57959] = 2, + [68780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 1, + ACTIONS(3375), 1, + sym_identifier, + [68787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3377), 1, anon_sym_COLON, - [57966] = 2, + [68794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 1, + ACTIONS(3379), 1, anon_sym_COLON, - [57973] = 2, + [68801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3110), 1, - anon_sym_RBRACK, - [57980] = 2, + ACTIONS(3072), 1, + anon_sym_RBRACE, + [68808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3112), 1, + ACTIONS(3381), 1, anon_sym_COLON, - [57987] = 2, + [68815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3114), 1, + ACTIONS(3383), 1, anon_sym_RPAREN, - [57994] = 2, + [68822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, - anon_sym_COLON, - [58001] = 2, + ACTIONS(3385), 1, + anon_sym_RBRACE, + [68829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 1, - anon_sym_RBRACK, - [58008] = 2, + ACTIONS(3387), 1, + anon_sym_RBRACE, + [68836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 1, + ACTIONS(3389), 1, anon_sym_COLON, - [58015] = 2, + [68843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 1, - anon_sym_COLON, - [58022] = 2, + ACTIONS(3391), 1, + anon_sym_EQ, + [68850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3122), 1, - anon_sym_RBRACK, - [58029] = 2, + ACTIONS(3393), 1, + sym_identifier, + [68857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3124), 1, + ACTIONS(3395), 1, anon_sym_RBRACE, - [58036] = 2, + [68864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2753), 1, - anon_sym_in, - [58043] = 2, + ACTIONS(3397), 1, + anon_sym_RBRACE, + [68871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3126), 1, - anon_sym_COLON, - [58050] = 2, + ACTIONS(3399), 1, + sym_identifier, + [68878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 1, + ACTIONS(2722), 1, anon_sym_RBRACE, - [58057] = 2, + [68885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 1, - anon_sym_COLON, - [58064] = 2, + ACTIONS(3007), 1, + anon_sym_RBRACK, + [68892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3130), 1, - anon_sym_RPAREN, - [58071] = 2, + ACTIONS(3401), 1, + anon_sym_import, + [68899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3132), 1, - anon_sym_COLON, - [58078] = 2, + ACTIONS(3403), 1, + ts_builtin_sym_end, + [68906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3134), 1, - anon_sym_COLON, - [58085] = 2, + ACTIONS(3405), 1, + anon_sym_RBRACK, + [68913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3136), 1, - anon_sym_COLON, - [58092] = 2, + ACTIONS(3074), 1, + anon_sym_in, + [68920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3138), 1, - anon_sym_COLON, - [58099] = 2, + ACTIONS(2337), 1, + anon_sym_EQ, + [68927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3140), 1, - anon_sym_COLON, - [58106] = 2, + ACTIONS(3407), 1, + sym_identifier, + [68934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, - anon_sym_COLON, - [58113] = 2, + ACTIONS(2882), 1, + anon_sym_RBRACK, + [68941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, - anon_sym_RBRACK, - [58120] = 2, + ACTIONS(3146), 1, + anon_sym_in, + [68948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 1, + ACTIONS(1958), 1, anon_sym_RBRACE, - [58127] = 2, + [68955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3144), 1, + ACTIONS(3409), 1, anon_sym_RBRACE, - [58134] = 2, + [68962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 1, - anon_sym_RBRACE, - [58141] = 2, + ACTIONS(3411), 1, + anon_sym_import, + [68969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2786), 1, + ACTIONS(3413), 1, anon_sym_RBRACE, - [58148] = 2, + [68976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3148), 1, + ACTIONS(3415), 1, anon_sym_COLON, - [58155] = 2, + [68983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, - anon_sym_RBRACE, - [58162] = 2, + ACTIONS(3417), 1, + sym_identifier, + [68990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 1, + ACTIONS(3419), 1, anon_sym_COLON, - [58169] = 2, + [68997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_RBRACE, - [58176] = 2, + ACTIONS(2966), 1, + anon_sym_RBRACK, + [69004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 1, - anon_sym_RBRACE, - [58183] = 2, + ACTIONS(3421), 1, + anon_sym_COLON, + [69011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3156), 1, - anon_sym_COLON, - [58190] = 2, + ACTIONS(3423), 1, + anon_sym_in, + [69018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3158), 1, - anon_sym_COLON, - [58197] = 2, + ACTIONS(3099), 1, + anon_sym_in, + [69025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3160), 1, + ACTIONS(3425), 1, anon_sym_COLON, - [58204] = 2, + [69032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 1, - anon_sym_RBRACK, - [58211] = 2, + ACTIONS(3427), 1, + anon_sym_in, + [69039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3164), 1, + ACTIONS(3429), 1, anon_sym_RPAREN, - [58218] = 2, + [69046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 1, + ACTIONS(3431), 1, + anon_sym_COLON, + [69053] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3433), 1, anon_sym_RBRACK, - [58225] = 2, + [69060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(3435), 1, anon_sym_RBRACE, - [58232] = 2, + [69067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 1, - anon_sym_COLON, - [58239] = 2, + ACTIONS(3437), 1, + anon_sym_RBRACK, + [69074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3168), 1, - anon_sym_COLON, - [58246] = 2, + ACTIONS(3439), 1, + anon_sym_LPAREN, + [69081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 1, - anon_sym_RPAREN, - [58253] = 2, + ACTIONS(3441), 1, + sym_identifier, + [69088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3172), 1, + ACTIONS(3443), 1, anon_sym_COLON, - [58260] = 2, + [69095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, - anon_sym_EQ, - [58267] = 2, + ACTIONS(3445), 1, + anon_sym_RBRACE, + [69102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 1, - anon_sym_in, - [58274] = 2, + ACTIONS(3447), 1, + anon_sym_RPAREN, + [69109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3174), 1, - sym_identifier, - [58281] = 2, + ACTIONS(1059), 1, + anon_sym_def, + [69116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3176), 1, - anon_sym_COLON, - [58288] = 2, + ACTIONS(3449), 1, + anon_sym_RPAREN, + [69123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3451), 1, + anon_sym_RBRACE, + [69130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 1, + ACTIONS(3453), 1, anon_sym_COLON, - [58295] = 2, + [69137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3180), 1, - anon_sym_RPAREN, - [58302] = 2, + ACTIONS(3455), 1, + anon_sym_COLON, + [69144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 1, - sym_identifier, - [58309] = 2, + ACTIONS(3457), 1, + anon_sym_COLON, + [69151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3184), 1, + ACTIONS(3459), 1, sym_identifier, - [58316] = 2, + [69158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 1, - anon_sym_in, - [58323] = 2, + ACTIONS(3142), 1, + anon_sym_RBRACE, + [69165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3188), 1, - sym_identifier, - [58330] = 2, + ACTIONS(2950), 1, + anon_sym_RBRACK, + [69172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(978), 1, - anon_sym_def, - [58337] = 2, + ACTIONS(3461), 1, + anon_sym_RPAREN, + [69179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3190), 1, + ACTIONS(3463), 1, sym_identifier, - [58344] = 2, + [69186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3192), 1, + ACTIONS(3465), 1, sym_identifier, - [58351] = 2, + [69193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3194), 1, - ts_builtin_sym_end, - [58358] = 2, + ACTIONS(3467), 1, + anon_sym_COLON, + [69200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3196), 1, - anon_sym_import, - [58365] = 2, + ACTIONS(3469), 1, + sym_identifier, + [69207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, - anon_sym_COLON, - [58372] = 2, + ACTIONS(3471), 1, + anon_sym_RBRACE, + [69214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3198), 1, - sym_identifier, - [58379] = 2, + ACTIONS(3473), 1, + anon_sym_in, + [69221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3200), 1, - sym_identifier, - [58386] = 2, + ACTIONS(3475), 1, + anon_sym_RPAREN, + [69228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3202), 1, - sym_identifier, - [58393] = 2, + ACTIONS(3477), 1, + anon_sym_RPAREN, + [69235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 1, + ACTIONS(3479), 1, sym_identifier, - [58400] = 2, + [69242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 1, + ACTIONS(985), 1, anon_sym_STAR, - [58407] = 2, + [69249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 1, - anon_sym_COLON, - [58414] = 2, + ACTIONS(3481), 1, + anon_sym_RBRACE, + [69256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3208), 1, - anon_sym_RBRACE, - [58421] = 2, + ACTIONS(3483), 1, + anon_sym_RPAREN, + [69263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3210), 1, - anon_sym_for, - [58428] = 2, + ACTIONS(3154), 1, + anon_sym_in, + [69270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3212), 1, - anon_sym_RPAREN, - [58435] = 2, + ACTIONS(3485), 1, + anon_sym_RBRACK, + [69277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 1, - sym_identifier, - [58442] = 2, + ACTIONS(3487), 1, + anon_sym_import, + [69284] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3489), 1, + anon_sym_COLON, + [69291] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3491), 1, + anon_sym_COLON, + [69298] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3493), 1, + anon_sym_COLON, + [69305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3216), 1, + ACTIONS(3495), 1, sym_identifier, - [58449] = 2, + [69312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3218), 1, + ACTIONS(3497), 1, sym_identifier, - [58456] = 2, + [69319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3220), 1, - anon_sym_COLON, - [58463] = 2, + ACTIONS(3499), 1, + anon_sym_RBRACE, + [69326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(3158), 1, anon_sym_in, - [58470] = 2, + [69333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(972), 1, + ACTIONS(1089), 1, anon_sym_def, - [58477] = 2, + [69340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3222), 1, - anon_sym_COLON, - [58484] = 2, + ACTIONS(3501), 1, + anon_sym_RBRACE, + [69347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(3160), 1, anon_sym_in, - [58491] = 2, + [69354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3224), 1, - anon_sym_COLON, - [58498] = 2, + ACTIONS(3503), 1, + anon_sym_in, + [69361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 1, + ACTIONS(3505), 1, anon_sym_RBRACE, + [69368] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3507), 1, + anon_sym_COLON, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(152)] = 0, - [SMALL_STATE(153)] = 117, - [SMALL_STATE(154)] = 241, - [SMALL_STATE(155)] = 367, - [SMALL_STATE(156)] = 489, - [SMALL_STATE(157)] = 613, - [SMALL_STATE(158)] = 735, - [SMALL_STATE(159)] = 845, - [SMALL_STATE(160)] = 967, - [SMALL_STATE(161)] = 1077, - [SMALL_STATE(162)] = 1198, - [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)] = 2107, - [SMALL_STATE(171)] = 2215, - [SMALL_STATE(172)] = 2327, - [SMALL_STATE(173)] = 2437, - [SMALL_STATE(174)] = 2547, - [SMALL_STATE(175)] = 2659, - [SMALL_STATE(176)] = 2771, - [SMALL_STATE(177)] = 2879, - [SMALL_STATE(178)] = 2991, - [SMALL_STATE(179)] = 3103, - [SMALL_STATE(180)] = 3212, - [SMALL_STATE(181)] = 3321, - [SMALL_STATE(182)] = 3426, - [SMALL_STATE(183)] = 3535, - [SMALL_STATE(184)] = 3644, - [SMALL_STATE(185)] = 3753, - [SMALL_STATE(186)] = 3862, - [SMALL_STATE(187)] = 3971, - [SMALL_STATE(188)] = 4080, - [SMALL_STATE(189)] = 4189, - [SMALL_STATE(190)] = 4298, - [SMALL_STATE(191)] = 4407, - [SMALL_STATE(192)] = 4518, - [SMALL_STATE(193)] = 4623, - [SMALL_STATE(194)] = 4728, - [SMALL_STATE(195)] = 4837, - [SMALL_STATE(196)] = 4946, - [SMALL_STATE(197)] = 5051, - [SMALL_STATE(198)] = 5160, - [SMALL_STATE(199)] = 5269, - [SMALL_STATE(200)] = 5382, - [SMALL_STATE(201)] = 5491, - [SMALL_STATE(202)] = 5600, - [SMALL_STATE(203)] = 5711, - [SMALL_STATE(204)] = 5820, - [SMALL_STATE(205)] = 5929, - [SMALL_STATE(206)] = 6038, - [SMALL_STATE(207)] = 6149, - [SMALL_STATE(208)] = 6260, - [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)] = 7218, - [SMALL_STATE(218)] = 7324, - [SMALL_STATE(219)] = 7430, - [SMALL_STATE(220)] = 7536, - [SMALL_STATE(221)] = 7642, - [SMALL_STATE(222)] = 7747, - [SMALL_STATE(223)] = 7852, - [SMALL_STATE(224)] = 7957, - [SMALL_STATE(225)] = 8060, - [SMALL_STATE(226)] = 8165, - [SMALL_STATE(227)] = 8268, - [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)] = 9568, - [SMALL_STATE(241)] = 9669, - [SMALL_STATE(242)] = 9770, - [SMALL_STATE(243)] = 9871, - [SMALL_STATE(244)] = 9970, - [SMALL_STATE(245)] = 10031, - [SMALL_STATE(246)] = 10092, - [SMALL_STATE(247)] = 10191, - [SMALL_STATE(248)] = 10292, - [SMALL_STATE(249)] = 10393, - [SMALL_STATE(250)] = 10494, - [SMALL_STATE(251)] = 10567, - [SMALL_STATE(252)] = 10668, - [SMALL_STATE(253)] = 10741, - [SMALL_STATE(254)] = 10840, - [SMALL_STATE(255)] = 10941, - [SMALL_STATE(256)] = 11014, - [SMALL_STATE(257)] = 11115, - [SMALL_STATE(258)] = 11188, - [SMALL_STATE(259)] = 11289, - [SMALL_STATE(260)] = 11362, - [SMALL_STATE(261)] = 11435, - [SMALL_STATE(262)] = 11508, - [SMALL_STATE(263)] = 11609, - [SMALL_STATE(264)] = 11710, - [SMALL_STATE(265)] = 11811, - [SMALL_STATE(266)] = 11907, - [SMALL_STATE(267)] = 12003, - [SMALL_STATE(268)] = 12101, - [SMALL_STATE(269)] = 12197, - [SMALL_STATE(270)] = 12295, - [SMALL_STATE(271)] = 12391, - [SMALL_STATE(272)] = 12487, - [SMALL_STATE(273)] = 12583, - [SMALL_STATE(274)] = 12679, - [SMALL_STATE(275)] = 12775, - [SMALL_STATE(276)] = 12873, - [SMALL_STATE(277)] = 12971, - [SMALL_STATE(278)] = 13069, - [SMALL_STATE(279)] = 13167, - [SMALL_STATE(280)] = 13263, - [SMALL_STATE(281)] = 13359, - [SMALL_STATE(282)] = 13457, - [SMALL_STATE(283)] = 13553, - [SMALL_STATE(284)] = 13651, - [SMALL_STATE(285)] = 13747, - [SMALL_STATE(286)] = 13845, - [SMALL_STATE(287)] = 13941, - [SMALL_STATE(288)] = 14036, - [SMALL_STATE(289)] = 14131, - [SMALL_STATE(290)] = 14194, - [SMALL_STATE(291)] = 14263, - [SMALL_STATE(292)] = 14332, - [SMALL_STATE(293)] = 14395, - [SMALL_STATE(294)] = 14458, - [SMALL_STATE(295)] = 14517, - [SMALL_STATE(296)] = 14576, - [SMALL_STATE(297)] = 14635, - [SMALL_STATE(298)] = 14694, - [SMALL_STATE(299)] = 14767, - [SMALL_STATE(300)] = 14840, - [SMALL_STATE(301)] = 14909, - [SMALL_STATE(302)] = 14968, - [SMALL_STATE(303)] = 15037, - [SMALL_STATE(304)] = 15132, - [SMALL_STATE(305)] = 15201, - [SMALL_STATE(306)] = 15260, - [SMALL_STATE(307)] = 15319, - [SMALL_STATE(308)] = 15378, - [SMALL_STATE(309)] = 15441, - [SMALL_STATE(310)] = 15510, - [SMALL_STATE(311)] = 15579, - [SMALL_STATE(312)] = 15638, - [SMALL_STATE(313)] = 15707, - [SMALL_STATE(314)] = 15766, - [SMALL_STATE(315)] = 15858, - [SMALL_STATE(316)] = 15950, - [SMALL_STATE(317)] = 16042, - [SMALL_STATE(318)] = 16134, - [SMALL_STATE(319)] = 16226, - [SMALL_STATE(320)] = 16318, - [SMALL_STATE(321)] = 16410, - [SMALL_STATE(322)] = 16502, - [SMALL_STATE(323)] = 16594, - [SMALL_STATE(324)] = 16686, - [SMALL_STATE(325)] = 16778, - [SMALL_STATE(326)] = 16870, - [SMALL_STATE(327)] = 16962, - [SMALL_STATE(328)] = 17054, - [SMALL_STATE(329)] = 17146, - [SMALL_STATE(330)] = 17238, - [SMALL_STATE(331)] = 17330, - [SMALL_STATE(332)] = 17422, - [SMALL_STATE(333)] = 17514, - [SMALL_STATE(334)] = 17606, - [SMALL_STATE(335)] = 17698, - [SMALL_STATE(336)] = 17790, - [SMALL_STATE(337)] = 17882, - [SMALL_STATE(338)] = 17974, - [SMALL_STATE(339)] = 18066, - [SMALL_STATE(340)] = 18158, - [SMALL_STATE(341)] = 18250, - [SMALL_STATE(342)] = 18342, - [SMALL_STATE(343)] = 18434, - [SMALL_STATE(344)] = 18526, - [SMALL_STATE(345)] = 18618, - [SMALL_STATE(346)] = 18710, - [SMALL_STATE(347)] = 18802, - [SMALL_STATE(348)] = 18894, - [SMALL_STATE(349)] = 18986, - [SMALL_STATE(350)] = 19078, - [SMALL_STATE(351)] = 19170, - [SMALL_STATE(352)] = 19262, - [SMALL_STATE(353)] = 19354, - [SMALL_STATE(354)] = 19446, - [SMALL_STATE(355)] = 19538, - [SMALL_STATE(356)] = 19630, - [SMALL_STATE(357)] = 19722, - [SMALL_STATE(358)] = 19814, - [SMALL_STATE(359)] = 19906, - [SMALL_STATE(360)] = 19998, - [SMALL_STATE(361)] = 20090, - [SMALL_STATE(362)] = 20182, - [SMALL_STATE(363)] = 20274, - [SMALL_STATE(364)] = 20366, - [SMALL_STATE(365)] = 20458, - [SMALL_STATE(366)] = 20550, - [SMALL_STATE(367)] = 20642, - [SMALL_STATE(368)] = 20734, - [SMALL_STATE(369)] = 20826, - [SMALL_STATE(370)] = 20890, - [SMALL_STATE(371)] = 20982, - [SMALL_STATE(372)] = 21074, - [SMALL_STATE(373)] = 21166, - [SMALL_STATE(374)] = 21258, - [SMALL_STATE(375)] = 21350, - [SMALL_STATE(376)] = 21442, - [SMALL_STATE(377)] = 21534, - [SMALL_STATE(378)] = 21626, - [SMALL_STATE(379)] = 21718, - [SMALL_STATE(380)] = 21810, - [SMALL_STATE(381)] = 21902, - [SMALL_STATE(382)] = 21972, + [SMALL_STATE(156)] = 0, + [SMALL_STATE(157)] = 110, + [SMALL_STATE(158)] = 232, + [SMALL_STATE(159)] = 342, + [SMALL_STATE(160)] = 466, + [SMALL_STATE(161)] = 588, + [SMALL_STATE(162)] = 714, + [SMALL_STATE(163)] = 838, + [SMALL_STATE(164)] = 960, + [SMALL_STATE(165)] = 1081, + [SMALL_STATE(166)] = 1202, + [SMALL_STATE(167)] = 1323, + [SMALL_STATE(168)] = 1444, + [SMALL_STATE(169)] = 1558, + [SMALL_STATE(170)] = 1672, + [SMALL_STATE(171)] = 1781, + [SMALL_STATE(172)] = 1890, + [SMALL_STATE(173)] = 1999, + [SMALL_STATE(174)] = 2109, + [SMALL_STATE(175)] = 2221, + [SMALL_STATE(176)] = 2329, + [SMALL_STATE(177)] = 2441, + [SMALL_STATE(178)] = 2553, + [SMALL_STATE(179)] = 2661, + [SMALL_STATE(180)] = 2769, + [SMALL_STATE(181)] = 2877, + [SMALL_STATE(182)] = 2987, + [SMALL_STATE(183)] = 3099, + [SMALL_STATE(184)] = 3213, + [SMALL_STATE(185)] = 3325, + [SMALL_STATE(186)] = 3433, + [SMALL_STATE(187)] = 3541, + [SMALL_STATE(188)] = 3653, + [SMALL_STATE(189)] = 3765, + [SMALL_STATE(190)] = 3874, + [SMALL_STATE(191)] = 3979, + [SMALL_STATE(192)] = 4088, + [SMALL_STATE(193)] = 4193, + [SMALL_STATE(194)] = 4302, + [SMALL_STATE(195)] = 4413, + [SMALL_STATE(196)] = 4522, + [SMALL_STATE(197)] = 4631, + [SMALL_STATE(198)] = 4740, + [SMALL_STATE(199)] = 4849, + [SMALL_STATE(200)] = 4962, + [SMALL_STATE(201)] = 5071, + [SMALL_STATE(202)] = 5180, + [SMALL_STATE(203)] = 5289, + [SMALL_STATE(204)] = 5398, + [SMALL_STATE(205)] = 5503, + [SMALL_STATE(206)] = 5608, + [SMALL_STATE(207)] = 5719, + [SMALL_STATE(208)] = 5828, + [SMALL_STATE(209)] = 5939, + [SMALL_STATE(210)] = 6048, + [SMALL_STATE(211)] = 6161, + [SMALL_STATE(212)] = 6274, + [SMALL_STATE(213)] = 6383, + [SMALL_STATE(214)] = 6492, + [SMALL_STATE(215)] = 6601, + [SMALL_STATE(216)] = 6710, + [SMALL_STATE(217)] = 6819, + [SMALL_STATE(218)] = 6928, + [SMALL_STATE(219)] = 7039, + [SMALL_STATE(220)] = 7148, + [SMALL_STATE(221)] = 7257, + [SMALL_STATE(222)] = 7366, + [SMALL_STATE(223)] = 7475, + [SMALL_STATE(224)] = 7584, + [SMALL_STATE(225)] = 7693, + [SMALL_STATE(226)] = 7802, + [SMALL_STATE(227)] = 7913, + [SMALL_STATE(228)] = 8022, + [SMALL_STATE(229)] = 8131, + [SMALL_STATE(230)] = 8242, + [SMALL_STATE(231)] = 8351, + [SMALL_STATE(232)] = 8460, + [SMALL_STATE(233)] = 8566, + [SMALL_STATE(234)] = 8672, + [SMALL_STATE(235)] = 8778, + [SMALL_STATE(236)] = 8884, + [SMALL_STATE(237)] = 8990, + [SMALL_STATE(238)] = 9096, + [SMALL_STATE(239)] = 9202, + [SMALL_STATE(240)] = 9296, + [SMALL_STATE(241)] = 9402, + [SMALL_STATE(242)] = 9508, + [SMALL_STATE(243)] = 9611, + [SMALL_STATE(244)] = 9716, + [SMALL_STATE(245)] = 9821, + [SMALL_STATE(246)] = 9924, + [SMALL_STATE(247)] = 10029, + [SMALL_STATE(248)] = 10134, + [SMALL_STATE(249)] = 10239, + [SMALL_STATE(250)] = 10341, + [SMALL_STATE(251)] = 10443, + [SMALL_STATE(252)] = 10545, + [SMALL_STATE(253)] = 10647, + [SMALL_STATE(254)] = 10749, + [SMALL_STATE(255)] = 10851, + [SMALL_STATE(256)] = 10953, + [SMALL_STATE(257)] = 11055, + [SMALL_STATE(258)] = 11157, + [SMALL_STATE(259)] = 11259, + [SMALL_STATE(260)] = 11361, + [SMALL_STATE(261)] = 11463, + [SMALL_STATE(262)] = 11565, + [SMALL_STATE(263)] = 11667, + [SMALL_STATE(264)] = 11769, + [SMALL_STATE(265)] = 11870, + [SMALL_STATE(266)] = 11971, + [SMALL_STATE(267)] = 12044, + [SMALL_STATE(268)] = 12117, + [SMALL_STATE(269)] = 12190, + [SMALL_STATE(270)] = 12289, + [SMALL_STATE(271)] = 12390, + [SMALL_STATE(272)] = 12491, + [SMALL_STATE(273)] = 12592, + [SMALL_STATE(274)] = 12693, + [SMALL_STATE(275)] = 12792, + [SMALL_STATE(276)] = 12865, + [SMALL_STATE(277)] = 12966, + [SMALL_STATE(278)] = 13067, + [SMALL_STATE(279)] = 13168, + [SMALL_STATE(280)] = 13241, + [SMALL_STATE(281)] = 13314, + [SMALL_STATE(282)] = 13415, + [SMALL_STATE(283)] = 13514, + [SMALL_STATE(284)] = 13587, + [SMALL_STATE(285)] = 13688, + [SMALL_STATE(286)] = 13789, + [SMALL_STATE(287)] = 13890, + [SMALL_STATE(288)] = 13963, + [SMALL_STATE(289)] = 14061, + [SMALL_STATE(290)] = 14157, + [SMALL_STATE(291)] = 14253, + [SMALL_STATE(292)] = 14349, + [SMALL_STATE(293)] = 14445, + [SMALL_STATE(294)] = 14541, + [SMALL_STATE(295)] = 14601, + [SMALL_STATE(296)] = 14699, + [SMALL_STATE(297)] = 14795, + [SMALL_STATE(298)] = 14891, + [SMALL_STATE(299)] = 14989, + [SMALL_STATE(300)] = 15087, + [SMALL_STATE(301)] = 15183, + [SMALL_STATE(302)] = 15279, + [SMALL_STATE(303)] = 15375, + [SMALL_STATE(304)] = 15471, + [SMALL_STATE(305)] = 15569, + [SMALL_STATE(306)] = 15667, + [SMALL_STATE(307)] = 15763, + [SMALL_STATE(308)] = 15823, + [SMALL_STATE(309)] = 15921, + [SMALL_STATE(310)] = 16017, + [SMALL_STATE(311)] = 16115, + [SMALL_STATE(312)] = 16213, + [SMALL_STATE(313)] = 16282, + [SMALL_STATE(314)] = 16341, + [SMALL_STATE(315)] = 16400, + [SMALL_STATE(316)] = 16495, + [SMALL_STATE(317)] = 16564, + [SMALL_STATE(318)] = 16623, + [SMALL_STATE(319)] = 16682, + [SMALL_STATE(320)] = 16751, + [SMALL_STATE(321)] = 16810, + [SMALL_STATE(322)] = 16879, + [SMALL_STATE(323)] = 16948, + [SMALL_STATE(324)] = 17043, + [SMALL_STATE(325)] = 17116, + [SMALL_STATE(326)] = 17175, + [SMALL_STATE(327)] = 17244, + [SMALL_STATE(328)] = 17313, + [SMALL_STATE(329)] = 17376, + [SMALL_STATE(330)] = 17439, + [SMALL_STATE(331)] = 17502, + [SMALL_STATE(332)] = 17565, + [SMALL_STATE(333)] = 17624, + [SMALL_STATE(334)] = 17693, + [SMALL_STATE(335)] = 17752, + [SMALL_STATE(336)] = 17811, + [SMALL_STATE(337)] = 17870, + [SMALL_STATE(338)] = 17965, + [SMALL_STATE(339)] = 18038, + [SMALL_STATE(340)] = 18130, + [SMALL_STATE(341)] = 18222, + [SMALL_STATE(342)] = 18314, + [SMALL_STATE(343)] = 18406, + [SMALL_STATE(344)] = 18498, + [SMALL_STATE(345)] = 18590, + [SMALL_STATE(346)] = 18682, + [SMALL_STATE(347)] = 18774, + [SMALL_STATE(348)] = 18866, + [SMALL_STATE(349)] = 18958, + [SMALL_STATE(350)] = 19050, + [SMALL_STATE(351)] = 19142, + [SMALL_STATE(352)] = 19234, + [SMALL_STATE(353)] = 19326, + [SMALL_STATE(354)] = 19418, + [SMALL_STATE(355)] = 19482, + [SMALL_STATE(356)] = 19574, + [SMALL_STATE(357)] = 19666, + [SMALL_STATE(358)] = 19758, + [SMALL_STATE(359)] = 19850, + [SMALL_STATE(360)] = 19942, + [SMALL_STATE(361)] = 20034, + [SMALL_STATE(362)] = 20126, + [SMALL_STATE(363)] = 20218, + [SMALL_STATE(364)] = 20310, + [SMALL_STATE(365)] = 20402, + [SMALL_STATE(366)] = 20494, + [SMALL_STATE(367)] = 20586, + [SMALL_STATE(368)] = 20656, + [SMALL_STATE(369)] = 20748, + [SMALL_STATE(370)] = 20840, + [SMALL_STATE(371)] = 20932, + [SMALL_STATE(372)] = 21024, + [SMALL_STATE(373)] = 21116, + [SMALL_STATE(374)] = 21208, + [SMALL_STATE(375)] = 21300, + [SMALL_STATE(376)] = 21392, + [SMALL_STATE(377)] = 21484, + [SMALL_STATE(378)] = 21576, + [SMALL_STATE(379)] = 21668, + [SMALL_STATE(380)] = 21760, + [SMALL_STATE(381)] = 21852, + [SMALL_STATE(382)] = 21944, [SMALL_STATE(383)] = 22036, [SMALL_STATE(384)] = 22128, - [SMALL_STATE(385)] = 22220, - [SMALL_STATE(386)] = 22312, - [SMALL_STATE(387)] = 22404, - [SMALL_STATE(388)] = 22496, - [SMALL_STATE(389)] = 22588, + [SMALL_STATE(385)] = 22222, + [SMALL_STATE(386)] = 22314, + [SMALL_STATE(387)] = 22406, + [SMALL_STATE(388)] = 22498, + [SMALL_STATE(389)] = 22590, [SMALL_STATE(390)] = 22682, - [SMALL_STATE(391)] = 22743, - [SMALL_STATE(392)] = 22800, - [SMALL_STATE(393)] = 22857, - [SMALL_STATE(394)] = 22914, - [SMALL_STATE(395)] = 22971, - [SMALL_STATE(396)] = 23028, - [SMALL_STATE(397)] = 23085, - [SMALL_STATE(398)] = 23152, - [SMALL_STATE(399)] = 23209, - [SMALL_STATE(400)] = 23266, - [SMALL_STATE(401)] = 23323, - [SMALL_STATE(402)] = 23380, - [SMALL_STATE(403)] = 23437, - [SMALL_STATE(404)] = 23494, - [SMALL_STATE(405)] = 23551, - [SMALL_STATE(406)] = 23608, - [SMALL_STATE(407)] = 23665, - [SMALL_STATE(408)] = 23722, - [SMALL_STATE(409)] = 23779, - [SMALL_STATE(410)] = 23840, - [SMALL_STATE(411)] = 23897, - [SMALL_STATE(412)] = 23954, - [SMALL_STATE(413)] = 24015, - [SMALL_STATE(414)] = 24072, - [SMALL_STATE(415)] = 24133, - [SMALL_STATE(416)] = 24193, - [SMALL_STATE(417)] = 24257, - [SMALL_STATE(418)] = 24313, - [SMALL_STATE(419)] = 24373, - [SMALL_STATE(420)] = 24429, - [SMALL_STATE(421)] = 24489, - [SMALL_STATE(422)] = 24549, - [SMALL_STATE(423)] = 24605, - [SMALL_STATE(424)] = 24697, - [SMALL_STATE(425)] = 24757, - [SMALL_STATE(426)] = 24817, - [SMALL_STATE(427)] = 24877, - [SMALL_STATE(428)] = 24937, - [SMALL_STATE(429)] = 24993, - [SMALL_STATE(430)] = 25057, - [SMALL_STATE(431)] = 25117, - [SMALL_STATE(432)] = 25177, - [SMALL_STATE(433)] = 25237, - [SMALL_STATE(434)] = 25293, - [SMALL_STATE(435)] = 25385, - [SMALL_STATE(436)] = 25445, - [SMALL_STATE(437)] = 25505, - [SMALL_STATE(438)] = 25565, - [SMALL_STATE(439)] = 25625, - [SMALL_STATE(440)] = 25681, - [SMALL_STATE(441)] = 25745, - [SMALL_STATE(442)] = 25839, - [SMALL_STATE(443)] = 25903, - [SMALL_STATE(444)] = 25959, - [SMALL_STATE(445)] = 26015, - [SMALL_STATE(446)] = 26075, - [SMALL_STATE(447)] = 26136, - [SMALL_STATE(448)] = 26227, - [SMALL_STATE(449)] = 26318, - [SMALL_STATE(450)] = 26409, - [SMALL_STATE(451)] = 26464, - [SMALL_STATE(452)] = 26525, - [SMALL_STATE(453)] = 26586, - [SMALL_STATE(454)] = 26641, - [SMALL_STATE(455)] = 26696, - [SMALL_STATE(456)] = 26751, - [SMALL_STATE(457)] = 26842, - [SMALL_STATE(458)] = 26897, - [SMALL_STATE(459)] = 26988, - [SMALL_STATE(460)] = 27049, - [SMALL_STATE(461)] = 27104, - [SMALL_STATE(462)] = 27159, - [SMALL_STATE(463)] = 27214, - [SMALL_STATE(464)] = 27269, - [SMALL_STATE(465)] = 27324, - [SMALL_STATE(466)] = 27379, - [SMALL_STATE(467)] = 27434, - [SMALL_STATE(468)] = 27525, - [SMALL_STATE(469)] = 27579, - [SMALL_STATE(470)] = 27633, - [SMALL_STATE(471)] = 27687, - [SMALL_STATE(472)] = 27741, - [SMALL_STATE(473)] = 27795, - [SMALL_STATE(474)] = 27849, - [SMALL_STATE(475)] = 27903, - [SMALL_STATE(476)] = 27957, - [SMALL_STATE(477)] = 28011, - [SMALL_STATE(478)] = 28065, - [SMALL_STATE(479)] = 28119, - [SMALL_STATE(480)] = 28173, - [SMALL_STATE(481)] = 28227, - [SMALL_STATE(482)] = 28281, - [SMALL_STATE(483)] = 28369, - [SMALL_STATE(484)] = 28423, - [SMALL_STATE(485)] = 28477, - [SMALL_STATE(486)] = 28531, - [SMALL_STATE(487)] = 28585, - [SMALL_STATE(488)] = 28639, - [SMALL_STATE(489)] = 28693, - [SMALL_STATE(490)] = 28747, - [SMALL_STATE(491)] = 28801, - [SMALL_STATE(492)] = 28855, - [SMALL_STATE(493)] = 28909, - [SMALL_STATE(494)] = 28963, - [SMALL_STATE(495)] = 29017, - [SMALL_STATE(496)] = 29071, - [SMALL_STATE(497)] = 29125, - [SMALL_STATE(498)] = 29179, - [SMALL_STATE(499)] = 29233, - [SMALL_STATE(500)] = 29287, - [SMALL_STATE(501)] = 29341, - [SMALL_STATE(502)] = 29395, - [SMALL_STATE(503)] = 29449, - [SMALL_STATE(504)] = 29503, - [SMALL_STATE(505)] = 29591, - [SMALL_STATE(506)] = 29645, - [SMALL_STATE(507)] = 29699, - [SMALL_STATE(508)] = 29753, - [SMALL_STATE(509)] = 29807, - [SMALL_STATE(510)] = 29861, - [SMALL_STATE(511)] = 29915, - [SMALL_STATE(512)] = 29969, - [SMALL_STATE(513)] = 30023, - [SMALL_STATE(514)] = 30077, - [SMALL_STATE(515)] = 30131, - [SMALL_STATE(516)] = 30185, - [SMALL_STATE(517)] = 30239, - [SMALL_STATE(518)] = 30293, - [SMALL_STATE(519)] = 30347, - [SMALL_STATE(520)] = 30401, - [SMALL_STATE(521)] = 30455, - [SMALL_STATE(522)] = 30509, - [SMALL_STATE(523)] = 30563, - [SMALL_STATE(524)] = 30617, - [SMALL_STATE(525)] = 30671, - [SMALL_STATE(526)] = 30725, - [SMALL_STATE(527)] = 30779, - [SMALL_STATE(528)] = 30833, - [SMALL_STATE(529)] = 30887, - [SMALL_STATE(530)] = 30941, - [SMALL_STATE(531)] = 30995, - [SMALL_STATE(532)] = 31049, - [SMALL_STATE(533)] = 31103, - [SMALL_STATE(534)] = 31157, - [SMALL_STATE(535)] = 31211, - [SMALL_STATE(536)] = 31265, - [SMALL_STATE(537)] = 31319, - [SMALL_STATE(538)] = 31373, - [SMALL_STATE(539)] = 31427, - [SMALL_STATE(540)] = 31481, - [SMALL_STATE(541)] = 31535, - [SMALL_STATE(542)] = 31589, - [SMALL_STATE(543)] = 31643, - [SMALL_STATE(544)] = 31697, - [SMALL_STATE(545)] = 31751, - [SMALL_STATE(546)] = 31805, - [SMALL_STATE(547)] = 31859, - [SMALL_STATE(548)] = 31913, - [SMALL_STATE(549)] = 31967, - [SMALL_STATE(550)] = 32021, - [SMALL_STATE(551)] = 32075, - [SMALL_STATE(552)] = 32129, - [SMALL_STATE(553)] = 32183, - [SMALL_STATE(554)] = 32237, - [SMALL_STATE(555)] = 32291, - [SMALL_STATE(556)] = 32345, - [SMALL_STATE(557)] = 32399, - [SMALL_STATE(558)] = 32453, - [SMALL_STATE(559)] = 32507, - [SMALL_STATE(560)] = 32561, - [SMALL_STATE(561)] = 32615, - [SMALL_STATE(562)] = 32669, - [SMALL_STATE(563)] = 32723, - [SMALL_STATE(564)] = 32777, - [SMALL_STATE(565)] = 32831, - [SMALL_STATE(566)] = 32885, - [SMALL_STATE(567)] = 32939, - [SMALL_STATE(568)] = 32993, - [SMALL_STATE(569)] = 33075, - [SMALL_STATE(570)] = 33130, - [SMALL_STATE(571)] = 33185, - [SMALL_STATE(572)] = 33240, - [SMALL_STATE(573)] = 33295, - [SMALL_STATE(574)] = 33350, - [SMALL_STATE(575)] = 33405, - [SMALL_STATE(576)] = 33481, - [SMALL_STATE(577)] = 33557, - [SMALL_STATE(578)] = 33633, - [SMALL_STATE(579)] = 33709, - [SMALL_STATE(580)] = 33782, - [SMALL_STATE(581)] = 33831, - [SMALL_STATE(582)] = 33880, - [SMALL_STATE(583)] = 33953, - [SMALL_STATE(584)] = 34026, - [SMALL_STATE(585)] = 34075, - [SMALL_STATE(586)] = 34148, - [SMALL_STATE(587)] = 34221, - [SMALL_STATE(588)] = 34294, - [SMALL_STATE(589)] = 34367, - [SMALL_STATE(590)] = 34440, - [SMALL_STATE(591)] = 34513, - [SMALL_STATE(592)] = 34586, - [SMALL_STATE(593)] = 34659, - [SMALL_STATE(594)] = 34732, - [SMALL_STATE(595)] = 34805, - [SMALL_STATE(596)] = 34882, - [SMALL_STATE(597)] = 34955, - [SMALL_STATE(598)] = 35028, - [SMALL_STATE(599)] = 35101, - [SMALL_STATE(600)] = 35174, - [SMALL_STATE(601)] = 35247, - [SMALL_STATE(602)] = 35320, - [SMALL_STATE(603)] = 35393, - [SMALL_STATE(604)] = 35466, - [SMALL_STATE(605)] = 35539, - [SMALL_STATE(606)] = 35612, - [SMALL_STATE(607)] = 35685, - [SMALL_STATE(608)] = 35758, - [SMALL_STATE(609)] = 35831, - [SMALL_STATE(610)] = 35904, - [SMALL_STATE(611)] = 35977, - [SMALL_STATE(612)] = 36050, - [SMALL_STATE(613)] = 36123, - [SMALL_STATE(614)] = 36196, - [SMALL_STATE(615)] = 36269, - [SMALL_STATE(616)] = 36342, - [SMALL_STATE(617)] = 36415, - [SMALL_STATE(618)] = 36488, - [SMALL_STATE(619)] = 36561, - [SMALL_STATE(620)] = 36634, - [SMALL_STATE(621)] = 36707, - [SMALL_STATE(622)] = 36780, - [SMALL_STATE(623)] = 36853, - [SMALL_STATE(624)] = 36930, - [SMALL_STATE(625)] = 36979, - [SMALL_STATE(626)] = 37052, - [SMALL_STATE(627)] = 37125, - [SMALL_STATE(628)] = 37198, - [SMALL_STATE(629)] = 37271, - [SMALL_STATE(630)] = 37319, - [SMALL_STATE(631)] = 37367, - [SMALL_STATE(632)] = 37415, - [SMALL_STATE(633)] = 37463, - [SMALL_STATE(634)] = 37511, - [SMALL_STATE(635)] = 37559, - [SMALL_STATE(636)] = 37607, - [SMALL_STATE(637)] = 37655, - [SMALL_STATE(638)] = 37703, - [SMALL_STATE(639)] = 37751, - [SMALL_STATE(640)] = 37799, - [SMALL_STATE(641)] = 37847, - [SMALL_STATE(642)] = 37895, - [SMALL_STATE(643)] = 37943, - [SMALL_STATE(644)] = 37991, - [SMALL_STATE(645)] = 38039, - [SMALL_STATE(646)] = 38087, - [SMALL_STATE(647)] = 38135, - [SMALL_STATE(648)] = 38183, - [SMALL_STATE(649)] = 38231, - [SMALL_STATE(650)] = 38279, - [SMALL_STATE(651)] = 38327, - [SMALL_STATE(652)] = 38375, - [SMALL_STATE(653)] = 38457, - [SMALL_STATE(654)] = 38539, - [SMALL_STATE(655)] = 38587, - [SMALL_STATE(656)] = 38635, - [SMALL_STATE(657)] = 38683, - [SMALL_STATE(658)] = 38731, - [SMALL_STATE(659)] = 38779, - [SMALL_STATE(660)] = 38827, - [SMALL_STATE(661)] = 38875, - [SMALL_STATE(662)] = 38923, - [SMALL_STATE(663)] = 38980, - [SMALL_STATE(664)] = 39051, - [SMALL_STATE(665)] = 39122, - [SMALL_STATE(666)] = 39193, - [SMALL_STATE(667)] = 39264, - [SMALL_STATE(668)] = 39335, - [SMALL_STATE(669)] = 39400, - [SMALL_STATE(670)] = 39457, - [SMALL_STATE(671)] = 39514, - [SMALL_STATE(672)] = 39571, - [SMALL_STATE(673)] = 39628, - [SMALL_STATE(674)] = 39699, - [SMALL_STATE(675)] = 39768, - [SMALL_STATE(676)] = 39825, - [SMALL_STATE(677)] = 39882, - [SMALL_STATE(678)] = 39945, - [SMALL_STATE(679)] = 40008, - [SMALL_STATE(680)] = 40075, - [SMALL_STATE(681)] = 40140, - [SMALL_STATE(682)] = 40207, - [SMALL_STATE(683)] = 40276, - [SMALL_STATE(684)] = 40337, - [SMALL_STATE(685)] = 40394, - [SMALL_STATE(686)] = 40455, - [SMALL_STATE(687)] = 40505, - [SMALL_STATE(688)] = 40553, - [SMALL_STATE(689)] = 40603, - [SMALL_STATE(690)] = 40653, - [SMALL_STATE(691)] = 40699, - [SMALL_STATE(692)] = 40749, - [SMALL_STATE(693)] = 40797, - [SMALL_STATE(694)] = 40845, - [SMALL_STATE(695)] = 40893, - [SMALL_STATE(696)] = 40939, - [SMALL_STATE(697)] = 40988, - [SMALL_STATE(698)] = 41033, - [SMALL_STATE(699)] = 41082, - [SMALL_STATE(700)] = 41131, - [SMALL_STATE(701)] = 41180, - [SMALL_STATE(702)] = 41229, - [SMALL_STATE(703)] = 41308, - [SMALL_STATE(704)] = 41353, - [SMALL_STATE(705)] = 41402, - [SMALL_STATE(706)] = 41466, - [SMALL_STATE(707)] = 41534, - [SMALL_STATE(708)] = 41592, - [SMALL_STATE(709)] = 41646, - [SMALL_STATE(710)] = 41690, - [SMALL_STATE(711)] = 41752, - [SMALL_STATE(712)] = 41806, - [SMALL_STATE(713)] = 41860, - [SMALL_STATE(714)] = 41928, - [SMALL_STATE(715)] = 41994, - [SMALL_STATE(716)] = 42038, - [SMALL_STATE(717)] = 42082, - [SMALL_STATE(718)] = 42150, - [SMALL_STATE(719)] = 42226, - [SMALL_STATE(720)] = 42270, - [SMALL_STATE(721)] = 42318, - [SMALL_STATE(722)] = 42378, - [SMALL_STATE(723)] = 42426, - [SMALL_STATE(724)] = 42480, - [SMALL_STATE(725)] = 42525, - [SMALL_STATE(726)] = 42568, - [SMALL_STATE(727)] = 42611, - [SMALL_STATE(728)] = 42656, - [SMALL_STATE(729)] = 42737, - [SMALL_STATE(730)] = 42784, - [SMALL_STATE(731)] = 42829, - [SMALL_STATE(732)] = 42874, - [SMALL_STATE(733)] = 42919, - [SMALL_STATE(734)] = 43000, - [SMALL_STATE(735)] = 43067, - [SMALL_STATE(736)] = 43112, - [SMALL_STATE(737)] = 43179, - [SMALL_STATE(738)] = 43260, - [SMALL_STATE(739)] = 43305, - [SMALL_STATE(740)] = 43366, - [SMALL_STATE(741)] = 43411, - [SMALL_STATE(742)] = 43474, - [SMALL_STATE(743)] = 43527, - [SMALL_STATE(744)] = 43570, - [SMALL_STATE(745)] = 43627, - [SMALL_STATE(746)] = 43692, - [SMALL_STATE(747)] = 43745, - [SMALL_STATE(748)] = 43792, - [SMALL_STATE(749)] = 43845, - [SMALL_STATE(750)] = 43892, - [SMALL_STATE(751)] = 43973, - [SMALL_STATE(752)] = 44040, - [SMALL_STATE(753)] = 44099, - [SMALL_STATE(754)] = 44152, - [SMALL_STATE(755)] = 44199, - [SMALL_STATE(756)] = 44242, - [SMALL_STATE(757)] = 44286, - [SMALL_STATE(758)] = 44328, - [SMALL_STATE(759)] = 44370, - [SMALL_STATE(760)] = 44412, - [SMALL_STATE(761)] = 44454, - [SMALL_STATE(762)] = 44496, - [SMALL_STATE(763)] = 44540, - [SMALL_STATE(764)] = 44582, - [SMALL_STATE(765)] = 44624, - [SMALL_STATE(766)] = 44704, - [SMALL_STATE(767)] = 44782, - [SMALL_STATE(768)] = 44824, - [SMALL_STATE(769)] = 44902, - [SMALL_STATE(770)] = 44944, - [SMALL_STATE(771)] = 44988, - [SMALL_STATE(772)] = 45066, - [SMALL_STATE(773)] = 45108, - [SMALL_STATE(774)] = 45186, - [SMALL_STATE(775)] = 45264, - [SMALL_STATE(776)] = 45306, - [SMALL_STATE(777)] = 45348, - [SMALL_STATE(778)] = 45390, - [SMALL_STATE(779)] = 45434, - [SMALL_STATE(780)] = 45476, - [SMALL_STATE(781)] = 45518, - [SMALL_STATE(782)] = 45560, - [SMALL_STATE(783)] = 45602, - [SMALL_STATE(784)] = 45644, - [SMALL_STATE(785)] = 45686, - [SMALL_STATE(786)] = 45728, - [SMALL_STATE(787)] = 45770, - [SMALL_STATE(788)] = 45812, - [SMALL_STATE(789)] = 45854, - [SMALL_STATE(790)] = 45896, - [SMALL_STATE(791)] = 45938, - [SMALL_STATE(792)] = 45980, - [SMALL_STATE(793)] = 46022, - [SMALL_STATE(794)] = 46064, - [SMALL_STATE(795)] = 46106, - [SMALL_STATE(796)] = 46148, - [SMALL_STATE(797)] = 46192, - [SMALL_STATE(798)] = 46234, - [SMALL_STATE(799)] = 46276, - [SMALL_STATE(800)] = 46318, - [SMALL_STATE(801)] = 46359, - [SMALL_STATE(802)] = 46400, - [SMALL_STATE(803)] = 46441, - [SMALL_STATE(804)] = 46486, - [SMALL_STATE(805)] = 46565, - [SMALL_STATE(806)] = 46606, - [SMALL_STATE(807)] = 46647, - [SMALL_STATE(808)] = 46722, - [SMALL_STATE(809)] = 46763, - [SMALL_STATE(810)] = 46804, - [SMALL_STATE(811)] = 46883, - [SMALL_STATE(812)] = 46924, - [SMALL_STATE(813)] = 46965, - [SMALL_STATE(814)] = 47006, - [SMALL_STATE(815)] = 47047, - [SMALL_STATE(816)] = 47088, - [SMALL_STATE(817)] = 47129, - [SMALL_STATE(818)] = 47170, - [SMALL_STATE(819)] = 47211, - [SMALL_STATE(820)] = 47252, - [SMALL_STATE(821)] = 47293, - [SMALL_STATE(822)] = 47334, - [SMALL_STATE(823)] = 47375, - [SMALL_STATE(824)] = 47454, - [SMALL_STATE(825)] = 47495, - [SMALL_STATE(826)] = 47540, - [SMALL_STATE(827)] = 47581, - [SMALL_STATE(828)] = 47622, - [SMALL_STATE(829)] = 47663, - [SMALL_STATE(830)] = 47704, - [SMALL_STATE(831)] = 47745, - [SMALL_STATE(832)] = 47786, - [SMALL_STATE(833)] = 47827, - [SMALL_STATE(834)] = 47868, - [SMALL_STATE(835)] = 47909, - [SMALL_STATE(836)] = 47950, - [SMALL_STATE(837)] = 47991, - [SMALL_STATE(838)] = 48032, - [SMALL_STATE(839)] = 48073, - [SMALL_STATE(840)] = 48146, - [SMALL_STATE(841)] = 48216, - [SMALL_STATE(842)] = 48286, - [SMALL_STATE(843)] = 48348, - [SMALL_STATE(844)] = 48410, - [SMALL_STATE(845)] = 48450, - [SMALL_STATE(846)] = 48490, - [SMALL_STATE(847)] = 48530, - [SMALL_STATE(848)] = 48570, - [SMALL_STATE(849)] = 48600, - [SMALL_STATE(850)] = 48625, - [SMALL_STATE(851)] = 48662, - [SMALL_STATE(852)] = 48715, - [SMALL_STATE(853)] = 48744, - [SMALL_STATE(854)] = 48769, - [SMALL_STATE(855)] = 48794, - [SMALL_STATE(856)] = 48847, - [SMALL_STATE(857)] = 48884, - [SMALL_STATE(858)] = 48909, - [SMALL_STATE(859)] = 48962, - [SMALL_STATE(860)] = 48991, - [SMALL_STATE(861)] = 49025, - [SMALL_STATE(862)] = 49053, - [SMALL_STATE(863)] = 49099, - [SMALL_STATE(864)] = 49133, - [SMALL_STATE(865)] = 49176, - [SMALL_STATE(866)] = 49219, - [SMALL_STATE(867)] = 49262, - [SMALL_STATE(868)] = 49293, - [SMALL_STATE(869)] = 49336, - [SMALL_STATE(870)] = 49379, - [SMALL_STATE(871)] = 49423, - [SMALL_STATE(872)] = 49463, - [SMALL_STATE(873)] = 49500, - [SMALL_STATE(874)] = 49537, - [SMALL_STATE(875)] = 49562, - [SMALL_STATE(876)] = 49599, - [SMALL_STATE(877)] = 49636, - [SMALL_STATE(878)] = 49670, - [SMALL_STATE(879)] = 49704, - [SMALL_STATE(880)] = 49726, - [SMALL_STATE(881)] = 49748, - [SMALL_STATE(882)] = 49770, - [SMALL_STATE(883)] = 49793, - [SMALL_STATE(884)] = 49814, - [SMALL_STATE(885)] = 49837, - [SMALL_STATE(886)] = 49864, - [SMALL_STATE(887)] = 49901, - [SMALL_STATE(888)] = 49938, - [SMALL_STATE(889)] = 49963, - [SMALL_STATE(890)] = 49986, - [SMALL_STATE(891)] = 50009, - [SMALL_STATE(892)] = 50030, - [SMALL_STATE(893)] = 50051, - [SMALL_STATE(894)] = 50074, - [SMALL_STATE(895)] = 50091, - [SMALL_STATE(896)] = 50114, - [SMALL_STATE(897)] = 50135, - [SMALL_STATE(898)] = 50156, - [SMALL_STATE(899)] = 50181, - [SMALL_STATE(900)] = 50204, - [SMALL_STATE(901)] = 50223, - [SMALL_STATE(902)] = 50244, - [SMALL_STATE(903)] = 50267, - [SMALL_STATE(904)] = 50304, - [SMALL_STATE(905)] = 50329, - [SMALL_STATE(906)] = 50366, - [SMALL_STATE(907)] = 50396, - [SMALL_STATE(908)] = 50426, - [SMALL_STATE(909)] = 50460, - [SMALL_STATE(910)] = 50494, - [SMALL_STATE(911)] = 50516, - [SMALL_STATE(912)] = 50550, - [SMALL_STATE(913)] = 50584, - [SMALL_STATE(914)] = 50614, - [SMALL_STATE(915)] = 50644, - [SMALL_STATE(916)] = 50674, - [SMALL_STATE(917)] = 50704, - [SMALL_STATE(918)] = 50722, - [SMALL_STATE(919)] = 50752, - [SMALL_STATE(920)] = 50782, - [SMALL_STATE(921)] = 50812, - [SMALL_STATE(922)] = 50846, - [SMALL_STATE(923)] = 50876, - [SMALL_STATE(924)] = 50906, - [SMALL_STATE(925)] = 50924, - [SMALL_STATE(926)] = 50954, - [SMALL_STATE(927)] = 50984, - [SMALL_STATE(928)] = 51006, - [SMALL_STATE(929)] = 51040, - [SMALL_STATE(930)] = 51070, - [SMALL_STATE(931)] = 51104, - [SMALL_STATE(932)] = 51126, - [SMALL_STATE(933)] = 51156, - [SMALL_STATE(934)] = 51190, - [SMALL_STATE(935)] = 51212, - [SMALL_STATE(936)] = 51246, - [SMALL_STATE(937)] = 51269, - [SMALL_STATE(938)] = 51288, - [SMALL_STATE(939)] = 51307, - [SMALL_STATE(940)] = 51326, - [SMALL_STATE(941)] = 51351, - [SMALL_STATE(942)] = 51370, - [SMALL_STATE(943)] = 51393, - [SMALL_STATE(944)] = 51416, - [SMALL_STATE(945)] = 51435, - [SMALL_STATE(946)] = 51454, - [SMALL_STATE(947)] = 51468, - [SMALL_STATE(948)] = 51482, - [SMALL_STATE(949)] = 51496, - [SMALL_STATE(950)] = 51510, - [SMALL_STATE(951)] = 51524, - [SMALL_STATE(952)] = 51542, - [SMALL_STATE(953)] = 51556, - [SMALL_STATE(954)] = 51576, - [SMALL_STATE(955)] = 51590, - [SMALL_STATE(956)] = 51604, - [SMALL_STATE(957)] = 51618, - [SMALL_STATE(958)] = 51632, - [SMALL_STATE(959)] = 51650, - [SMALL_STATE(960)] = 51664, - [SMALL_STATE(961)] = 51688, - [SMALL_STATE(962)] = 51712, - [SMALL_STATE(963)] = 51726, - [SMALL_STATE(964)] = 51746, - [SMALL_STATE(965)] = 51760, - [SMALL_STATE(966)] = 51774, - [SMALL_STATE(967)] = 51788, - [SMALL_STATE(968)] = 51806, - [SMALL_STATE(969)] = 51820, - [SMALL_STATE(970)] = 51838, - [SMALL_STATE(971)] = 51854, - [SMALL_STATE(972)] = 51868, - [SMALL_STATE(973)] = 51882, - [SMALL_STATE(974)] = 51900, - [SMALL_STATE(975)] = 51914, - [SMALL_STATE(976)] = 51928, - [SMALL_STATE(977)] = 51946, - [SMALL_STATE(978)] = 51960, - [SMALL_STATE(979)] = 51978, - [SMALL_STATE(980)] = 51998, - [SMALL_STATE(981)] = 52014, - [SMALL_STATE(982)] = 52036, - [SMALL_STATE(983)] = 52054, - [SMALL_STATE(984)] = 52068, - [SMALL_STATE(985)] = 52086, - [SMALL_STATE(986)] = 52106, - [SMALL_STATE(987)] = 52124, - [SMALL_STATE(988)] = 52142, - [SMALL_STATE(989)] = 52160, - [SMALL_STATE(990)] = 52186, - [SMALL_STATE(991)] = 52200, - [SMALL_STATE(992)] = 52214, - [SMALL_STATE(993)] = 52233, - [SMALL_STATE(994)] = 52252, - [SMALL_STATE(995)] = 52269, - [SMALL_STATE(996)] = 52290, - [SMALL_STATE(997)] = 52303, - [SMALL_STATE(998)] = 52324, - [SMALL_STATE(999)] = 52345, - [SMALL_STATE(1000)] = 52366, - [SMALL_STATE(1001)] = 52391, - [SMALL_STATE(1002)] = 52404, - [SMALL_STATE(1003)] = 52423, - [SMALL_STATE(1004)] = 52442, - [SMALL_STATE(1005)] = 52461, - [SMALL_STATE(1006)] = 52484, - [SMALL_STATE(1007)] = 52509, - [SMALL_STATE(1008)] = 52528, - [SMALL_STATE(1009)] = 52551, - [SMALL_STATE(1010)] = 52574, - [SMALL_STATE(1011)] = 52587, - [SMALL_STATE(1012)] = 52608, - [SMALL_STATE(1013)] = 52631, - [SMALL_STATE(1014)] = 52654, - [SMALL_STATE(1015)] = 52669, - [SMALL_STATE(1016)] = 52688, - [SMALL_STATE(1017)] = 52707, - [SMALL_STATE(1018)] = 52732, - [SMALL_STATE(1019)] = 52745, - [SMALL_STATE(1020)] = 52758, - [SMALL_STATE(1021)] = 52771, - [SMALL_STATE(1022)] = 52788, - [SMALL_STATE(1023)] = 52807, - [SMALL_STATE(1024)] = 52820, - [SMALL_STATE(1025)] = 52835, - [SMALL_STATE(1026)] = 52860, - [SMALL_STATE(1027)] = 52883, - [SMALL_STATE(1028)] = 52900, - [SMALL_STATE(1029)] = 52925, - [SMALL_STATE(1030)] = 52944, - [SMALL_STATE(1031)] = 52967, - [SMALL_STATE(1032)] = 52990, - [SMALL_STATE(1033)] = 53013, - [SMALL_STATE(1034)] = 53038, - [SMALL_STATE(1035)] = 53063, - [SMALL_STATE(1036)] = 53084, - [SMALL_STATE(1037)] = 53109, - [SMALL_STATE(1038)] = 53130, - [SMALL_STATE(1039)] = 53146, - [SMALL_STATE(1040)] = 53162, - [SMALL_STATE(1041)] = 53184, - [SMALL_STATE(1042)] = 53200, - [SMALL_STATE(1043)] = 53220, - [SMALL_STATE(1044)] = 53238, - [SMALL_STATE(1045)] = 53252, - [SMALL_STATE(1046)] = 53268, - [SMALL_STATE(1047)] = 53282, - [SMALL_STATE(1048)] = 53298, - [SMALL_STATE(1049)] = 53312, - [SMALL_STATE(1050)] = 53332, - [SMALL_STATE(1051)] = 53354, - [SMALL_STATE(1052)] = 53370, - [SMALL_STATE(1053)] = 53392, - [SMALL_STATE(1054)] = 53410, - [SMALL_STATE(1055)] = 53424, - [SMALL_STATE(1056)] = 53446, - [SMALL_STATE(1057)] = 53460, - [SMALL_STATE(1058)] = 53476, - [SMALL_STATE(1059)] = 53494, - [SMALL_STATE(1060)] = 53512, - [SMALL_STATE(1061)] = 53534, - [SMALL_STATE(1062)] = 53546, - [SMALL_STATE(1063)] = 53566, - [SMALL_STATE(1064)] = 53584, - [SMALL_STATE(1065)] = 53602, - [SMALL_STATE(1066)] = 53624, - [SMALL_STATE(1067)] = 53646, - [SMALL_STATE(1068)] = 53660, - [SMALL_STATE(1069)] = 53678, - [SMALL_STATE(1070)] = 53696, - [SMALL_STATE(1071)] = 53708, - [SMALL_STATE(1072)] = 53728, - [SMALL_STATE(1073)] = 53747, - [SMALL_STATE(1074)] = 53764, - [SMALL_STATE(1075)] = 53783, - [SMALL_STATE(1076)] = 53800, - [SMALL_STATE(1077)] = 53819, - [SMALL_STATE(1078)] = 53834, - [SMALL_STATE(1079)] = 53849, - [SMALL_STATE(1080)] = 53864, - [SMALL_STATE(1081)] = 53881, - [SMALL_STATE(1082)] = 53898, - [SMALL_STATE(1083)] = 53913, - [SMALL_STATE(1084)] = 53930, - [SMALL_STATE(1085)] = 53949, - [SMALL_STATE(1086)] = 53966, - [SMALL_STATE(1087)] = 53977, - [SMALL_STATE(1088)] = 53994, - [SMALL_STATE(1089)] = 54013, - [SMALL_STATE(1090)] = 54024, - [SMALL_STATE(1091)] = 54041, - [SMALL_STATE(1092)] = 54058, - [SMALL_STATE(1093)] = 54075, - [SMALL_STATE(1094)] = 54092, - [SMALL_STATE(1095)] = 54109, - [SMALL_STATE(1096)] = 54124, - [SMALL_STATE(1097)] = 54139, - [SMALL_STATE(1098)] = 54156, - [SMALL_STATE(1099)] = 54175, - [SMALL_STATE(1100)] = 54190, - [SMALL_STATE(1101)] = 54207, - [SMALL_STATE(1102)] = 54224, - [SMALL_STATE(1103)] = 54241, - [SMALL_STATE(1104)] = 54260, - [SMALL_STATE(1105)] = 54279, - [SMALL_STATE(1106)] = 54296, - [SMALL_STATE(1107)] = 54313, - [SMALL_STATE(1108)] = 54324, - [SMALL_STATE(1109)] = 54340, - [SMALL_STATE(1110)] = 54354, - [SMALL_STATE(1111)] = 54368, - [SMALL_STATE(1112)] = 54382, - [SMALL_STATE(1113)] = 54398, - [SMALL_STATE(1114)] = 54414, - [SMALL_STATE(1115)] = 54428, - [SMALL_STATE(1116)] = 54442, - [SMALL_STATE(1117)] = 54456, - [SMALL_STATE(1118)] = 54466, - [SMALL_STATE(1119)] = 54476, - [SMALL_STATE(1120)] = 54490, - [SMALL_STATE(1121)] = 54504, - [SMALL_STATE(1122)] = 54516, - [SMALL_STATE(1123)] = 54526, - [SMALL_STATE(1124)] = 54536, - [SMALL_STATE(1125)] = 54550, - [SMALL_STATE(1126)] = 54566, - [SMALL_STATE(1127)] = 54582, - [SMALL_STATE(1128)] = 54598, - [SMALL_STATE(1129)] = 54614, - [SMALL_STATE(1130)] = 54630, - [SMALL_STATE(1131)] = 54644, - [SMALL_STATE(1132)] = 54658, - [SMALL_STATE(1133)] = 54670, - [SMALL_STATE(1134)] = 54684, - [SMALL_STATE(1135)] = 54698, - [SMALL_STATE(1136)] = 54712, - [SMALL_STATE(1137)] = 54728, - [SMALL_STATE(1138)] = 54742, - [SMALL_STATE(1139)] = 54756, - [SMALL_STATE(1140)] = 54772, - [SMALL_STATE(1141)] = 54788, - [SMALL_STATE(1142)] = 54802, - [SMALL_STATE(1143)] = 54818, - [SMALL_STATE(1144)] = 54832, - [SMALL_STATE(1145)] = 54846, - [SMALL_STATE(1146)] = 54860, - [SMALL_STATE(1147)] = 54876, - [SMALL_STATE(1148)] = 54890, - [SMALL_STATE(1149)] = 54904, - [SMALL_STATE(1150)] = 54920, - [SMALL_STATE(1151)] = 54936, - [SMALL_STATE(1152)] = 54952, - [SMALL_STATE(1153)] = 54966, - [SMALL_STATE(1154)] = 54982, - [SMALL_STATE(1155)] = 54998, - [SMALL_STATE(1156)] = 55012, - [SMALL_STATE(1157)] = 55026, - [SMALL_STATE(1158)] = 55040, - [SMALL_STATE(1159)] = 55056, - [SMALL_STATE(1160)] = 55070, - [SMALL_STATE(1161)] = 55086, - [SMALL_STATE(1162)] = 55102, - [SMALL_STATE(1163)] = 55118, - [SMALL_STATE(1164)] = 55134, - [SMALL_STATE(1165)] = 55150, - [SMALL_STATE(1166)] = 55166, - [SMALL_STATE(1167)] = 55182, - [SMALL_STATE(1168)] = 55196, - [SMALL_STATE(1169)] = 55206, - [SMALL_STATE(1170)] = 55222, - [SMALL_STATE(1171)] = 55238, - [SMALL_STATE(1172)] = 55252, - [SMALL_STATE(1173)] = 55268, - [SMALL_STATE(1174)] = 55278, - [SMALL_STATE(1175)] = 55292, - [SMALL_STATE(1176)] = 55306, - [SMALL_STATE(1177)] = 55320, - [SMALL_STATE(1178)] = 55334, - [SMALL_STATE(1179)] = 55348, - [SMALL_STATE(1180)] = 55364, - [SMALL_STATE(1181)] = 55377, - [SMALL_STATE(1182)] = 55390, - [SMALL_STATE(1183)] = 55403, - [SMALL_STATE(1184)] = 55416, - [SMALL_STATE(1185)] = 55427, - [SMALL_STATE(1186)] = 55436, - [SMALL_STATE(1187)] = 55445, - [SMALL_STATE(1188)] = 55458, - [SMALL_STATE(1189)] = 55471, - [SMALL_STATE(1190)] = 55484, - [SMALL_STATE(1191)] = 55497, - [SMALL_STATE(1192)] = 55508, - [SMALL_STATE(1193)] = 55521, - [SMALL_STATE(1194)] = 55534, - [SMALL_STATE(1195)] = 55547, - [SMALL_STATE(1196)] = 55556, - [SMALL_STATE(1197)] = 55569, - [SMALL_STATE(1198)] = 55582, - [SMALL_STATE(1199)] = 55595, - [SMALL_STATE(1200)] = 55604, - [SMALL_STATE(1201)] = 55617, - [SMALL_STATE(1202)] = 55630, - [SMALL_STATE(1203)] = 55643, - [SMALL_STATE(1204)] = 55656, - [SMALL_STATE(1205)] = 55669, - [SMALL_STATE(1206)] = 55682, - [SMALL_STATE(1207)] = 55695, - [SMALL_STATE(1208)] = 55708, - [SMALL_STATE(1209)] = 55721, - [SMALL_STATE(1210)] = 55730, - [SMALL_STATE(1211)] = 55743, - [SMALL_STATE(1212)] = 55756, - [SMALL_STATE(1213)] = 55769, - [SMALL_STATE(1214)] = 55782, - [SMALL_STATE(1215)] = 55795, - [SMALL_STATE(1216)] = 55808, - [SMALL_STATE(1217)] = 55821, - [SMALL_STATE(1218)] = 55832, - [SMALL_STATE(1219)] = 55845, - [SMALL_STATE(1220)] = 55858, - [SMALL_STATE(1221)] = 55871, - [SMALL_STATE(1222)] = 55884, - [SMALL_STATE(1223)] = 55895, - [SMALL_STATE(1224)] = 55908, - [SMALL_STATE(1225)] = 55921, - [SMALL_STATE(1226)] = 55934, - [SMALL_STATE(1227)] = 55945, - [SMALL_STATE(1228)] = 55958, - [SMALL_STATE(1229)] = 55969, - [SMALL_STATE(1230)] = 55982, - [SMALL_STATE(1231)] = 55995, - [SMALL_STATE(1232)] = 56008, - [SMALL_STATE(1233)] = 56021, - [SMALL_STATE(1234)] = 56034, - [SMALL_STATE(1235)] = 56047, - [SMALL_STATE(1236)] = 56060, - [SMALL_STATE(1237)] = 56073, - [SMALL_STATE(1238)] = 56086, - [SMALL_STATE(1239)] = 56099, - [SMALL_STATE(1240)] = 56112, - [SMALL_STATE(1241)] = 56125, - [SMALL_STATE(1242)] = 56136, - [SMALL_STATE(1243)] = 56149, - [SMALL_STATE(1244)] = 56162, - [SMALL_STATE(1245)] = 56175, - [SMALL_STATE(1246)] = 56186, - [SMALL_STATE(1247)] = 56199, - [SMALL_STATE(1248)] = 56212, - [SMALL_STATE(1249)] = 56225, - [SMALL_STATE(1250)] = 56238, - [SMALL_STATE(1251)] = 56251, - [SMALL_STATE(1252)] = 56264, - [SMALL_STATE(1253)] = 56277, - [SMALL_STATE(1254)] = 56290, - [SMALL_STATE(1255)] = 56301, - [SMALL_STATE(1256)] = 56312, - [SMALL_STATE(1257)] = 56323, - [SMALL_STATE(1258)] = 56336, - [SMALL_STATE(1259)] = 56349, - [SMALL_STATE(1260)] = 56362, - [SMALL_STATE(1261)] = 56375, - [SMALL_STATE(1262)] = 56388, - [SMALL_STATE(1263)] = 56397, - [SMALL_STATE(1264)] = 56410, - [SMALL_STATE(1265)] = 56423, - [SMALL_STATE(1266)] = 56436, - [SMALL_STATE(1267)] = 56449, - [SMALL_STATE(1268)] = 56462, - [SMALL_STATE(1269)] = 56471, - [SMALL_STATE(1270)] = 56484, - [SMALL_STATE(1271)] = 56497, - [SMALL_STATE(1272)] = 56508, - [SMALL_STATE(1273)] = 56521, - [SMALL_STATE(1274)] = 56534, - [SMALL_STATE(1275)] = 56547, - [SMALL_STATE(1276)] = 56560, - [SMALL_STATE(1277)] = 56573, - [SMALL_STATE(1278)] = 56586, - [SMALL_STATE(1279)] = 56595, - [SMALL_STATE(1280)] = 56608, - [SMALL_STATE(1281)] = 56621, - [SMALL_STATE(1282)] = 56634, - [SMALL_STATE(1283)] = 56643, - [SMALL_STATE(1284)] = 56656, - [SMALL_STATE(1285)] = 56669, - [SMALL_STATE(1286)] = 56682, - [SMALL_STATE(1287)] = 56695, - [SMALL_STATE(1288)] = 56708, - [SMALL_STATE(1289)] = 56717, - [SMALL_STATE(1290)] = 56726, - [SMALL_STATE(1291)] = 56735, - [SMALL_STATE(1292)] = 56748, - [SMALL_STATE(1293)] = 56757, - [SMALL_STATE(1294)] = 56770, - [SMALL_STATE(1295)] = 56783, - [SMALL_STATE(1296)] = 56796, - [SMALL_STATE(1297)] = 56809, - [SMALL_STATE(1298)] = 56822, - [SMALL_STATE(1299)] = 56831, - [SMALL_STATE(1300)] = 56844, - [SMALL_STATE(1301)] = 56857, - [SMALL_STATE(1302)] = 56870, - [SMALL_STATE(1303)] = 56883, - [SMALL_STATE(1304)] = 56896, - [SMALL_STATE(1305)] = 56909, - [SMALL_STATE(1306)] = 56922, - [SMALL_STATE(1307)] = 56935, - [SMALL_STATE(1308)] = 56944, - [SMALL_STATE(1309)] = 56957, - [SMALL_STATE(1310)] = 56970, - [SMALL_STATE(1311)] = 56978, - [SMALL_STATE(1312)] = 56986, - [SMALL_STATE(1313)] = 56994, - [SMALL_STATE(1314)] = 57004, - [SMALL_STATE(1315)] = 57012, - [SMALL_STATE(1316)] = 57020, - [SMALL_STATE(1317)] = 57028, - [SMALL_STATE(1318)] = 57038, - [SMALL_STATE(1319)] = 57046, - [SMALL_STATE(1320)] = 57056, - [SMALL_STATE(1321)] = 57066, - [SMALL_STATE(1322)] = 57074, - [SMALL_STATE(1323)] = 57084, - [SMALL_STATE(1324)] = 57092, - [SMALL_STATE(1325)] = 57100, - [SMALL_STATE(1326)] = 57108, - [SMALL_STATE(1327)] = 57116, - [SMALL_STATE(1328)] = 57124, - [SMALL_STATE(1329)] = 57134, - [SMALL_STATE(1330)] = 57142, - [SMALL_STATE(1331)] = 57150, - [SMALL_STATE(1332)] = 57158, - [SMALL_STATE(1333)] = 57166, - [SMALL_STATE(1334)] = 57174, - [SMALL_STATE(1335)] = 57182, - [SMALL_STATE(1336)] = 57190, - [SMALL_STATE(1337)] = 57200, - [SMALL_STATE(1338)] = 57210, - [SMALL_STATE(1339)] = 57218, - [SMALL_STATE(1340)] = 57228, - [SMALL_STATE(1341)] = 57236, - [SMALL_STATE(1342)] = 57246, - [SMALL_STATE(1343)] = 57256, - [SMALL_STATE(1344)] = 57264, - [SMALL_STATE(1345)] = 57272, - [SMALL_STATE(1346)] = 57282, - [SMALL_STATE(1347)] = 57292, - [SMALL_STATE(1348)] = 57302, - [SMALL_STATE(1349)] = 57312, - [SMALL_STATE(1350)] = 57322, - [SMALL_STATE(1351)] = 57332, - [SMALL_STATE(1352)] = 57342, - [SMALL_STATE(1353)] = 57350, - [SMALL_STATE(1354)] = 57360, - [SMALL_STATE(1355)] = 57370, - [SMALL_STATE(1356)] = 57380, - [SMALL_STATE(1357)] = 57388, - [SMALL_STATE(1358)] = 57396, - [SMALL_STATE(1359)] = 57404, - [SMALL_STATE(1360)] = 57414, - [SMALL_STATE(1361)] = 57422, - [SMALL_STATE(1362)] = 57432, - [SMALL_STATE(1363)] = 57442, - [SMALL_STATE(1364)] = 57450, - [SMALL_STATE(1365)] = 57458, - [SMALL_STATE(1366)] = 57466, - [SMALL_STATE(1367)] = 57476, - [SMALL_STATE(1368)] = 57486, - [SMALL_STATE(1369)] = 57494, - [SMALL_STATE(1370)] = 57502, - [SMALL_STATE(1371)] = 57510, - [SMALL_STATE(1372)] = 57518, - [SMALL_STATE(1373)] = 57526, - [SMALL_STATE(1374)] = 57534, - [SMALL_STATE(1375)] = 57542, - [SMALL_STATE(1376)] = 57552, - [SMALL_STATE(1377)] = 57562, - [SMALL_STATE(1378)] = 57570, - [SMALL_STATE(1379)] = 57578, - [SMALL_STATE(1380)] = 57588, - [SMALL_STATE(1381)] = 57596, - [SMALL_STATE(1382)] = 57604, - [SMALL_STATE(1383)] = 57614, - [SMALL_STATE(1384)] = 57622, - [SMALL_STATE(1385)] = 57630, - [SMALL_STATE(1386)] = 57637, - [SMALL_STATE(1387)] = 57644, - [SMALL_STATE(1388)] = 57651, - [SMALL_STATE(1389)] = 57658, - [SMALL_STATE(1390)] = 57665, - [SMALL_STATE(1391)] = 57672, - [SMALL_STATE(1392)] = 57679, - [SMALL_STATE(1393)] = 57686, - [SMALL_STATE(1394)] = 57693, - [SMALL_STATE(1395)] = 57700, - [SMALL_STATE(1396)] = 57707, - [SMALL_STATE(1397)] = 57714, - [SMALL_STATE(1398)] = 57721, - [SMALL_STATE(1399)] = 57728, - [SMALL_STATE(1400)] = 57735, - [SMALL_STATE(1401)] = 57742, - [SMALL_STATE(1402)] = 57749, - [SMALL_STATE(1403)] = 57756, - [SMALL_STATE(1404)] = 57763, - [SMALL_STATE(1405)] = 57770, - [SMALL_STATE(1406)] = 57777, - [SMALL_STATE(1407)] = 57784, - [SMALL_STATE(1408)] = 57791, - [SMALL_STATE(1409)] = 57798, - [SMALL_STATE(1410)] = 57805, - [SMALL_STATE(1411)] = 57812, - [SMALL_STATE(1412)] = 57819, - [SMALL_STATE(1413)] = 57826, - [SMALL_STATE(1414)] = 57833, - [SMALL_STATE(1415)] = 57840, - [SMALL_STATE(1416)] = 57847, - [SMALL_STATE(1417)] = 57854, - [SMALL_STATE(1418)] = 57861, - [SMALL_STATE(1419)] = 57868, - [SMALL_STATE(1420)] = 57875, - [SMALL_STATE(1421)] = 57882, - [SMALL_STATE(1422)] = 57889, - [SMALL_STATE(1423)] = 57896, - [SMALL_STATE(1424)] = 57903, - [SMALL_STATE(1425)] = 57910, - [SMALL_STATE(1426)] = 57917, - [SMALL_STATE(1427)] = 57924, - [SMALL_STATE(1428)] = 57931, - [SMALL_STATE(1429)] = 57938, - [SMALL_STATE(1430)] = 57945, - [SMALL_STATE(1431)] = 57952, - [SMALL_STATE(1432)] = 57959, - [SMALL_STATE(1433)] = 57966, - [SMALL_STATE(1434)] = 57973, - [SMALL_STATE(1435)] = 57980, - [SMALL_STATE(1436)] = 57987, - [SMALL_STATE(1437)] = 57994, - [SMALL_STATE(1438)] = 58001, - [SMALL_STATE(1439)] = 58008, - [SMALL_STATE(1440)] = 58015, - [SMALL_STATE(1441)] = 58022, - [SMALL_STATE(1442)] = 58029, - [SMALL_STATE(1443)] = 58036, - [SMALL_STATE(1444)] = 58043, - [SMALL_STATE(1445)] = 58050, - [SMALL_STATE(1446)] = 58057, - [SMALL_STATE(1447)] = 58064, - [SMALL_STATE(1448)] = 58071, - [SMALL_STATE(1449)] = 58078, - [SMALL_STATE(1450)] = 58085, - [SMALL_STATE(1451)] = 58092, - [SMALL_STATE(1452)] = 58099, - [SMALL_STATE(1453)] = 58106, - [SMALL_STATE(1454)] = 58113, - [SMALL_STATE(1455)] = 58120, - [SMALL_STATE(1456)] = 58127, - [SMALL_STATE(1457)] = 58134, - [SMALL_STATE(1458)] = 58141, - [SMALL_STATE(1459)] = 58148, - [SMALL_STATE(1460)] = 58155, - [SMALL_STATE(1461)] = 58162, - [SMALL_STATE(1462)] = 58169, - [SMALL_STATE(1463)] = 58176, - [SMALL_STATE(1464)] = 58183, - [SMALL_STATE(1465)] = 58190, - [SMALL_STATE(1466)] = 58197, - [SMALL_STATE(1467)] = 58204, - [SMALL_STATE(1468)] = 58211, - [SMALL_STATE(1469)] = 58218, - [SMALL_STATE(1470)] = 58225, - [SMALL_STATE(1471)] = 58232, - [SMALL_STATE(1472)] = 58239, - [SMALL_STATE(1473)] = 58246, - [SMALL_STATE(1474)] = 58253, - [SMALL_STATE(1475)] = 58260, - [SMALL_STATE(1476)] = 58267, - [SMALL_STATE(1477)] = 58274, - [SMALL_STATE(1478)] = 58281, - [SMALL_STATE(1479)] = 58288, - [SMALL_STATE(1480)] = 58295, - [SMALL_STATE(1481)] = 58302, - [SMALL_STATE(1482)] = 58309, - [SMALL_STATE(1483)] = 58316, - [SMALL_STATE(1484)] = 58323, - [SMALL_STATE(1485)] = 58330, - [SMALL_STATE(1486)] = 58337, - [SMALL_STATE(1487)] = 58344, - [SMALL_STATE(1488)] = 58351, - [SMALL_STATE(1489)] = 58358, - [SMALL_STATE(1490)] = 58365, - [SMALL_STATE(1491)] = 58372, - [SMALL_STATE(1492)] = 58379, - [SMALL_STATE(1493)] = 58386, - [SMALL_STATE(1494)] = 58393, - [SMALL_STATE(1495)] = 58400, - [SMALL_STATE(1496)] = 58407, - [SMALL_STATE(1497)] = 58414, - [SMALL_STATE(1498)] = 58421, - [SMALL_STATE(1499)] = 58428, - [SMALL_STATE(1500)] = 58435, - [SMALL_STATE(1501)] = 58442, - [SMALL_STATE(1502)] = 58449, - [SMALL_STATE(1503)] = 58456, - [SMALL_STATE(1504)] = 58463, - [SMALL_STATE(1505)] = 58470, - [SMALL_STATE(1506)] = 58477, - [SMALL_STATE(1507)] = 58484, - [SMALL_STATE(1508)] = 58491, - [SMALL_STATE(1509)] = 58498, + [SMALL_STATE(391)] = 22774, + [SMALL_STATE(392)] = 22866, + [SMALL_STATE(393)] = 22958, + [SMALL_STATE(394)] = 23050, + [SMALL_STATE(395)] = 23142, + [SMALL_STATE(396)] = 23234, + [SMALL_STATE(397)] = 23326, + [SMALL_STATE(398)] = 23418, + [SMALL_STATE(399)] = 23510, + [SMALL_STATE(400)] = 23574, + [SMALL_STATE(401)] = 23666, + [SMALL_STATE(402)] = 23758, + [SMALL_STATE(403)] = 23850, + [SMALL_STATE(404)] = 23942, + [SMALL_STATE(405)] = 24034, + [SMALL_STATE(406)] = 24126, + [SMALL_STATE(407)] = 24218, + [SMALL_STATE(408)] = 24310, + [SMALL_STATE(409)] = 24402, + [SMALL_STATE(410)] = 24494, + [SMALL_STATE(411)] = 24586, + [SMALL_STATE(412)] = 24678, + [SMALL_STATE(413)] = 24770, + [SMALL_STATE(414)] = 24862, + [SMALL_STATE(415)] = 24954, + [SMALL_STATE(416)] = 25046, + [SMALL_STATE(417)] = 25138, + [SMALL_STATE(418)] = 25230, + [SMALL_STATE(419)] = 25322, + [SMALL_STATE(420)] = 25414, + [SMALL_STATE(421)] = 25506, + [SMALL_STATE(422)] = 25598, + [SMALL_STATE(423)] = 25690, + [SMALL_STATE(424)] = 25782, + [SMALL_STATE(425)] = 25874, + [SMALL_STATE(426)] = 25966, + [SMALL_STATE(427)] = 26058, + [SMALL_STATE(428)] = 26150, + [SMALL_STATE(429)] = 26242, + [SMALL_STATE(430)] = 26334, + [SMALL_STATE(431)] = 26426, + [SMALL_STATE(432)] = 26518, + [SMALL_STATE(433)] = 26610, + [SMALL_STATE(434)] = 26702, + [SMALL_STATE(435)] = 26794, + [SMALL_STATE(436)] = 26886, + [SMALL_STATE(437)] = 26943, + [SMALL_STATE(438)] = 27000, + [SMALL_STATE(439)] = 27057, + [SMALL_STATE(440)] = 27114, + [SMALL_STATE(441)] = 27171, + [SMALL_STATE(442)] = 27228, + [SMALL_STATE(443)] = 27285, + [SMALL_STATE(444)] = 27342, + [SMALL_STATE(445)] = 27399, + [SMALL_STATE(446)] = 27456, + [SMALL_STATE(447)] = 27513, + [SMALL_STATE(448)] = 27570, + [SMALL_STATE(449)] = 27627, + [SMALL_STATE(450)] = 27684, + [SMALL_STATE(451)] = 27745, + [SMALL_STATE(452)] = 27802, + [SMALL_STATE(453)] = 27863, + [SMALL_STATE(454)] = 27924, + [SMALL_STATE(455)] = 27981, + [SMALL_STATE(456)] = 28038, + [SMALL_STATE(457)] = 28095, + [SMALL_STATE(458)] = 28152, + [SMALL_STATE(459)] = 28219, + [SMALL_STATE(460)] = 28276, + [SMALL_STATE(461)] = 28337, + [SMALL_STATE(462)] = 28429, + [SMALL_STATE(463)] = 28493, + [SMALL_STATE(464)] = 28549, + [SMALL_STATE(465)] = 28605, + [SMALL_STATE(466)] = 28669, + [SMALL_STATE(467)] = 28729, + [SMALL_STATE(468)] = 28821, + [SMALL_STATE(469)] = 28881, + [SMALL_STATE(470)] = 28941, + [SMALL_STATE(471)] = 29001, + [SMALL_STATE(472)] = 29057, + [SMALL_STATE(473)] = 29117, + [SMALL_STATE(474)] = 29173, + [SMALL_STATE(475)] = 29237, + [SMALL_STATE(476)] = 29293, + [SMALL_STATE(477)] = 29353, + [SMALL_STATE(478)] = 29413, + [SMALL_STATE(479)] = 29507, + [SMALL_STATE(480)] = 29567, + [SMALL_STATE(481)] = 29627, + [SMALL_STATE(482)] = 29687, + [SMALL_STATE(483)] = 29747, + [SMALL_STATE(484)] = 29803, + [SMALL_STATE(485)] = 29863, + [SMALL_STATE(486)] = 29923, + [SMALL_STATE(487)] = 29979, + [SMALL_STATE(488)] = 30043, + [SMALL_STATE(489)] = 30099, + [SMALL_STATE(490)] = 30159, + [SMALL_STATE(491)] = 30219, + [SMALL_STATE(492)] = 30279, + [SMALL_STATE(493)] = 30334, + [SMALL_STATE(494)] = 30425, + [SMALL_STATE(495)] = 30486, + [SMALL_STATE(496)] = 30541, + [SMALL_STATE(497)] = 30596, + [SMALL_STATE(498)] = 30687, + [SMALL_STATE(499)] = 30742, + [SMALL_STATE(500)] = 30797, + [SMALL_STATE(501)] = 30852, + [SMALL_STATE(502)] = 30907, + [SMALL_STATE(503)] = 30968, + [SMALL_STATE(504)] = 31023, + [SMALL_STATE(505)] = 31078, + [SMALL_STATE(506)] = 31133, + [SMALL_STATE(507)] = 31188, + [SMALL_STATE(508)] = 31243, + [SMALL_STATE(509)] = 31334, + [SMALL_STATE(510)] = 31395, + [SMALL_STATE(511)] = 31486, + [SMALL_STATE(512)] = 31577, + [SMALL_STATE(513)] = 31668, + [SMALL_STATE(514)] = 31729, + [SMALL_STATE(515)] = 31783, + [SMALL_STATE(516)] = 31837, + [SMALL_STATE(517)] = 31891, + [SMALL_STATE(518)] = 31945, + [SMALL_STATE(519)] = 31999, + [SMALL_STATE(520)] = 32053, + [SMALL_STATE(521)] = 32107, + [SMALL_STATE(522)] = 32161, + [SMALL_STATE(523)] = 32215, + [SMALL_STATE(524)] = 32269, + [SMALL_STATE(525)] = 32323, + [SMALL_STATE(526)] = 32377, + [SMALL_STATE(527)] = 32431, + [SMALL_STATE(528)] = 32485, + [SMALL_STATE(529)] = 32539, + [SMALL_STATE(530)] = 32593, + [SMALL_STATE(531)] = 32647, + [SMALL_STATE(532)] = 32701, + [SMALL_STATE(533)] = 32755, + [SMALL_STATE(534)] = 32809, + [SMALL_STATE(535)] = 32863, + [SMALL_STATE(536)] = 32917, + [SMALL_STATE(537)] = 32971, + [SMALL_STATE(538)] = 33025, + [SMALL_STATE(539)] = 33079, + [SMALL_STATE(540)] = 33133, + [SMALL_STATE(541)] = 33187, + [SMALL_STATE(542)] = 33241, + [SMALL_STATE(543)] = 33295, + [SMALL_STATE(544)] = 33349, + [SMALL_STATE(545)] = 33403, + [SMALL_STATE(546)] = 33457, + [SMALL_STATE(547)] = 33511, + [SMALL_STATE(548)] = 33565, + [SMALL_STATE(549)] = 33619, + [SMALL_STATE(550)] = 33673, + [SMALL_STATE(551)] = 33727, + [SMALL_STATE(552)] = 33815, + [SMALL_STATE(553)] = 33869, + [SMALL_STATE(554)] = 33923, + [SMALL_STATE(555)] = 33977, + [SMALL_STATE(556)] = 34031, + [SMALL_STATE(557)] = 34085, + [SMALL_STATE(558)] = 34139, + [SMALL_STATE(559)] = 34193, + [SMALL_STATE(560)] = 34247, + [SMALL_STATE(561)] = 34301, + [SMALL_STATE(562)] = 34355, + [SMALL_STATE(563)] = 34409, + [SMALL_STATE(564)] = 34463, + [SMALL_STATE(565)] = 34517, + [SMALL_STATE(566)] = 34571, + [SMALL_STATE(567)] = 34625, + [SMALL_STATE(568)] = 34679, + [SMALL_STATE(569)] = 34733, + [SMALL_STATE(570)] = 34787, + [SMALL_STATE(571)] = 34841, + [SMALL_STATE(572)] = 34895, + [SMALL_STATE(573)] = 34949, + [SMALL_STATE(574)] = 35003, + [SMALL_STATE(575)] = 35057, + [SMALL_STATE(576)] = 35111, + [SMALL_STATE(577)] = 35165, + [SMALL_STATE(578)] = 35219, + [SMALL_STATE(579)] = 35273, + [SMALL_STATE(580)] = 35327, + [SMALL_STATE(581)] = 35381, + [SMALL_STATE(582)] = 35435, + [SMALL_STATE(583)] = 35489, + [SMALL_STATE(584)] = 35543, + [SMALL_STATE(585)] = 35597, + [SMALL_STATE(586)] = 35651, + [SMALL_STATE(587)] = 35705, + [SMALL_STATE(588)] = 35759, + [SMALL_STATE(589)] = 35813, + [SMALL_STATE(590)] = 35867, + [SMALL_STATE(591)] = 35921, + [SMALL_STATE(592)] = 35975, + [SMALL_STATE(593)] = 36029, + [SMALL_STATE(594)] = 36083, + [SMALL_STATE(595)] = 36137, + [SMALL_STATE(596)] = 36191, + [SMALL_STATE(597)] = 36245, + [SMALL_STATE(598)] = 36299, + [SMALL_STATE(599)] = 36353, + [SMALL_STATE(600)] = 36407, + [SMALL_STATE(601)] = 36461, + [SMALL_STATE(602)] = 36515, + [SMALL_STATE(603)] = 36569, + [SMALL_STATE(604)] = 36623, + [SMALL_STATE(605)] = 36677, + [SMALL_STATE(606)] = 36731, + [SMALL_STATE(607)] = 36785, + [SMALL_STATE(608)] = 36839, + [SMALL_STATE(609)] = 36893, + [SMALL_STATE(610)] = 36947, + [SMALL_STATE(611)] = 37001, + [SMALL_STATE(612)] = 37055, + [SMALL_STATE(613)] = 37143, + [SMALL_STATE(614)] = 37197, + [SMALL_STATE(615)] = 37279, + [SMALL_STATE(616)] = 37355, + [SMALL_STATE(617)] = 37409, + [SMALL_STATE(618)] = 37463, + [SMALL_STATE(619)] = 37539, + [SMALL_STATE(620)] = 37593, + [SMALL_STATE(621)] = 37647, + [SMALL_STATE(622)] = 37701, + [SMALL_STATE(623)] = 37777, + [SMALL_STATE(624)] = 37853, + [SMALL_STATE(625)] = 37907, + [SMALL_STATE(626)] = 37983, + [SMALL_STATE(627)] = 38059, + [SMALL_STATE(628)] = 38132, + [SMALL_STATE(629)] = 38205, + [SMALL_STATE(630)] = 38278, + [SMALL_STATE(631)] = 38351, + [SMALL_STATE(632)] = 38424, + [SMALL_STATE(633)] = 38497, + [SMALL_STATE(634)] = 38570, + [SMALL_STATE(635)] = 38643, + [SMALL_STATE(636)] = 38716, + [SMALL_STATE(637)] = 38789, + [SMALL_STATE(638)] = 38862, + [SMALL_STATE(639)] = 38935, + [SMALL_STATE(640)] = 39008, + [SMALL_STATE(641)] = 39081, + [SMALL_STATE(642)] = 39154, + [SMALL_STATE(643)] = 39227, + [SMALL_STATE(644)] = 39300, + [SMALL_STATE(645)] = 39373, + [SMALL_STATE(646)] = 39446, + [SMALL_STATE(647)] = 39519, + [SMALL_STATE(648)] = 39592, + [SMALL_STATE(649)] = 39665, + [SMALL_STATE(650)] = 39738, + [SMALL_STATE(651)] = 39811, + [SMALL_STATE(652)] = 39884, + [SMALL_STATE(653)] = 39957, + [SMALL_STATE(654)] = 40030, + [SMALL_STATE(655)] = 40103, + [SMALL_STATE(656)] = 40176, + [SMALL_STATE(657)] = 40249, + [SMALL_STATE(658)] = 40322, + [SMALL_STATE(659)] = 40395, + [SMALL_STATE(660)] = 40468, + [SMALL_STATE(661)] = 40541, + [SMALL_STATE(662)] = 40614, + [SMALL_STATE(663)] = 40691, + [SMALL_STATE(664)] = 40764, + [SMALL_STATE(665)] = 40837, + [SMALL_STATE(666)] = 40910, + [SMALL_STATE(667)] = 40983, + [SMALL_STATE(668)] = 41056, + [SMALL_STATE(669)] = 41129, + [SMALL_STATE(670)] = 41202, + [SMALL_STATE(671)] = 41275, + [SMALL_STATE(672)] = 41348, + [SMALL_STATE(673)] = 41421, + [SMALL_STATE(674)] = 41494, + [SMALL_STATE(675)] = 41567, + [SMALL_STATE(676)] = 41640, + [SMALL_STATE(677)] = 41713, + [SMALL_STATE(678)] = 41786, + [SMALL_STATE(679)] = 41863, + [SMALL_STATE(680)] = 41936, + [SMALL_STATE(681)] = 42009, + [SMALL_STATE(682)] = 42082, + [SMALL_STATE(683)] = 42155, + [SMALL_STATE(684)] = 42228, + [SMALL_STATE(685)] = 42301, + [SMALL_STATE(686)] = 42374, + [SMALL_STATE(687)] = 42447, + [SMALL_STATE(688)] = 42520, + [SMALL_STATE(689)] = 42593, + [SMALL_STATE(690)] = 42666, + [SMALL_STATE(691)] = 42739, + [SMALL_STATE(692)] = 42812, + [SMALL_STATE(693)] = 42885, + [SMALL_STATE(694)] = 42958, + [SMALL_STATE(695)] = 43031, + [SMALL_STATE(696)] = 43079, + [SMALL_STATE(697)] = 43127, + [SMALL_STATE(698)] = 43175, + [SMALL_STATE(699)] = 43223, + [SMALL_STATE(700)] = 43270, + [SMALL_STATE(701)] = 43317, + [SMALL_STATE(702)] = 43364, + [SMALL_STATE(703)] = 43411, + [SMALL_STATE(704)] = 43458, + [SMALL_STATE(705)] = 43505, + [SMALL_STATE(706)] = 43552, + [SMALL_STATE(707)] = 43599, + [SMALL_STATE(708)] = 43646, + [SMALL_STATE(709)] = 43693, + [SMALL_STATE(710)] = 43740, + [SMALL_STATE(711)] = 43787, + [SMALL_STATE(712)] = 43834, + [SMALL_STATE(713)] = 43881, + [SMALL_STATE(714)] = 43928, + [SMALL_STATE(715)] = 43975, + [SMALL_STATE(716)] = 44022, + [SMALL_STATE(717)] = 44069, + [SMALL_STATE(718)] = 44116, + [SMALL_STATE(719)] = 44163, + [SMALL_STATE(720)] = 44244, + [SMALL_STATE(721)] = 44291, + [SMALL_STATE(722)] = 44338, + [SMALL_STATE(723)] = 44385, + [SMALL_STATE(724)] = 44432, + [SMALL_STATE(725)] = 44479, + [SMALL_STATE(726)] = 44560, + [SMALL_STATE(727)] = 44607, + [SMALL_STATE(728)] = 44654, + [SMALL_STATE(729)] = 44701, + [SMALL_STATE(730)] = 44748, + [SMALL_STATE(731)] = 44795, + [SMALL_STATE(732)] = 44842, + [SMALL_STATE(733)] = 44889, + [SMALL_STATE(734)] = 44936, + [SMALL_STATE(735)] = 44996, + [SMALL_STATE(736)] = 45052, + [SMALL_STATE(737)] = 45108, + [SMALL_STATE(738)] = 45170, + [SMALL_STATE(739)] = 45240, + [SMALL_STATE(740)] = 45308, + [SMALL_STATE(741)] = 45368, + [SMALL_STATE(742)] = 45424, + [SMALL_STATE(743)] = 45490, + [SMALL_STATE(744)] = 45554, + [SMALL_STATE(745)] = 45604, + [SMALL_STATE(746)] = 45654, + [SMALL_STATE(747)] = 45704, + [SMALL_STATE(748)] = 45754, + [SMALL_STATE(749)] = 45824, + [SMALL_STATE(750)] = 45894, + [SMALL_STATE(751)] = 45950, + [SMALL_STATE(752)] = 46012, + [SMALL_STATE(753)] = 46082, + [SMALL_STATE(754)] = 46150, + [SMALL_STATE(755)] = 46206, + [SMALL_STATE(756)] = 46272, + [SMALL_STATE(757)] = 46336, + [SMALL_STATE(758)] = 46406, + [SMALL_STATE(759)] = 46476, + [SMALL_STATE(760)] = 46532, + [SMALL_STATE(761)] = 46588, + [SMALL_STATE(762)] = 46644, + [SMALL_STATE(763)] = 46693, + [SMALL_STATE(764)] = 46742, + [SMALL_STATE(765)] = 46787, + [SMALL_STATE(766)] = 46836, + [SMALL_STATE(767)] = 46915, + [SMALL_STATE(768)] = 46964, + [SMALL_STATE(769)] = 47013, + [SMALL_STATE(770)] = 47062, + [SMALL_STATE(771)] = 47111, + [SMALL_STATE(772)] = 47160, + [SMALL_STATE(773)] = 47237, + [SMALL_STATE(774)] = 47284, + [SMALL_STATE(775)] = 47331, + [SMALL_STATE(776)] = 47380, + [SMALL_STATE(777)] = 47429, + [SMALL_STATE(778)] = 47474, + [SMALL_STATE(779)] = 47523, + [SMALL_STATE(780)] = 47602, + [SMALL_STATE(781)] = 47649, + [SMALL_STATE(782)] = 47696, + [SMALL_STATE(783)] = 47745, + [SMALL_STATE(784)] = 47803, + [SMALL_STATE(785)] = 47857, + [SMALL_STATE(786)] = 47911, + [SMALL_STATE(787)] = 47965, + [SMALL_STATE(788)] = 48025, + [SMALL_STATE(789)] = 48093, + [SMALL_STATE(790)] = 48159, + [SMALL_STATE(791)] = 48213, + [SMALL_STATE(792)] = 48267, + [SMALL_STATE(793)] = 48331, + [SMALL_STATE(794)] = 48393, + [SMALL_STATE(795)] = 48441, + [SMALL_STATE(796)] = 48489, + [SMALL_STATE(797)] = 48543, + [SMALL_STATE(798)] = 48611, + [SMALL_STATE(799)] = 48679, + [SMALL_STATE(800)] = 48739, + [SMALL_STATE(801)] = 48807, + [SMALL_STATE(802)] = 48873, + [SMALL_STATE(803)] = 48931, + [SMALL_STATE(804)] = 48985, + [SMALL_STATE(805)] = 49049, + [SMALL_STATE(806)] = 49111, + [SMALL_STATE(807)] = 49155, + [SMALL_STATE(808)] = 49199, + [SMALL_STATE(809)] = 49243, + [SMALL_STATE(810)] = 49287, + [SMALL_STATE(811)] = 49341, + [SMALL_STATE(812)] = 49395, + [SMALL_STATE(813)] = 49449, + [SMALL_STATE(814)] = 49509, + [SMALL_STATE(815)] = 49577, + [SMALL_STATE(816)] = 49643, + [SMALL_STATE(817)] = 49701, + [SMALL_STATE(818)] = 49755, + [SMALL_STATE(819)] = 49819, + [SMALL_STATE(820)] = 49881, + [SMALL_STATE(821)] = 49949, + [SMALL_STATE(822)] = 50017, + [SMALL_STATE(823)] = 50093, + [SMALL_STATE(824)] = 50161, + [SMALL_STATE(825)] = 50229, + [SMALL_STATE(826)] = 50283, + [SMALL_STATE(827)] = 50328, + [SMALL_STATE(828)] = 50371, + [SMALL_STATE(829)] = 50424, + [SMALL_STATE(830)] = 50483, + [SMALL_STATE(831)] = 50526, + [SMALL_STATE(832)] = 50593, + [SMALL_STATE(833)] = 50658, + [SMALL_STATE(834)] = 50715, + [SMALL_STATE(835)] = 50760, + [SMALL_STATE(836)] = 50813, + [SMALL_STATE(837)] = 50876, + [SMALL_STATE(838)] = 50937, + [SMALL_STATE(839)] = 50982, + [SMALL_STATE(840)] = 51029, + [SMALL_STATE(841)] = 51074, + [SMALL_STATE(842)] = 51117, + [SMALL_STATE(843)] = 51162, + [SMALL_STATE(844)] = 51229, + [SMALL_STATE(845)] = 51296, + [SMALL_STATE(846)] = 51349, + [SMALL_STATE(847)] = 51430, + [SMALL_STATE(848)] = 51473, + [SMALL_STATE(849)] = 51526, + [SMALL_STATE(850)] = 51571, + [SMALL_STATE(851)] = 51614, + [SMALL_STATE(852)] = 51657, + [SMALL_STATE(853)] = 51704, + [SMALL_STATE(854)] = 51749, + [SMALL_STATE(855)] = 51830, + [SMALL_STATE(856)] = 51875, + [SMALL_STATE(857)] = 51956, + [SMALL_STATE(858)] = 52001, + [SMALL_STATE(859)] = 52048, + [SMALL_STATE(860)] = 52091, + [SMALL_STATE(861)] = 52136, + [SMALL_STATE(862)] = 52179, + [SMALL_STATE(863)] = 52260, + [SMALL_STATE(864)] = 52305, + [SMALL_STATE(865)] = 52352, + [SMALL_STATE(866)] = 52397, + [SMALL_STATE(867)] = 52439, + [SMALL_STATE(868)] = 52481, + [SMALL_STATE(869)] = 52523, + [SMALL_STATE(870)] = 52565, + [SMALL_STATE(871)] = 52607, + [SMALL_STATE(872)] = 52649, + [SMALL_STATE(873)] = 52691, + [SMALL_STATE(874)] = 52733, + [SMALL_STATE(875)] = 52775, + [SMALL_STATE(876)] = 52817, + [SMALL_STATE(877)] = 52859, + [SMALL_STATE(878)] = 52901, + [SMALL_STATE(879)] = 52943, + [SMALL_STATE(880)] = 52985, + [SMALL_STATE(881)] = 53027, + [SMALL_STATE(882)] = 53069, + [SMALL_STATE(883)] = 53111, + [SMALL_STATE(884)] = 53153, + [SMALL_STATE(885)] = 53195, + [SMALL_STATE(886)] = 53237, + [SMALL_STATE(887)] = 53279, + [SMALL_STATE(888)] = 53321, + [SMALL_STATE(889)] = 53363, + [SMALL_STATE(890)] = 53405, + [SMALL_STATE(891)] = 53447, + [SMALL_STATE(892)] = 53489, + [SMALL_STATE(893)] = 53531, + [SMALL_STATE(894)] = 53573, + [SMALL_STATE(895)] = 53615, + [SMALL_STATE(896)] = 53657, + [SMALL_STATE(897)] = 53699, + [SMALL_STATE(898)] = 53741, + [SMALL_STATE(899)] = 53783, + [SMALL_STATE(900)] = 53825, + [SMALL_STATE(901)] = 53867, + [SMALL_STATE(902)] = 53909, + [SMALL_STATE(903)] = 53951, + [SMALL_STATE(904)] = 53993, + [SMALL_STATE(905)] = 54035, + [SMALL_STATE(906)] = 54077, + [SMALL_STATE(907)] = 54119, + [SMALL_STATE(908)] = 54161, + [SMALL_STATE(909)] = 54203, + [SMALL_STATE(910)] = 54245, + [SMALL_STATE(911)] = 54287, + [SMALL_STATE(912)] = 54331, + [SMALL_STATE(913)] = 54375, + [SMALL_STATE(914)] = 54417, + [SMALL_STATE(915)] = 54459, + [SMALL_STATE(916)] = 54503, + [SMALL_STATE(917)] = 54545, + [SMALL_STATE(918)] = 54587, + [SMALL_STATE(919)] = 54629, + [SMALL_STATE(920)] = 54673, + [SMALL_STATE(921)] = 54715, + [SMALL_STATE(922)] = 54757, + [SMALL_STATE(923)] = 54799, + [SMALL_STATE(924)] = 54841, + [SMALL_STATE(925)] = 54883, + [SMALL_STATE(926)] = 54927, + [SMALL_STATE(927)] = 54969, + [SMALL_STATE(928)] = 55047, + [SMALL_STATE(929)] = 55125, + [SMALL_STATE(930)] = 55167, + [SMALL_STATE(931)] = 55209, + [SMALL_STATE(932)] = 55251, + [SMALL_STATE(933)] = 55331, + [SMALL_STATE(934)] = 55409, + [SMALL_STATE(935)] = 55487, + [SMALL_STATE(936)] = 55565, + [SMALL_STATE(937)] = 55607, + [SMALL_STATE(938)] = 55649, + [SMALL_STATE(939)] = 55691, + [SMALL_STATE(940)] = 55733, + [SMALL_STATE(941)] = 55775, + [SMALL_STATE(942)] = 55817, + [SMALL_STATE(943)] = 55859, + [SMALL_STATE(944)] = 55901, + [SMALL_STATE(945)] = 55943, + [SMALL_STATE(946)] = 55984, + [SMALL_STATE(947)] = 56025, + [SMALL_STATE(948)] = 56066, + [SMALL_STATE(949)] = 56107, + [SMALL_STATE(950)] = 56148, + [SMALL_STATE(951)] = 56189, + [SMALL_STATE(952)] = 56230, + [SMALL_STATE(953)] = 56271, + [SMALL_STATE(954)] = 56312, + [SMALL_STATE(955)] = 56353, + [SMALL_STATE(956)] = 56394, + [SMALL_STATE(957)] = 56435, + [SMALL_STATE(958)] = 56476, + [SMALL_STATE(959)] = 56517, + [SMALL_STATE(960)] = 56558, + [SMALL_STATE(961)] = 56599, + [SMALL_STATE(962)] = 56640, + [SMALL_STATE(963)] = 56681, + [SMALL_STATE(964)] = 56722, + [SMALL_STATE(965)] = 56801, + [SMALL_STATE(966)] = 56842, + [SMALL_STATE(967)] = 56883, + [SMALL_STATE(968)] = 56924, + [SMALL_STATE(969)] = 56965, + [SMALL_STATE(970)] = 57006, + [SMALL_STATE(971)] = 57047, + [SMALL_STATE(972)] = 57088, + [SMALL_STATE(973)] = 57133, + [SMALL_STATE(974)] = 57178, + [SMALL_STATE(975)] = 57219, + [SMALL_STATE(976)] = 57260, + [SMALL_STATE(977)] = 57301, + [SMALL_STATE(978)] = 57342, + [SMALL_STATE(979)] = 57383, + [SMALL_STATE(980)] = 57458, + [SMALL_STATE(981)] = 57537, + [SMALL_STATE(982)] = 57578, + [SMALL_STATE(983)] = 57657, + [SMALL_STATE(984)] = 57698, + [SMALL_STATE(985)] = 57771, + [SMALL_STATE(986)] = 57841, + [SMALL_STATE(987)] = 57911, + [SMALL_STATE(988)] = 57973, + [SMALL_STATE(989)] = 58035, + [SMALL_STATE(990)] = 58074, + [SMALL_STATE(991)] = 58113, + [SMALL_STATE(992)] = 58152, + [SMALL_STATE(993)] = 58191, + [SMALL_STATE(994)] = 58221, + [SMALL_STATE(995)] = 58274, + [SMALL_STATE(996)] = 58311, + [SMALL_STATE(997)] = 58364, + [SMALL_STATE(998)] = 58399, + [SMALL_STATE(999)] = 58424, + [SMALL_STATE(1000)] = 58449, + [SMALL_STATE(1001)] = 58478, + [SMALL_STATE(1002)] = 58507, + [SMALL_STATE(1003)] = 58544, + [SMALL_STATE(1004)] = 58581, + [SMALL_STATE(1005)] = 58606, + [SMALL_STATE(1006)] = 58631, + [SMALL_STATE(1007)] = 58668, + [SMALL_STATE(1008)] = 58703, + [SMALL_STATE(1009)] = 58756, + [SMALL_STATE(1010)] = 58790, + [SMALL_STATE(1011)] = 58818, + [SMALL_STATE(1012)] = 58852, + [SMALL_STATE(1013)] = 58898, + [SMALL_STATE(1014)] = 58929, + [SMALL_STATE(1015)] = 58972, + [SMALL_STATE(1016)] = 59015, + [SMALL_STATE(1017)] = 59058, + [SMALL_STATE(1018)] = 59101, + [SMALL_STATE(1019)] = 59144, + [SMALL_STATE(1020)] = 59187, + [SMALL_STATE(1021)] = 59230, + [SMALL_STATE(1022)] = 59274, + [SMALL_STATE(1023)] = 59314, + [SMALL_STATE(1024)] = 59351, + [SMALL_STATE(1025)] = 59376, + [SMALL_STATE(1026)] = 59413, + [SMALL_STATE(1027)] = 59450, + [SMALL_STATE(1028)] = 59487, + [SMALL_STATE(1029)] = 59521, + [SMALL_STATE(1030)] = 59555, + [SMALL_STATE(1031)] = 59576, + [SMALL_STATE(1032)] = 59597, + [SMALL_STATE(1033)] = 59619, + [SMALL_STATE(1034)] = 59650, + [SMALL_STATE(1035)] = 59687, + [SMALL_STATE(1036)] = 59718, + [SMALL_STATE(1037)] = 59749, + [SMALL_STATE(1038)] = 59780, + [SMALL_STATE(1039)] = 59803, + [SMALL_STATE(1040)] = 59824, + [SMALL_STATE(1041)] = 59845, + [SMALL_STATE(1042)] = 59882, + [SMALL_STATE(1043)] = 59905, + [SMALL_STATE(1044)] = 59936, + [SMALL_STATE(1045)] = 59967, + [SMALL_STATE(1046)] = 59998, + [SMALL_STATE(1047)] = 60035, + [SMALL_STATE(1048)] = 60066, + [SMALL_STATE(1049)] = 60097, + [SMALL_STATE(1050)] = 60114, + [SMALL_STATE(1051)] = 60145, + [SMALL_STATE(1052)] = 60176, + [SMALL_STATE(1053)] = 60207, + [SMALL_STATE(1054)] = 60238, + [SMALL_STATE(1055)] = 60269, + [SMALL_STATE(1056)] = 60300, + [SMALL_STATE(1057)] = 60331, + [SMALL_STATE(1058)] = 60362, + [SMALL_STATE(1059)] = 60393, + [SMALL_STATE(1060)] = 60424, + [SMALL_STATE(1061)] = 60461, + [SMALL_STATE(1062)] = 60498, + [SMALL_STATE(1063)] = 60520, + [SMALL_STATE(1064)] = 60538, + [SMALL_STATE(1065)] = 60562, + [SMALL_STATE(1066)] = 60582, + [SMALL_STATE(1067)] = 60616, + [SMALL_STATE(1068)] = 60650, + [SMALL_STATE(1069)] = 60670, + [SMALL_STATE(1070)] = 60692, + [SMALL_STATE(1071)] = 60714, + [SMALL_STATE(1072)] = 60736, + [SMALL_STATE(1073)] = 60754, + [SMALL_STATE(1074)] = 60788, + [SMALL_STATE(1075)] = 60812, + [SMALL_STATE(1076)] = 60846, + [SMALL_STATE(1077)] = 60880, + [SMALL_STATE(1078)] = 60900, + [SMALL_STATE(1079)] = 60918, + [SMALL_STATE(1080)] = 60952, + [SMALL_STATE(1081)] = 60986, + [SMALL_STATE(1082)] = 61020, + [SMALL_STATE(1083)] = 61042, + [SMALL_STATE(1084)] = 61076, + [SMALL_STATE(1085)] = 61110, + [SMALL_STATE(1086)] = 61134, + [SMALL_STATE(1087)] = 61168, + [SMALL_STATE(1088)] = 61190, + [SMALL_STATE(1089)] = 61224, + [SMALL_STATE(1090)] = 61244, + [SMALL_STATE(1091)] = 61263, + [SMALL_STATE(1092)] = 61282, + [SMALL_STATE(1093)] = 61305, + [SMALL_STATE(1094)] = 61330, + [SMALL_STATE(1095)] = 61349, + [SMALL_STATE(1096)] = 61374, + [SMALL_STATE(1097)] = 61395, + [SMALL_STATE(1098)] = 61414, + [SMALL_STATE(1099)] = 61433, + [SMALL_STATE(1100)] = 61456, + [SMALL_STATE(1101)] = 61479, + [SMALL_STATE(1102)] = 61498, + [SMALL_STATE(1103)] = 61518, + [SMALL_STATE(1104)] = 61538, + [SMALL_STATE(1105)] = 61556, + [SMALL_STATE(1106)] = 61572, + [SMALL_STATE(1107)] = 61590, + [SMALL_STATE(1108)] = 61610, + [SMALL_STATE(1109)] = 61630, + [SMALL_STATE(1110)] = 61650, + [SMALL_STATE(1111)] = 61664, + [SMALL_STATE(1112)] = 61682, + [SMALL_STATE(1113)] = 61702, + [SMALL_STATE(1114)] = 61726, + [SMALL_STATE(1115)] = 61740, + [SMALL_STATE(1116)] = 61754, + [SMALL_STATE(1117)] = 61768, + [SMALL_STATE(1118)] = 61788, + [SMALL_STATE(1119)] = 61812, + [SMALL_STATE(1120)] = 61826, + [SMALL_STATE(1121)] = 61840, + [SMALL_STATE(1122)] = 61856, + [SMALL_STATE(1123)] = 61882, + [SMALL_STATE(1124)] = 61900, + [SMALL_STATE(1125)] = 61914, + [SMALL_STATE(1126)] = 61934, + [SMALL_STATE(1127)] = 61948, + [SMALL_STATE(1128)] = 61962, + [SMALL_STATE(1129)] = 61980, + [SMALL_STATE(1130)] = 61994, + [SMALL_STATE(1131)] = 62008, + [SMALL_STATE(1132)] = 62022, + [SMALL_STATE(1133)] = 62036, + [SMALL_STATE(1134)] = 62058, + [SMALL_STATE(1135)] = 62072, + [SMALL_STATE(1136)] = 62086, + [SMALL_STATE(1137)] = 62104, + [SMALL_STATE(1138)] = 62118, + [SMALL_STATE(1139)] = 62132, + [SMALL_STATE(1140)] = 62154, + [SMALL_STATE(1141)] = 62168, + [SMALL_STATE(1142)] = 62188, + [SMALL_STATE(1143)] = 62204, + [SMALL_STATE(1144)] = 62218, + [SMALL_STATE(1145)] = 62238, + [SMALL_STATE(1146)] = 62256, + [SMALL_STATE(1147)] = 62274, + [SMALL_STATE(1148)] = 62296, + [SMALL_STATE(1149)] = 62320, + [SMALL_STATE(1150)] = 62338, + [SMALL_STATE(1151)] = 62358, + [SMALL_STATE(1152)] = 62376, + [SMALL_STATE(1153)] = 62392, + [SMALL_STATE(1154)] = 62410, + [SMALL_STATE(1155)] = 62424, + [SMALL_STATE(1156)] = 62442, + [SMALL_STATE(1157)] = 62462, + [SMALL_STATE(1158)] = 62482, + [SMALL_STATE(1159)] = 62496, + [SMALL_STATE(1160)] = 62510, + [SMALL_STATE(1161)] = 62524, + [SMALL_STATE(1162)] = 62538, + [SMALL_STATE(1163)] = 62556, + [SMALL_STATE(1164)] = 62574, + [SMALL_STATE(1165)] = 62594, + [SMALL_STATE(1166)] = 62612, + [SMALL_STATE(1167)] = 62632, + [SMALL_STATE(1168)] = 62646, + [SMALL_STATE(1169)] = 62660, + [SMALL_STATE(1170)] = 62685, + [SMALL_STATE(1171)] = 62710, + [SMALL_STATE(1172)] = 62731, + [SMALL_STATE(1173)] = 62750, + [SMALL_STATE(1174)] = 62771, + [SMALL_STATE(1175)] = 62790, + [SMALL_STATE(1176)] = 62813, + [SMALL_STATE(1177)] = 62826, + [SMALL_STATE(1178)] = 62849, + [SMALL_STATE(1179)] = 62862, + [SMALL_STATE(1180)] = 62885, + [SMALL_STATE(1181)] = 62908, + [SMALL_STATE(1182)] = 62929, + [SMALL_STATE(1183)] = 62948, + [SMALL_STATE(1184)] = 62967, + [SMALL_STATE(1185)] = 62982, + [SMALL_STATE(1186)] = 63005, + [SMALL_STATE(1187)] = 63030, + [SMALL_STATE(1188)] = 63051, + [SMALL_STATE(1189)] = 63068, + [SMALL_STATE(1190)] = 63087, + [SMALL_STATE(1191)] = 63112, + [SMALL_STATE(1192)] = 63131, + [SMALL_STATE(1193)] = 63150, + [SMALL_STATE(1194)] = 63167, + [SMALL_STATE(1195)] = 63182, + [SMALL_STATE(1196)] = 63199, + [SMALL_STATE(1197)] = 63212, + [SMALL_STATE(1198)] = 63235, + [SMALL_STATE(1199)] = 63260, + [SMALL_STATE(1200)] = 63279, + [SMALL_STATE(1201)] = 63300, + [SMALL_STATE(1202)] = 63323, + [SMALL_STATE(1203)] = 63346, + [SMALL_STATE(1204)] = 63359, + [SMALL_STATE(1205)] = 63384, + [SMALL_STATE(1206)] = 63409, + [SMALL_STATE(1207)] = 63428, + [SMALL_STATE(1208)] = 63453, + [SMALL_STATE(1209)] = 63472, + [SMALL_STATE(1210)] = 63491, + [SMALL_STATE(1211)] = 63504, + [SMALL_STATE(1212)] = 63517, + [SMALL_STATE(1213)] = 63542, + [SMALL_STATE(1214)] = 63565, + [SMALL_STATE(1215)] = 63584, + [SMALL_STATE(1216)] = 63600, + [SMALL_STATE(1217)] = 63616, + [SMALL_STATE(1218)] = 63630, + [SMALL_STATE(1219)] = 63644, + [SMALL_STATE(1220)] = 63660, + [SMALL_STATE(1221)] = 63680, + [SMALL_STATE(1222)] = 63696, + [SMALL_STATE(1223)] = 63712, + [SMALL_STATE(1224)] = 63726, + [SMALL_STATE(1225)] = 63744, + [SMALL_STATE(1226)] = 63766, + [SMALL_STATE(1227)] = 63784, + [SMALL_STATE(1228)] = 63802, + [SMALL_STATE(1229)] = 63820, + [SMALL_STATE(1230)] = 63836, + [SMALL_STATE(1231)] = 63858, + [SMALL_STATE(1232)] = 63876, + [SMALL_STATE(1233)] = 63892, + [SMALL_STATE(1234)] = 63908, + [SMALL_STATE(1235)] = 63924, + [SMALL_STATE(1236)] = 63946, + [SMALL_STATE(1237)] = 63968, + [SMALL_STATE(1238)] = 63990, + [SMALL_STATE(1239)] = 64008, + [SMALL_STATE(1240)] = 64020, + [SMALL_STATE(1241)] = 64042, + [SMALL_STATE(1242)] = 64058, + [SMALL_STATE(1243)] = 64074, + [SMALL_STATE(1244)] = 64092, + [SMALL_STATE(1245)] = 64104, + [SMALL_STATE(1246)] = 64118, + [SMALL_STATE(1247)] = 64138, + [SMALL_STATE(1248)] = 64158, + [SMALL_STATE(1249)] = 64174, + [SMALL_STATE(1250)] = 64194, + [SMALL_STATE(1251)] = 64212, + [SMALL_STATE(1252)] = 64228, + [SMALL_STATE(1253)] = 64242, + [SMALL_STATE(1254)] = 64256, + [SMALL_STATE(1255)] = 64278, + [SMALL_STATE(1256)] = 64295, + [SMALL_STATE(1257)] = 64314, + [SMALL_STATE(1258)] = 64329, + [SMALL_STATE(1259)] = 64346, + [SMALL_STATE(1260)] = 64361, + [SMALL_STATE(1261)] = 64376, + [SMALL_STATE(1262)] = 64393, + [SMALL_STATE(1263)] = 64410, + [SMALL_STATE(1264)] = 64421, + [SMALL_STATE(1265)] = 64438, + [SMALL_STATE(1266)] = 64457, + [SMALL_STATE(1267)] = 64474, + [SMALL_STATE(1268)] = 64485, + [SMALL_STATE(1269)] = 64502, + [SMALL_STATE(1270)] = 64519, + [SMALL_STATE(1271)] = 64534, + [SMALL_STATE(1272)] = 64551, + [SMALL_STATE(1273)] = 64570, + [SMALL_STATE(1274)] = 64581, + [SMALL_STATE(1275)] = 64598, + [SMALL_STATE(1276)] = 64615, + [SMALL_STATE(1277)] = 64632, + [SMALL_STATE(1278)] = 64643, + [SMALL_STATE(1279)] = 64658, + [SMALL_STATE(1280)] = 64675, + [SMALL_STATE(1281)] = 64690, + [SMALL_STATE(1282)] = 64709, + [SMALL_STATE(1283)] = 64726, + [SMALL_STATE(1284)] = 64745, + [SMALL_STATE(1285)] = 64764, + [SMALL_STATE(1286)] = 64781, + [SMALL_STATE(1287)] = 64796, + [SMALL_STATE(1288)] = 64815, + [SMALL_STATE(1289)] = 64834, + [SMALL_STATE(1290)] = 64845, + [SMALL_STATE(1291)] = 64862, + [SMALL_STATE(1292)] = 64879, + [SMALL_STATE(1293)] = 64896, + [SMALL_STATE(1294)] = 64910, + [SMALL_STATE(1295)] = 64924, + [SMALL_STATE(1296)] = 64940, + [SMALL_STATE(1297)] = 64956, + [SMALL_STATE(1298)] = 64972, + [SMALL_STATE(1299)] = 64986, + [SMALL_STATE(1300)] = 65000, + [SMALL_STATE(1301)] = 65010, + [SMALL_STATE(1302)] = 65026, + [SMALL_STATE(1303)] = 65042, + [SMALL_STATE(1304)] = 65058, + [SMALL_STATE(1305)] = 65072, + [SMALL_STATE(1306)] = 65086, + [SMALL_STATE(1307)] = 65098, + [SMALL_STATE(1308)] = 65114, + [SMALL_STATE(1309)] = 65124, + [SMALL_STATE(1310)] = 65138, + [SMALL_STATE(1311)] = 65154, + [SMALL_STATE(1312)] = 65170, + [SMALL_STATE(1313)] = 65186, + [SMALL_STATE(1314)] = 65196, + [SMALL_STATE(1315)] = 65206, + [SMALL_STATE(1316)] = 65216, + [SMALL_STATE(1317)] = 65230, + [SMALL_STATE(1318)] = 65244, + [SMALL_STATE(1319)] = 65258, + [SMALL_STATE(1320)] = 65272, + [SMALL_STATE(1321)] = 65286, + [SMALL_STATE(1322)] = 65302, + [SMALL_STATE(1323)] = 65318, + [SMALL_STATE(1324)] = 65334, + [SMALL_STATE(1325)] = 65350, + [SMALL_STATE(1326)] = 65364, + [SMALL_STATE(1327)] = 65378, + [SMALL_STATE(1328)] = 65392, + [SMALL_STATE(1329)] = 65408, + [SMALL_STATE(1330)] = 65424, + [SMALL_STATE(1331)] = 65440, + [SMALL_STATE(1332)] = 65456, + [SMALL_STATE(1333)] = 65472, + [SMALL_STATE(1334)] = 65488, + [SMALL_STATE(1335)] = 65504, + [SMALL_STATE(1336)] = 65520, + [SMALL_STATE(1337)] = 65534, + [SMALL_STATE(1338)] = 65548, + [SMALL_STATE(1339)] = 65562, + [SMALL_STATE(1340)] = 65578, + [SMALL_STATE(1341)] = 65592, + [SMALL_STATE(1342)] = 65604, + [SMALL_STATE(1343)] = 65618, + [SMALL_STATE(1344)] = 65634, + [SMALL_STATE(1345)] = 65648, + [SMALL_STATE(1346)] = 65664, + [SMALL_STATE(1347)] = 65680, + [SMALL_STATE(1348)] = 65696, + [SMALL_STATE(1349)] = 65712, + [SMALL_STATE(1350)] = 65728, + [SMALL_STATE(1351)] = 65744, + [SMALL_STATE(1352)] = 65760, + [SMALL_STATE(1353)] = 65776, + [SMALL_STATE(1354)] = 65790, + [SMALL_STATE(1355)] = 65804, + [SMALL_STATE(1356)] = 65818, + [SMALL_STATE(1357)] = 65832, + [SMALL_STATE(1358)] = 65848, + [SMALL_STATE(1359)] = 65858, + [SMALL_STATE(1360)] = 65872, + [SMALL_STATE(1361)] = 65886, + [SMALL_STATE(1362)] = 65902, + [SMALL_STATE(1363)] = 65916, + [SMALL_STATE(1364)] = 65930, + [SMALL_STATE(1365)] = 65944, + [SMALL_STATE(1366)] = 65958, + [SMALL_STATE(1367)] = 65974, + [SMALL_STATE(1368)] = 65990, + [SMALL_STATE(1369)] = 66004, + [SMALL_STATE(1370)] = 66020, + [SMALL_STATE(1371)] = 66036, + [SMALL_STATE(1372)] = 66050, + [SMALL_STATE(1373)] = 66064, + [SMALL_STATE(1374)] = 66080, + [SMALL_STATE(1375)] = 66093, + [SMALL_STATE(1376)] = 66106, + [SMALL_STATE(1377)] = 66119, + [SMALL_STATE(1378)] = 66132, + [SMALL_STATE(1379)] = 66145, + [SMALL_STATE(1380)] = 66154, + [SMALL_STATE(1381)] = 66165, + [SMALL_STATE(1382)] = 66178, + [SMALL_STATE(1383)] = 66189, + [SMALL_STATE(1384)] = 66202, + [SMALL_STATE(1385)] = 66215, + [SMALL_STATE(1386)] = 66228, + [SMALL_STATE(1387)] = 66241, + [SMALL_STATE(1388)] = 66254, + [SMALL_STATE(1389)] = 66267, + [SMALL_STATE(1390)] = 66280, + [SMALL_STATE(1391)] = 66293, + [SMALL_STATE(1392)] = 66304, + [SMALL_STATE(1393)] = 66317, + [SMALL_STATE(1394)] = 66328, + [SMALL_STATE(1395)] = 66337, + [SMALL_STATE(1396)] = 66350, + [SMALL_STATE(1397)] = 66363, + [SMALL_STATE(1398)] = 66376, + [SMALL_STATE(1399)] = 66389, + [SMALL_STATE(1400)] = 66402, + [SMALL_STATE(1401)] = 66415, + [SMALL_STATE(1402)] = 66428, + [SMALL_STATE(1403)] = 66441, + [SMALL_STATE(1404)] = 66454, + [SMALL_STATE(1405)] = 66463, + [SMALL_STATE(1406)] = 66476, + [SMALL_STATE(1407)] = 66487, + [SMALL_STATE(1408)] = 66500, + [SMALL_STATE(1409)] = 66513, + [SMALL_STATE(1410)] = 66526, + [SMALL_STATE(1411)] = 66539, + [SMALL_STATE(1412)] = 66552, + [SMALL_STATE(1413)] = 66565, + [SMALL_STATE(1414)] = 66578, + [SMALL_STATE(1415)] = 66591, + [SMALL_STATE(1416)] = 66604, + [SMALL_STATE(1417)] = 66617, + [SMALL_STATE(1418)] = 66630, + [SMALL_STATE(1419)] = 66643, + [SMALL_STATE(1420)] = 66656, + [SMALL_STATE(1421)] = 66665, + [SMALL_STATE(1422)] = 66674, + [SMALL_STATE(1423)] = 66687, + [SMALL_STATE(1424)] = 66700, + [SMALL_STATE(1425)] = 66713, + [SMALL_STATE(1426)] = 66726, + [SMALL_STATE(1427)] = 66739, + [SMALL_STATE(1428)] = 66752, + [SMALL_STATE(1429)] = 66765, + [SMALL_STATE(1430)] = 66778, + [SMALL_STATE(1431)] = 66791, + [SMALL_STATE(1432)] = 66804, + [SMALL_STATE(1433)] = 66817, + [SMALL_STATE(1434)] = 66830, + [SMALL_STATE(1435)] = 66843, + [SMALL_STATE(1436)] = 66856, + [SMALL_STATE(1437)] = 66869, + [SMALL_STATE(1438)] = 66882, + [SMALL_STATE(1439)] = 66895, + [SMALL_STATE(1440)] = 66908, + [SMALL_STATE(1441)] = 66921, + [SMALL_STATE(1442)] = 66934, + [SMALL_STATE(1443)] = 66945, + [SMALL_STATE(1444)] = 66958, + [SMALL_STATE(1445)] = 66967, + [SMALL_STATE(1446)] = 66976, + [SMALL_STATE(1447)] = 66985, + [SMALL_STATE(1448)] = 66994, + [SMALL_STATE(1449)] = 67007, + [SMALL_STATE(1450)] = 67020, + [SMALL_STATE(1451)] = 67033, + [SMALL_STATE(1452)] = 67046, + [SMALL_STATE(1453)] = 67059, + [SMALL_STATE(1454)] = 67072, + [SMALL_STATE(1455)] = 67085, + [SMALL_STATE(1456)] = 67096, + [SMALL_STATE(1457)] = 67109, + [SMALL_STATE(1458)] = 67122, + [SMALL_STATE(1459)] = 67135, + [SMALL_STATE(1460)] = 67148, + [SMALL_STATE(1461)] = 67161, + [SMALL_STATE(1462)] = 67174, + [SMALL_STATE(1463)] = 67187, + [SMALL_STATE(1464)] = 67196, + [SMALL_STATE(1465)] = 67205, + [SMALL_STATE(1466)] = 67214, + [SMALL_STATE(1467)] = 67227, + [SMALL_STATE(1468)] = 67240, + [SMALL_STATE(1469)] = 67253, + [SMALL_STATE(1470)] = 67266, + [SMALL_STATE(1471)] = 67275, + [SMALL_STATE(1472)] = 67288, + [SMALL_STATE(1473)] = 67301, + [SMALL_STATE(1474)] = 67314, + [SMALL_STATE(1475)] = 67327, + [SMALL_STATE(1476)] = 67338, + [SMALL_STATE(1477)] = 67351, + [SMALL_STATE(1478)] = 67364, + [SMALL_STATE(1479)] = 67377, + [SMALL_STATE(1480)] = 67388, + [SMALL_STATE(1481)] = 67401, + [SMALL_STATE(1482)] = 67414, + [SMALL_STATE(1483)] = 67425, + [SMALL_STATE(1484)] = 67438, + [SMALL_STATE(1485)] = 67451, + [SMALL_STATE(1486)] = 67464, + [SMALL_STATE(1487)] = 67473, + [SMALL_STATE(1488)] = 67486, + [SMALL_STATE(1489)] = 67499, + [SMALL_STATE(1490)] = 67512, + [SMALL_STATE(1491)] = 67525, + [SMALL_STATE(1492)] = 67538, + [SMALL_STATE(1493)] = 67551, + [SMALL_STATE(1494)] = 67564, + [SMALL_STATE(1495)] = 67577, + [SMALL_STATE(1496)] = 67590, + [SMALL_STATE(1497)] = 67603, + [SMALL_STATE(1498)] = 67614, + [SMALL_STATE(1499)] = 67627, + [SMALL_STATE(1500)] = 67640, + [SMALL_STATE(1501)] = 67653, + [SMALL_STATE(1502)] = 67662, + [SMALL_STATE(1503)] = 67673, + [SMALL_STATE(1504)] = 67686, + [SMALL_STATE(1505)] = 67699, + [SMALL_STATE(1506)] = 67712, + [SMALL_STATE(1507)] = 67725, + [SMALL_STATE(1508)] = 67733, + [SMALL_STATE(1509)] = 67741, + [SMALL_STATE(1510)] = 67751, + [SMALL_STATE(1511)] = 67761, + [SMALL_STATE(1512)] = 67771, + [SMALL_STATE(1513)] = 67781, + [SMALL_STATE(1514)] = 67791, + [SMALL_STATE(1515)] = 67799, + [SMALL_STATE(1516)] = 67807, + [SMALL_STATE(1517)] = 67815, + [SMALL_STATE(1518)] = 67823, + [SMALL_STATE(1519)] = 67831, + [SMALL_STATE(1520)] = 67839, + [SMALL_STATE(1521)] = 67847, + [SMALL_STATE(1522)] = 67855, + [SMALL_STATE(1523)] = 67863, + [SMALL_STATE(1524)] = 67871, + [SMALL_STATE(1525)] = 67879, + [SMALL_STATE(1526)] = 67887, + [SMALL_STATE(1527)] = 67895, + [SMALL_STATE(1528)] = 67903, + [SMALL_STATE(1529)] = 67911, + [SMALL_STATE(1530)] = 67919, + [SMALL_STATE(1531)] = 67927, + [SMALL_STATE(1532)] = 67935, + [SMALL_STATE(1533)] = 67943, + [SMALL_STATE(1534)] = 67951, + [SMALL_STATE(1535)] = 67959, + [SMALL_STATE(1536)] = 67967, + [SMALL_STATE(1537)] = 67975, + [SMALL_STATE(1538)] = 67983, + [SMALL_STATE(1539)] = 67991, + [SMALL_STATE(1540)] = 68001, + [SMALL_STATE(1541)] = 68009, + [SMALL_STATE(1542)] = 68019, + [SMALL_STATE(1543)] = 68027, + [SMALL_STATE(1544)] = 68037, + [SMALL_STATE(1545)] = 68047, + [SMALL_STATE(1546)] = 68055, + [SMALL_STATE(1547)] = 68065, + [SMALL_STATE(1548)] = 68073, + [SMALL_STATE(1549)] = 68083, + [SMALL_STATE(1550)] = 68093, + [SMALL_STATE(1551)] = 68103, + [SMALL_STATE(1552)] = 68111, + [SMALL_STATE(1553)] = 68121, + [SMALL_STATE(1554)] = 68131, + [SMALL_STATE(1555)] = 68141, + [SMALL_STATE(1556)] = 68149, + [SMALL_STATE(1557)] = 68159, + [SMALL_STATE(1558)] = 68169, + [SMALL_STATE(1559)] = 68177, + [SMALL_STATE(1560)] = 68187, + [SMALL_STATE(1561)] = 68197, + [SMALL_STATE(1562)] = 68207, + [SMALL_STATE(1563)] = 68217, + [SMALL_STATE(1564)] = 68225, + [SMALL_STATE(1565)] = 68235, + [SMALL_STATE(1566)] = 68245, + [SMALL_STATE(1567)] = 68255, + [SMALL_STATE(1568)] = 68265, + [SMALL_STATE(1569)] = 68273, + [SMALL_STATE(1570)] = 68283, + [SMALL_STATE(1571)] = 68291, + [SMALL_STATE(1572)] = 68299, + [SMALL_STATE(1573)] = 68307, + [SMALL_STATE(1574)] = 68315, + [SMALL_STATE(1575)] = 68325, + [SMALL_STATE(1576)] = 68333, + [SMALL_STATE(1577)] = 68343, + [SMALL_STATE(1578)] = 68351, + [SMALL_STATE(1579)] = 68361, + [SMALL_STATE(1580)] = 68369, + [SMALL_STATE(1581)] = 68377, + [SMALL_STATE(1582)] = 68385, + [SMALL_STATE(1583)] = 68395, + [SMALL_STATE(1584)] = 68402, + [SMALL_STATE(1585)] = 68409, + [SMALL_STATE(1586)] = 68416, + [SMALL_STATE(1587)] = 68423, + [SMALL_STATE(1588)] = 68430, + [SMALL_STATE(1589)] = 68437, + [SMALL_STATE(1590)] = 68444, + [SMALL_STATE(1591)] = 68451, + [SMALL_STATE(1592)] = 68458, + [SMALL_STATE(1593)] = 68465, + [SMALL_STATE(1594)] = 68472, + [SMALL_STATE(1595)] = 68479, + [SMALL_STATE(1596)] = 68486, + [SMALL_STATE(1597)] = 68493, + [SMALL_STATE(1598)] = 68500, + [SMALL_STATE(1599)] = 68507, + [SMALL_STATE(1600)] = 68514, + [SMALL_STATE(1601)] = 68521, + [SMALL_STATE(1602)] = 68528, + [SMALL_STATE(1603)] = 68535, + [SMALL_STATE(1604)] = 68542, + [SMALL_STATE(1605)] = 68549, + [SMALL_STATE(1606)] = 68556, + [SMALL_STATE(1607)] = 68563, + [SMALL_STATE(1608)] = 68570, + [SMALL_STATE(1609)] = 68577, + [SMALL_STATE(1610)] = 68584, + [SMALL_STATE(1611)] = 68591, + [SMALL_STATE(1612)] = 68598, + [SMALL_STATE(1613)] = 68605, + [SMALL_STATE(1614)] = 68612, + [SMALL_STATE(1615)] = 68619, + [SMALL_STATE(1616)] = 68626, + [SMALL_STATE(1617)] = 68633, + [SMALL_STATE(1618)] = 68640, + [SMALL_STATE(1619)] = 68647, + [SMALL_STATE(1620)] = 68654, + [SMALL_STATE(1621)] = 68661, + [SMALL_STATE(1622)] = 68668, + [SMALL_STATE(1623)] = 68675, + [SMALL_STATE(1624)] = 68682, + [SMALL_STATE(1625)] = 68689, + [SMALL_STATE(1626)] = 68696, + [SMALL_STATE(1627)] = 68703, + [SMALL_STATE(1628)] = 68710, + [SMALL_STATE(1629)] = 68717, + [SMALL_STATE(1630)] = 68724, + [SMALL_STATE(1631)] = 68731, + [SMALL_STATE(1632)] = 68738, + [SMALL_STATE(1633)] = 68745, + [SMALL_STATE(1634)] = 68752, + [SMALL_STATE(1635)] = 68759, + [SMALL_STATE(1636)] = 68766, + [SMALL_STATE(1637)] = 68773, + [SMALL_STATE(1638)] = 68780, + [SMALL_STATE(1639)] = 68787, + [SMALL_STATE(1640)] = 68794, + [SMALL_STATE(1641)] = 68801, + [SMALL_STATE(1642)] = 68808, + [SMALL_STATE(1643)] = 68815, + [SMALL_STATE(1644)] = 68822, + [SMALL_STATE(1645)] = 68829, + [SMALL_STATE(1646)] = 68836, + [SMALL_STATE(1647)] = 68843, + [SMALL_STATE(1648)] = 68850, + [SMALL_STATE(1649)] = 68857, + [SMALL_STATE(1650)] = 68864, + [SMALL_STATE(1651)] = 68871, + [SMALL_STATE(1652)] = 68878, + [SMALL_STATE(1653)] = 68885, + [SMALL_STATE(1654)] = 68892, + [SMALL_STATE(1655)] = 68899, + [SMALL_STATE(1656)] = 68906, + [SMALL_STATE(1657)] = 68913, + [SMALL_STATE(1658)] = 68920, + [SMALL_STATE(1659)] = 68927, + [SMALL_STATE(1660)] = 68934, + [SMALL_STATE(1661)] = 68941, + [SMALL_STATE(1662)] = 68948, + [SMALL_STATE(1663)] = 68955, + [SMALL_STATE(1664)] = 68962, + [SMALL_STATE(1665)] = 68969, + [SMALL_STATE(1666)] = 68976, + [SMALL_STATE(1667)] = 68983, + [SMALL_STATE(1668)] = 68990, + [SMALL_STATE(1669)] = 68997, + [SMALL_STATE(1670)] = 69004, + [SMALL_STATE(1671)] = 69011, + [SMALL_STATE(1672)] = 69018, + [SMALL_STATE(1673)] = 69025, + [SMALL_STATE(1674)] = 69032, + [SMALL_STATE(1675)] = 69039, + [SMALL_STATE(1676)] = 69046, + [SMALL_STATE(1677)] = 69053, + [SMALL_STATE(1678)] = 69060, + [SMALL_STATE(1679)] = 69067, + [SMALL_STATE(1680)] = 69074, + [SMALL_STATE(1681)] = 69081, + [SMALL_STATE(1682)] = 69088, + [SMALL_STATE(1683)] = 69095, + [SMALL_STATE(1684)] = 69102, + [SMALL_STATE(1685)] = 69109, + [SMALL_STATE(1686)] = 69116, + [SMALL_STATE(1687)] = 69123, + [SMALL_STATE(1688)] = 69130, + [SMALL_STATE(1689)] = 69137, + [SMALL_STATE(1690)] = 69144, + [SMALL_STATE(1691)] = 69151, + [SMALL_STATE(1692)] = 69158, + [SMALL_STATE(1693)] = 69165, + [SMALL_STATE(1694)] = 69172, + [SMALL_STATE(1695)] = 69179, + [SMALL_STATE(1696)] = 69186, + [SMALL_STATE(1697)] = 69193, + [SMALL_STATE(1698)] = 69200, + [SMALL_STATE(1699)] = 69207, + [SMALL_STATE(1700)] = 69214, + [SMALL_STATE(1701)] = 69221, + [SMALL_STATE(1702)] = 69228, + [SMALL_STATE(1703)] = 69235, + [SMALL_STATE(1704)] = 69242, + [SMALL_STATE(1705)] = 69249, + [SMALL_STATE(1706)] = 69256, + [SMALL_STATE(1707)] = 69263, + [SMALL_STATE(1708)] = 69270, + [SMALL_STATE(1709)] = 69277, + [SMALL_STATE(1710)] = 69284, + [SMALL_STATE(1711)] = 69291, + [SMALL_STATE(1712)] = 69298, + [SMALL_STATE(1713)] = 69305, + [SMALL_STATE(1714)] = 69312, + [SMALL_STATE(1715)] = 69319, + [SMALL_STATE(1716)] = 69326, + [SMALL_STATE(1717)] = 69333, + [SMALL_STATE(1718)] = 69340, + [SMALL_STATE(1719)] = 69347, + [SMALL_STATE(1720)] = 69354, + [SMALL_STATE(1721)] = 69361, + [SMALL_STATE(1722)] = 69368, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [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(440), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(440), - [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1113), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1013), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(153), - [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(389), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(111), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(388), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(186), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(225), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(177), - [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1314), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1315), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1316), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(373), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(298), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(448), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(325), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1479), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(269), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(67), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(589), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(155), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(161), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(346), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1501), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1493), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1492), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(381), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(397), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1482), - [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(351), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(317), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(869), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(178), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(760), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(760), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(134), - [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(926), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(907), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(329), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(299), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(456), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(333), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1496), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(281), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(66), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1494), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1491), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [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(191), - [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(337), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [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(615), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(189), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1321), + [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1201), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(384), + [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(406), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(217), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(407), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(288), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(676), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1619), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(367), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1629), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(343), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1016), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(908), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(908), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(493), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(424), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(194), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(370), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(675), + [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(197), [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(346), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(338), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [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(649), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(378), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(391), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [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(656), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 8), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 8), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 8), [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, .production_id = 16), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, .production_id = 7), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, .production_id = 50), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 24), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 141), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, .production_id = 16), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 123), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 122), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 98), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, .production_id = 7), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 3, .production_id = 16), - [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 33), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 7), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 56), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 70), - [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 70), - [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 40), - [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 40), - [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 69), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 81), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 10), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 68), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 29), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 28), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 69), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 95), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(267), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 76), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 77), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1495), - [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(277), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 54), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2), SHIFT_REPEAT(1429), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 102), - [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 102), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), - [1003] = {.entry = {.count = 1, .reusable = true}}, 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(365), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 100), SHIFT_REPEAT(318), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1), - [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, .production_id = 163), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, .production_id = 164), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, .production_id = 164), - [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 130), - [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 130), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, .production_id = 148), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, .production_id = 148), - [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, .production_id = 147), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), - [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, .production_id = 157), - [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, .production_id = 158), - [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, .production_id = 158), - [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), - [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, .production_id = 165), - [1059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, .production_id = 81), - [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2), - [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(728), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, .production_id = 56), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2), SHIFT_REPEAT(733), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 81), - [1083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 9), - [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 74), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 125), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 125), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 77), - [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 55), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 129), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 129), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, .production_id = 50), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 105), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 105), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, .production_id = 56), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 80), - [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 54), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 143), - [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 143), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 24), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), - [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), - [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, .production_id = 159), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, .production_id = 159), - [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 151), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 151), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, .production_id = 150), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, .production_id = 150), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 81), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 56), - [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_class_definition, 5, .production_id = 90), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 90), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 145), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 145), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 144), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 144), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, .production_id = 56), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 142), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 142), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, .production_id = 139), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, .production_id = 139), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 138), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 138), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, .production_id = 64), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 137), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 137), - [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, .production_id = 81), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, .production_id = 81), - [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 128), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 60), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 162), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 162), - [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 127), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 127), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 126), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 126), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 124), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 124), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 118), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 118), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 117), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 117), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, .production_id = 116), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, .production_id = 116), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 115), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 115), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 114), - [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 114), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 161), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 161), - [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, .production_id = 56), - [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 156), - [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 156), - [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 75), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 155), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 155), - [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_function_definition, 8, .production_id = 152), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 152), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 78), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 57), - [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 153), - [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 153), - [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 104), - [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 104), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 79), - [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_if_statement, 6, .production_id = 101), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 101), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 99), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 99), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 19), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 82), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 59), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 146), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 146), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 91), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 91), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 154), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 154), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, .production_id = 89), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 87), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 87), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [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(916), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_template_string, 2), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_template_string, 2), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(913), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 20), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 20), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, .production_id = 20), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, .production_id = 20), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, .production_id = 2), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, .production_id = 2), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, .production_id = 2), - [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, .production_id = 2), - [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), - [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), - [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_list_comprehension, 4, .production_id = 51), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 51), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 31), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, .production_id = 61), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 51), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, .production_id = 51), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 51), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 93), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 93), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 67), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 17), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 17), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 31), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, .production_id = 61), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 93), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 93), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 67), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 67), - [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 31), - [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_set, 3, .production_id = 25), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, .production_id = 25), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, .production_id = 31), - [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_list, 3, .production_id = 25), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, .production_id = 25), - [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(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 41), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [1607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 71), - [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(sym_await, 2), - [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 13), - [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(915), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(906), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2), SHIFT_REPEAT(907), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(926), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [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(331), - [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(965), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [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(596), - [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(1399), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(596), - [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(578), - [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(583), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1417), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(583), - [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(576), - [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(482), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 25), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, .production_id = 31), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(607), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1483), - [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(607), - [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(577), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 25), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [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(598), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(1424), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(598), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 42), SHIFT_REPEAT(575), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, .production_id = 16), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [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(1418), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 27), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, .production_id = 7), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, .production_id = 32), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 35), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 39), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), SHIFT(176), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, .production_id = 66), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, .production_id = 14), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, .production_id = 83), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(172), - [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1037), - [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1037), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 21), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, .production_id = 107), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 31), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), - [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(375), - [2040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1498), - [2043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(449), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2), SHIFT_REPEAT(842), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, .production_id = 136), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, .production_id = 131), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, .production_id = 136), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, .production_id = 136), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(235), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, .production_id = 149), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, .production_id = 136), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, .production_id = 136), - [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 98), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, .production_id = 136), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, .production_id = 136), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), - [2118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(270), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 141), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, .production_id = 16), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 122), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 123), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, .production_id = 132), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 31), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = -1, .production_id = 12), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, .production_id = 11), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 62), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 15), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 10), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 32), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 66), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1035), - [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1035), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2), SHIFT_REPEAT(1486), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_expression, 1), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, .production_id = 109), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 43), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), - [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(351), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 3), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 43), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, .production_id = 68), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), - [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 4), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 43), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), - [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2), SHIFT_REPEAT(807), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 35), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 119), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, .production_id = 135), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, .production_id = 6), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, .production_id = 31), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 43), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 10), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 95), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(173), - [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1072), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, .production_id = 110), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, .production_id = 16), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 6), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, .production_id = 30), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 120), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, .production_id = 11), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, .production_id = 121), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, .production_id = 140), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, .production_id = 53), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 27), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, .production_id = 63), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, .production_id = 88), - [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(230), - [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, .production_id = 22), - [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, .production_id = 36), SHIFT_REPEAT(224), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, .production_id = 94), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 31), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), - [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, .production_id = 6), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 35), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), - [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(356), - [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), SHIFT_REPEAT(339), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 52), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2), - [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2), SHIFT_REPEAT(1114), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), - [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(288), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, .production_id = 16), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 65), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 49), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 28), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 29), - [2512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1244), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 23), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, .production_id = 22), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), SHIFT_REPEAT(1411), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(340), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, .production_id = 36), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, .production_id = 133), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 15), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, .production_id = 23), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, .production_id = 23), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 84), - [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, .production_id = 7), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_list, 2, .production_id = 16), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), SHIFT_REPEAT(253), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 36), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 86), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), - [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(212), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(133), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), SHIFT_REPEAT(226), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 36), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), SHIFT_REPEAT(870), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [2714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1190), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 37), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1004), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 113), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [2790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 73), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [2796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 15), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, .production_id = 16), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), - [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(878), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(877), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, .production_id = 45), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 112), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), - [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2), SHIFT_REPEAT(1351), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, .dynamic_precedence = -1, .production_id = 58), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), - [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2), SHIFT_REPEAT(839), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, .production_id = 97), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), - [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, .production_id = 108), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, .production_id = 108), - [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, .production_id = 111), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, .production_id = 160), - [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 86), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 48), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, .production_id = 47), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, .production_id = 46), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 5), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 39), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 38), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, .production_id = 85), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 92), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 67), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, .production_id = 11), - [3010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, .production_id = 31), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, .production_id = 31), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, .production_id = 96), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, .production_id = 62), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3194] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, .production_id = 23), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 7), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 7), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 16), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 16), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 7), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 16), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 24), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 50), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 141), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 141), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 7), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 98), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 98), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 16), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 122), + [863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 122), + [865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 123), + [867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 123), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 3, 0, 16), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, 0, 7), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 33), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 81), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 81), + [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 69), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 56), + [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 56), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 10), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 28), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 29), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 40), + [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 40), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 68), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 69), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 95), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 70), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 70), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 54), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 54), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 102), + [1035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 102), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 76), + [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 76), + [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 77), + [1053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 77), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(295), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1611), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(311), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1704), + [1081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 100), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 100), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 100), SHIFT_REPEAT(380), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 100), SHIFT_REPEAT(429), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 158), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 158), + [1113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 56), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 56), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 81), + [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 81), + [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 130), + [1123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 130), + [1125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 147), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 147), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 148), + [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 148), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 163), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 163), + [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 157), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 157), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 164), + [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 164), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 8, 0, 165), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 8, 0, 165), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(856), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cases, 1, 0, 0), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cases, 1, 0, 0), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cases_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 50), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 74), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 54), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 54), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 143), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 143), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 24), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 56), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 56), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 129), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 129), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 81), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 81), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 77), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 77), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 9), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 80), + [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 80), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 125), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 125), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 105), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 105), + [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 55), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 55), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 81), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 81), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 56), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 56), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 4, 0, 134), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 4, 0, 134), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 150), + [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 150), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 5, 0, 151), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 5, 0, 151), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_block, 6, 0, 159), + [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_block, 6, 0, 159), + [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 75), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 75), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 106), + [1295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 106), + [1297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 56), + [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 56), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 56), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 56), + [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 114), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 114), + [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 115), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 115), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 19), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 19), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 116), + [1319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 116), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 117), + [1323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 117), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 118), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 118), + [1329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 124), + [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 124), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 126), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 126), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 127), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 127), + [1341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 128), + [1343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 128), + [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 81), + [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 81), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 81), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 81), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 137), + [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 137), + [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 138), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 138), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 139), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 139), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 142), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 142), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 144), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 144), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 145), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 145), + [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 146), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 146), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 82), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 82), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 87), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 87), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 152), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 152), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 153), + [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 153), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 154), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 154), + [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 155), + [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 155), + [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 156), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 156), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 89), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 89), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 161), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 161), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 162), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 162), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 90), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 90), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 57), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 57), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 59), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 59), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 60), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 60), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 64), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 64), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 78), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 78), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 79), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 79), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 91), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 91), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 99), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 99), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 101), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 101), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 103), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 103), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 104), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 104), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_template_string, 2, 0, 0), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_template_string, 2, 0, 0), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), + [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 2), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 2), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 2), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 2), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 20), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 20), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 20), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 20), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 31), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 31), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 61), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 61), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 67), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 67), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 93), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 93), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 25), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 25), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 25), + [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 25), + [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 31), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 31), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 25), + [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 25), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 26), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 61), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 61), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 61), + [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 61), + [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 31), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 31), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 67), + [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 67), + [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 51), + [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 51), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 51), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 51), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 31), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 31), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 61), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 61), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 51), + [1677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 51), + [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 51), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 93), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 93), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 17), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 17), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 39), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 39), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 41), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), + [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 71), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, 0, 72), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 13), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 13), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1056), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1059), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 2, 0, 0), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_sequence_match_pattern, 3, 0, 0), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), + [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(665), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1700), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(665), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(625), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(630), + [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1634), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(630), + [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(615), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 18), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 18), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), + [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 36), SHIFT_REPEAT(612), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(648), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1720), + [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(648), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(623), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 25), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 34), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(661), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1671), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(661), + [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(618), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 25), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 31), + [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(683), + [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1674), + [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(683), + [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(626), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 16), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(639), + [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(1612), + [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(639), + [2007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 42), SHIFT_REPEAT(622), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 10), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 10), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 7), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 1, 0, 0), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_capture_pattern, 1, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 0), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), SHIFT(175), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_class_name, 2, 0, 0), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value_pattern, 2, 0, 0), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(181), + [2133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(1147), + [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), SHIFT_REPEAT(1147), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 21), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 35), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 35), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 39), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 32), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 3, 0, 32), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 39), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 66), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 1, 0, 83), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda, 4, 0, 66), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 27), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 2, 0, 107), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 27), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 3, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(1595), + [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), + [2248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_or_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(987), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_or_pattern, 4, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 3, 0, 136), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 98), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 5, 0, 0), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 5, 0, 0), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 31), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 5, 0, 136), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 4, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 4, 0, 149), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 14), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 6, 0, 0), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 6, 0, 136), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 122), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 7, 0, 0), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 7, 0, 136), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 8, 0, 136), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1133), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 9, 0, 136), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 123), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 4, 0, 0), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_literal_pattern, 3, 0, 132), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1, 0, 0), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_class_pattern, 4, 0, 136), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 141), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1, 0, 0), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 2, 0, 0), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 3, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_group_pattern, 3, 0, 131), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_mapping_pattern, 2, 0, 0), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_sequence_pattern, 3, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 31), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 10), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 66), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 11), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 15), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, -1, 12), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 32), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 62), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 16), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 43), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 43), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 43), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 43), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 1, 0, 6), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(251), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(263), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 43), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 43), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 10), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 35), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 119), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_value_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1698), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_bound, 2, 0, 109), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_open_sequence_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(979), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, 0, 31), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_as_pattern, 3, 0, 135), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 4), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__index_expression, 1, 0, 0), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 95), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 68), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 3), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 43), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 43), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 6), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 16), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 31), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 27), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_star_pattern, 2, 0, 11), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param_default, 2, 0, 110), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 120), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 121), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 30), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 22), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 35), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 94), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 53), + [2637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(250), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1284), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 5, 0, 88), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), + [2660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 36), SHIFT_REPEAT(242), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 6), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 140), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 0, 63), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 16), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2, 0, 133), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 23), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1499), + [2720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 49), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [2736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), SHIFT_REPEAT(339), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 52), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(432), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 84), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1638), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_list, 2, 0, 16), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 28), + [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 65), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 15), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 22), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 7), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 29), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(1362), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, 0, 36), SHIFT_REPEAT(430), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, 0, 36), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 2, 0, 23), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 2, 0, 23), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 113), SHIFT_REPEAT(1182), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 113), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, 0, 36), SHIFT_REPEAT(245), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, 0, 36), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 86), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 44), SHIFT_REPEAT(1460), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_maybe_star_pattern, 1, 0, 0), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_patterns, 1, 0, 0), + [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 36), SHIFT_REPEAT(233), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 15), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), SHIFT_REPEAT(282), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 36), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 37), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 45), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), + [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat2, 2, 0, 0), SHIFT_REPEAT(1560), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1028), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 3, -1, 58), + [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 112), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [3064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), + [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_class_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(984), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_mapping_pattern_repeat1, 2, 0, 0), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression_list, 2, 0, 16), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 73), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 73), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1029), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 5), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_index_expression_list_repeat1, 2, 0, 31), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 97), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paramspec_parameter, 3, 0, 108), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 92), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 3, 0, 111), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 86), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_positional_pattern, 1, 0, 0), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 46), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevar_parameter, 2, 0, 85), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 38), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 47), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 48), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 39), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_key_value_pattern, 3, 0, 62), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typevartuple_parameter, 3, 0, 108), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 31), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 96), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_keyword_pattern, 3, 0, 160), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 67), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_double_star_pattern, 2, 0, 11), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 23), + [3403] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__newline = 0, + ts_external_token__indent = 1, + ts_external_token__dedent = 2, + 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] = { + [ts_external_token__newline] = sym__newline, + [ts_external_token__indent] = sym__indent, + [ts_external_token__dedent] = sym__dedent, + [ts_external_token__string_start] = sym__string_start, + [ts_external_token__string_content] = sym__string_content, + [ts_external_token__string_end] = sym__string_end, + [ts_external_token__template_string_start] = sym__template_string_start, +}; + +static const bool ts_external_scanner_states[12][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token__dedent] = true, + [ts_external_token__string_start] = true, + [ts_external_token__string_content] = true, + [ts_external_token__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__string_start] = true, + }, + [9] = { + [ts_external_token__template_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, + }, }; #ifdef __cplusplus @@ -74267,13 +84136,17 @@ bool tree_sitter_python_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_python_external_scanner_serialize(void *, char *); void tree_sitter_python_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_python(void) { +TS_PUBLIC const TSLanguage *tree_sitter_python(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -74295,7 +84168,7 @@ extern const TSLanguage *tree_sitter_python(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, @@ -74308,6 +84181,7 @@ 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/array.h b/python/extractor/tsg-python/tsp/src/tree_sitter/array.h index a17a574f04e0..e99918e5d85d 100644 --- a/python/extractor/tsg-python/tsp/src/tree_sitter/array.h +++ b/python/extractor/tsg-python/tsp/src/tree_sitter/array.h @@ -52,67 +52,91 @@ extern "C" { /// Reserve `new_capacity` elements of space in the array. If `new_capacity` is /// less than the array's current capacity, this function has no effect. -#define array_reserve(self, new_capacity) \ - _array__reserve((Array *)(self), array_elem_size(self), new_capacity) +#define array_reserve(self, new_capacity) \ + ((self)->contents = _array__reserve( \ + (void *)(self)->contents, &(self)->capacity, \ + array_elem_size(self), new_capacity) \ + ) /// Free any memory allocated for this array. Note that this does not free any /// memory allocated for the array's contents. -#define array_delete(self) _array__delete((Array *)(self)) +#define array_delete(self) _array__delete((self), (void *)(self)->contents, sizeof(*self)) /// Push a new `element` onto the end of the array. -#define array_push(self, element) \ - (_array__grow((Array *)(self), 1, array_elem_size(self)), \ - (self)->contents[(self)->size++] = (element)) +#define array_push(self, element) \ + do { \ + (self)->contents = _array__grow( \ + (void *)(self)->contents, (self)->size, &(self)->capacity, \ + 1, array_elem_size(self) \ + ); \ + (self)->contents[(self)->size++] = (element); \ + } while(0) /// Increase the array's size by `count` elements. /// New elements are zero-initialized. -#define array_grow_by(self, count) \ - do { \ - if ((count) == 0) break; \ - _array__grow((Array *)(self), count, array_elem_size(self)); \ +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + (self)->contents = _array__grow( \ + (self)->contents, (self)->size, &(self)->capacity, \ + count, array_elem_size(self) \ + ); \ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ - (self)->size += (count); \ + (self)->size += (count); \ } while (0) /// Append all elements from one array to the end of another. -#define array_push_all(self, other) \ +#define array_push_all(self, other) \ array_extend((self), (other)->size, (other)->contents) /// Append `count` elements to the end of the array, reading their values from the /// `contents` pointer. -#define array_extend(self, count, contents) \ - _array__splice( \ - (Array *)(self), array_elem_size(self), (self)->size, \ - 0, count, contents \ +#define array_extend(self, count, other_contents) \ + (self)->contents = _array__splice( \ + (void*)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), (self)->size, 0, count, other_contents \ ) /// Remove `old_count` elements from the array starting at the given `index`. At /// the same index, insert `new_count` new elements, reading their values from the /// `new_contents` pointer. -#define array_splice(self, _index, old_count, new_count, new_contents) \ - _array__splice( \ - (Array *)(self), array_elem_size(self), _index, \ - old_count, new_count, new_contents \ +#define array_splice(self, _index, old_count, new_count, new_contents) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, old_count, new_count, new_contents \ ) /// Insert one `element` into the array at the given `index`. -#define array_insert(self, _index, element) \ - _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) +#define array_insert(self, _index, element) \ + (self)->contents = _array__splice( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + array_elem_size(self), _index, 0, 1, &(element) \ + ) /// Remove one element from the array at the given `index`. #define array_erase(self, _index) \ - _array__erase((Array *)(self), array_elem_size(self), _index) + _array__erase((void *)(self)->contents, &(self)->size, array_elem_size(self), _index) /// Pop the last element off the array, returning the element by value. #define array_pop(self) ((self)->contents[--(self)->size]) /// Assign the contents of one array to another, reallocating if necessary. -#define array_assign(self, other) \ - _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) +#define array_assign(self, other) \ + (self)->contents = _array__assign( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + (const void *)(other)->contents, (other)->size, array_elem_size(self) \ + ) /// Swap one array with another -#define array_swap(self, other) \ - _array__swap((Array *)(self), (Array *)(other)) +#define array_swap(self, other) \ + do { \ + struct Swap swapped_contents = _array__swap( \ + (void *)(self)->contents, &(self)->size, &(self)->capacity, \ + (void *)(other)->contents, &(other)->size, &(other)->capacity \ + ); \ + (self)->contents = swapped_contents.self_contents; \ + (other)->contents = swapped_contents.other_contents; \ + } while (0) /// Get the size of the array contents #define array_elem_size(self) (sizeof *(self)->contents) @@ -157,82 +181,112 @@ extern "C" { // Private -typedef Array(void) Array; +// Pointers to individual `Array` fields (rather than the entire `Array` itself) +// are passed to the various `_array__*` functions below to address strict aliasing +// violations that arises when the _entire_ `Array` struct is passed as `Array(void)*`. +// +// The `Array` type itself was not altered as a solution in order to avoid breakage +// with existing consumers (in particular, parsers with external scanners). /// This is not what you're looking for, see `array_delete`. -static inline void _array__delete(Array *self) { - if (self->contents) { - ts_free(self->contents); - self->contents = NULL; - self->size = 0; - self->capacity = 0; - } +static inline void _array__delete(void *self, void *contents, size_t self_size) { + if (contents) ts_free(contents); + if (self) memset(self, 0, self_size); } /// This is not what you're looking for, see `array_erase`. -static inline void _array__erase(Array *self, size_t element_size, - uint32_t index) { - assert(index < self->size); - char *contents = (char *)self->contents; +static inline void _array__erase(void* self_contents, uint32_t *size, + size_t element_size, uint32_t index) { + assert(index < *size); + char *contents = (char *)self_contents; memmove(contents + index * element_size, contents + (index + 1) * element_size, - (self->size - index - 1) * element_size); - self->size--; + (*size - index - 1) * element_size); + (*size)--; } /// This is not what you're looking for, see `array_reserve`. -static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { - if (new_capacity > self->capacity) { - if (self->contents) { - self->contents = ts_realloc(self->contents, new_capacity * element_size); +static inline void *_array__reserve(void *contents, uint32_t *capacity, + size_t element_size, uint32_t new_capacity) { + void *new_contents = contents; + if (new_capacity > *capacity) { + if (contents) { + new_contents = ts_realloc(contents, new_capacity * element_size); } else { - self->contents = ts_malloc(new_capacity * element_size); + new_contents = ts_malloc(new_capacity * element_size); } - self->capacity = new_capacity; + *capacity = new_capacity; } + return new_contents; } /// This is not what you're looking for, see `array_assign`. -static inline void _array__assign(Array *self, const Array *other, size_t element_size) { - _array__reserve(self, element_size, other->size); - self->size = other->size; - memcpy(self->contents, other->contents, self->size * element_size); +static inline void *_array__assign(void* self_contents, uint32_t *self_size, uint32_t *self_capacity, + const void *other_contents, uint32_t other_size, size_t element_size) { + void *new_contents = _array__reserve(self_contents, self_capacity, element_size, other_size); + *self_size = other_size; + memcpy(new_contents, other_contents, *self_size * element_size); + return new_contents; } +struct Swap { + void *self_contents; + void *other_contents; +}; + /// This is not what you're looking for, see `array_swap`. -static inline void _array__swap(Array *self, Array *other) { - Array swap = *other; - *other = *self; - *self = swap; +// static inline void _array__swap(Array *self, Array *other) { +static inline struct Swap _array__swap(void *self_contents, uint32_t *self_size, uint32_t *self_capacity, + void *other_contents, uint32_t *other_size, uint32_t *other_capacity) { + void *new_self_contents = other_contents; + uint32_t new_self_size = *other_size; + uint32_t new_self_capacity = *other_capacity; + + void *new_other_contents = self_contents; + *other_size = *self_size; + *other_capacity = *self_capacity; + + *self_size = new_self_size; + *self_capacity = new_self_capacity; + + struct Swap out = { + .self_contents = new_self_contents, + .other_contents = new_other_contents, + }; + return out; } /// This is not what you're looking for, see `array_push` or `array_grow_by`. -static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { - uint32_t new_size = self->size + count; - if (new_size > self->capacity) { - uint32_t new_capacity = self->capacity * 2; +static inline void *_array__grow(void *contents, uint32_t size, uint32_t *capacity, + uint32_t count, size_t element_size) { + void *new_contents = contents; + uint32_t new_size = size + count; + if (new_size > *capacity) { + uint32_t new_capacity = *capacity * 2; if (new_capacity < 8) new_capacity = 8; if (new_capacity < new_size) new_capacity = new_size; - _array__reserve(self, element_size, new_capacity); + new_contents = _array__reserve(contents, capacity, element_size, new_capacity); } + return new_contents; } /// This is not what you're looking for, see `array_splice`. -static inline void _array__splice(Array *self, size_t element_size, +static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t *capacity, + size_t element_size, uint32_t index, uint32_t old_count, uint32_t new_count, const void *elements) { - uint32_t new_size = self->size + new_count - old_count; + uint32_t new_size = *size + new_count - old_count; uint32_t old_end = index + old_count; uint32_t new_end = index + new_count; - assert(old_end <= self->size); + assert(old_end <= *size); - _array__reserve(self, element_size, new_size); + void *new_contents = _array__reserve(self_contents, capacity, element_size, new_size); - char *contents = (char *)self->contents; - if (self->size > old_end) { + char *contents = (char *)new_contents; + if (*size > old_end) { memmove( contents + new_end * element_size, contents + old_end * element_size, - (self->size - old_end) * element_size + (*size - old_end) * element_size ); } if (new_count > 0) { @@ -250,7 +304,9 @@ static inline void _array__splice(Array *self, size_t element_size, ); } } - self->size += new_count - old_count; + *size += new_count - old_count; + + return new_contents; } /// A binary search routine, based on Rust's `std::slice::binary_search_by`. 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 cbbc7b4ee3c5..858107deb9e4 100644 --- a/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h +++ b/python/extractor/tsg-python/tsp/src/tree_sitter/parser.h @@ -13,12 +13,16 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -27,10 +31,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -48,6 +53,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -79,6 +85,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -87,8 +99,13 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -104,13 +121,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -123,15 +140,49 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; + const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + const TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + const TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -147,6 +198,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -165,7 +227,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -175,7 +237,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -183,7 +245,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} @@ -196,14 +258,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/python/ql/lib/change-notes/2026-02-05-fix-format-fill-character-misparse.md b/python/ql/lib/change-notes/2026-02-05-fix-format-fill-character-misparse.md new file mode 100644 index 000000000000..8c0bd18c4dc2 --- /dev/null +++ b/python/ql/lib/change-notes/2026-02-05-fix-format-fill-character-misparse.md @@ -0,0 +1,5 @@ +--- +category: fix +--- + +- Using `=` as a fill character in a format specifier (e.g `f"{x:=^20}"`) now no longer results in a syntax error during parsing.