From f60b94e66bd220dfb6a0e83116c9156cf594a272 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Thu, 11 Sep 2025 01:53:39 -0400 Subject: [PATCH 1/6] refactor!: simplify exceptions --- grammar.js | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/grammar.js b/grammar.js index aa22dae5..55188d48 100644 --- a/grammar.js +++ b/grammar.js @@ -354,13 +354,14 @@ module.exports = grammar({ 'try', ':', field('body', $._suite), - repeat(choice($.except_clause, $.except_group_clause)), + repeat($.except_clause), optional($.else_clause), optional($.finally_clause), ), except_clause: $ => seq( 'except', + optional('*'), optional(seq( field('value', $.expression), optional(seq( @@ -372,19 +373,6 @@ module.exports = grammar({ $._suite, ), - except_group_clause: $ => seq( - 'except*', - seq( - $.expression, - optional(seq( - 'as', - $.expression, - )), - ), - ':', - $._suite, - ), - finally_clause: $ => seq( 'finally', ':', From 2f6a48fb15aec4f41a5d9fd1e83f78c78b5b7b68 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Thu, 11 Sep 2025 01:54:23 -0400 Subject: [PATCH 2/6] feat: allow multiple exception expressions without parenthesis --- grammar.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/grammar.js b/grammar.js index 55188d48..2e49c8ee 100644 --- a/grammar.js +++ b/grammar.js @@ -362,12 +362,12 @@ module.exports = grammar({ except_clause: $ => seq( 'except', optional('*'), - optional(seq( - field('value', $.expression), - optional(seq( - choice('as', ','), - field('alias', $.expression), - )), + optional(choice( + seq( + field('value', $.expression), + optional(seq('as', field('alias', $.expression))), + ), + commaSep1(field('value', $.expression)), )), ':', $._suite, From 6a88c58d93c5a2d52edbe4a3e65617d32c0709aa Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Thu, 11 Sep 2025 02:03:08 -0400 Subject: [PATCH 3/6] fix: give a higher lexical precedence to the `*` in `except*` --- grammar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grammar.js b/grammar.js index 2e49c8ee..2bbe35c9 100644 --- a/grammar.js +++ b/grammar.js @@ -361,7 +361,7 @@ module.exports = grammar({ except_clause: $ => seq( 'except', - optional('*'), + optional(token(prec(1, '*'))), optional(choice( seq( field('value', $.expression), From 01462c0a54f4f08c22bce647bb9aeddb78857375 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Thu, 11 Sep 2025 02:08:29 -0400 Subject: [PATCH 4/6] test: update tests --- test/corpus/statements.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt index 5db37d66..3f8c29fc 100644 --- a/test/corpus/statements.txt +++ b/test/corpus/statements.txt @@ -529,7 +529,7 @@ finally: (identifier)))) (except_clause value: (identifier) - alias: (identifier) + value: (identifier) (block (expression_statement (identifier)))) @@ -560,13 +560,13 @@ finally: body: (block (expression_statement (identifier))) - (except_group_clause - (identifier) + (except_clause + value: (identifier) (block (expression_statement (identifier)))) - (except_group_clause - (as_pattern + (except_clause + value: (as_pattern (identifier) alias: (as_pattern_target (identifier))) From 734d6d9f7e831adb32ccd48262af1645a608cb84 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Thu, 11 Sep 2025 01:58:15 -0400 Subject: [PATCH 5/6] ci: update failing files --- .github/workflows/ci.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe4210b0..d234163a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,16 +53,8 @@ jobs: with: files: | examples/**/*.py - !examples/cpython/Lib/annotationlib.py - !examples/cpython/Lib/string/templatelib.py !examples/cpython/Lib/test/test_annotationlib.py - !examples/cpython/Lib/test/test_type_params.py !examples/cpython/Lib/test/test_compile.py - !examples/cpython/Tools/build/generate_re_casefix.py - !examples/cpython/Lib/test/test_annotationlib.py - !examples/cpython/Lib/test/test_grammar.py - !examples/cpython/Lib/test/test_tstring.py !examples/cpython/Lib/test/test_type_params.py - !examples/cpython/Lib/test/test_string/test_templatelib.py invalid-files: | examples/cpython/Lib/test/tokenizedata/badsyntax_3131.py From 6f28b4f74752ffc15061836977462faecdcb54e6 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Thu, 11 Sep 2025 01:58:18 -0400 Subject: [PATCH 6/6] chore: generate --- src/grammar.json | 144 +- src/node-types.json | 29 +- src/parser.c | 109072 +++++++++++++++++++++-------------------- 3 files changed, 54958 insertions(+), 54287 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index b6c652e7..fa1ff576 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1221,17 +1221,8 @@ { "type": "REPEAT", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "except_clause" - }, - { - "type": "SYMBOL", - "name": "except_group_clause" - } - ] + "type": "SYMBOL", + "name": "except_clause" } }, { @@ -1271,101 +1262,102 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "*" + } + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "expression" - } - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "CHOICE", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { "type": "STRING", "value": "as" }, { - "type": "STRING", - "value": "," + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "expression" + } } ] }, { - "type": "FIELD", - "name": "alias", - "content": { - "type": "SYMBOL", - "name": "expression" - } + "type": "BLANK" } ] - }, - { - "type": "BLANK" } ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_suite" - } - ] - }, - "except_group_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "except*" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "CHOICE", - "members": [ + }, { "type": "SEQ", "members": [ { - "type": "STRING", - "value": "as" + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } }, { - "type": "SYMBOL", - "name": "expression" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } } ] - }, - { - "type": "BLANK" } ] + }, + { + "type": "BLANK" } ] }, diff --git a/src/node-types.json b/src/node-types.json index 6a4f654e..e97333cd 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1514,7 +1514,7 @@ ] }, "value": { - "multiple": false, + "multiple": true, "required": false, "types": [ { @@ -1535,25 +1535,6 @@ ] } }, - { - "type": "except_group_clause", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "expression", - "named": true - } - ] - } - }, { "type": "exec_statement", "named": true, @@ -2920,10 +2901,6 @@ "type": "except_clause", "named": true }, - { - "type": "except_group_clause", - "named": true - }, { "type": "finally_clause", "named": true @@ -3613,10 +3590,6 @@ "type": "except", "named": false }, - { - "type": "except*", - "named": false - }, { "type": "exec", "named": false diff --git a/src/parser.c b/src/parser.c index 557fa32e..38ac84de 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,8 +7,8 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 2777 -#define LARGE_STATE_COUNT 181 +#define STATE_COUNT 2786 +#define LARGE_STATE_COUNT 185 #define SYMBOL_COUNT 272 #define ALIAS_COUNT 2 #define TOKEN_COUNT 108 @@ -16,7 +16,7 @@ #define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 35 -#define PRODUCTION_ID_COUNT 142 +#define PRODUCTION_ID_COUNT 150 #define SUPERTYPE_COUNT 4 enum ts_symbol_identifiers { @@ -53,7 +53,7 @@ enum ts_symbol_identifiers { anon_sym_while = 31, anon_sym_try = 32, anon_sym_except = 33, - anon_sym_except_STAR = 34, + anon_sym_STAR2 = 34, anon_sym_finally = 35, anon_sym_with = 36, anon_sym_def = 37, @@ -160,117 +160,117 @@ enum ts_symbol_identifiers { sym_while_statement = 138, sym_try_statement = 139, sym_except_clause = 140, - sym_except_group_clause = 141, - sym_finally_clause = 142, - sym_with_statement = 143, - sym_with_clause = 144, - sym_with_item = 145, - sym_function_definition = 146, - sym_parameters = 147, - sym_lambda_parameters = 148, - sym_list_splat = 149, - sym_dictionary_splat = 150, - sym_global_statement = 151, - sym_nonlocal_statement = 152, - sym_exec_statement = 153, - sym_type_alias_statement = 154, - sym_class_definition = 155, - sym_type_parameter = 156, - sym_parenthesized_list_splat = 157, - sym_argument_list = 158, - sym_decorated_definition = 159, - sym_decorator = 160, - sym_block = 161, - sym_expression_list = 162, - sym_dotted_name = 163, - sym_case_pattern = 164, - sym__simple_pattern = 165, - sym__as_pattern = 166, - sym_union_pattern = 167, - sym__list_pattern = 168, - sym__tuple_pattern = 169, - sym_dict_pattern = 170, - sym__key_value_pattern = 171, - sym_keyword_pattern = 172, - sym_splat_pattern = 173, - sym_class_pattern = 174, - sym_complex_pattern = 175, - sym__parameters = 176, - sym__patterns = 177, - sym_parameter = 178, - sym_pattern = 179, - sym_tuple_pattern = 180, - sym_list_pattern = 181, - sym_default_parameter = 182, - sym_typed_default_parameter = 183, - sym_list_splat_pattern = 184, - sym_dictionary_splat_pattern = 185, - sym_as_pattern = 186, - sym__expression_within_for_in_clause = 187, - sym_expression = 188, - sym_primary_expression = 189, - sym_not_operator = 190, - sym_boolean_operator = 191, - sym_binary_operator = 192, - sym_unary_operator = 193, - sym__not_in = 194, - sym__is_not = 195, - sym_comparison_operator = 196, - sym_lambda = 197, - sym_lambda_within_for_in_clause = 198, - sym_assignment = 199, - sym_augmented_assignment = 200, - sym_pattern_list = 201, - sym__right_hand_side = 202, - sym_yield = 203, - sym_attribute = 204, - sym_subscript = 205, - sym_slice = 206, - sym_call = 207, - sym_typed_parameter = 208, - sym_type = 209, - sym_splat_type = 210, - sym_generic_type = 211, - sym_union_type = 212, - sym_constrained_type = 213, - sym_member_type = 214, - sym_keyword_argument = 215, - sym_list = 216, - sym_set = 217, - sym_tuple = 218, - sym_dictionary = 219, - sym_pair = 220, - sym_list_comprehension = 221, - sym_dictionary_comprehension = 222, - sym_set_comprehension = 223, - sym_generator_expression = 224, - sym__comprehension_clauses = 225, - sym_parenthesized_expression = 226, - sym__collection_elements = 227, - sym_for_in_clause = 228, - sym_if_clause = 229, - sym_conditional_expression = 230, - sym_concatenated_string = 231, - sym_string = 232, - sym_string_content = 233, - sym_interpolation = 234, - sym__f_expression = 235, - sym__not_escape_sequence = 236, - sym_format_specifier = 237, - sym_await = 238, - sym_positional_separator = 239, - sym_keyword_separator = 240, - aux_sym_module_repeat1 = 241, - aux_sym__simple_statements_repeat1 = 242, - aux_sym_import_prefix_repeat1 = 243, - aux_sym__import_list_repeat1 = 244, - aux_sym_print_statement_repeat1 = 245, - aux_sym_assert_statement_repeat1 = 246, - aux_sym_if_statement_repeat1 = 247, - aux_sym_match_statement_repeat1 = 248, - aux_sym__match_block_repeat1 = 249, - aux_sym_case_clause_repeat1 = 250, - aux_sym_try_statement_repeat1 = 251, + sym_finally_clause = 141, + sym_with_statement = 142, + sym_with_clause = 143, + sym_with_item = 144, + sym_function_definition = 145, + sym_parameters = 146, + sym_lambda_parameters = 147, + sym_list_splat = 148, + sym_dictionary_splat = 149, + sym_global_statement = 150, + sym_nonlocal_statement = 151, + sym_exec_statement = 152, + sym_type_alias_statement = 153, + sym_class_definition = 154, + sym_type_parameter = 155, + sym_parenthesized_list_splat = 156, + sym_argument_list = 157, + sym_decorated_definition = 158, + sym_decorator = 159, + sym_block = 160, + sym_expression_list = 161, + sym_dotted_name = 162, + sym_case_pattern = 163, + sym__simple_pattern = 164, + sym__as_pattern = 165, + sym_union_pattern = 166, + sym__list_pattern = 167, + sym__tuple_pattern = 168, + sym_dict_pattern = 169, + sym__key_value_pattern = 170, + sym_keyword_pattern = 171, + sym_splat_pattern = 172, + sym_class_pattern = 173, + sym_complex_pattern = 174, + sym__parameters = 175, + sym__patterns = 176, + sym_parameter = 177, + sym_pattern = 178, + sym_tuple_pattern = 179, + sym_list_pattern = 180, + sym_default_parameter = 181, + sym_typed_default_parameter = 182, + sym_list_splat_pattern = 183, + sym_dictionary_splat_pattern = 184, + sym_as_pattern = 185, + sym__expression_within_for_in_clause = 186, + sym_expression = 187, + sym_primary_expression = 188, + sym_not_operator = 189, + sym_boolean_operator = 190, + sym_binary_operator = 191, + sym_unary_operator = 192, + sym__not_in = 193, + sym__is_not = 194, + sym_comparison_operator = 195, + sym_lambda = 196, + sym_lambda_within_for_in_clause = 197, + sym_assignment = 198, + sym_augmented_assignment = 199, + sym_pattern_list = 200, + sym__right_hand_side = 201, + sym_yield = 202, + sym_attribute = 203, + sym_subscript = 204, + sym_slice = 205, + sym_call = 206, + sym_typed_parameter = 207, + sym_type = 208, + sym_splat_type = 209, + sym_generic_type = 210, + sym_union_type = 211, + sym_constrained_type = 212, + sym_member_type = 213, + sym_keyword_argument = 214, + sym_list = 215, + sym_set = 216, + sym_tuple = 217, + sym_dictionary = 218, + sym_pair = 219, + sym_list_comprehension = 220, + sym_dictionary_comprehension = 221, + sym_set_comprehension = 222, + sym_generator_expression = 223, + sym__comprehension_clauses = 224, + sym_parenthesized_expression = 225, + sym__collection_elements = 226, + sym_for_in_clause = 227, + sym_if_clause = 228, + sym_conditional_expression = 229, + sym_concatenated_string = 230, + sym_string = 231, + sym_string_content = 232, + sym_interpolation = 233, + sym__f_expression = 234, + sym__not_escape_sequence = 235, + sym_format_specifier = 236, + sym_await = 237, + sym_positional_separator = 238, + sym_keyword_separator = 239, + aux_sym_module_repeat1 = 240, + aux_sym__simple_statements_repeat1 = 241, + aux_sym_import_prefix_repeat1 = 242, + aux_sym__import_list_repeat1 = 243, + aux_sym_print_statement_repeat1 = 244, + aux_sym_assert_statement_repeat1 = 245, + aux_sym_if_statement_repeat1 = 246, + aux_sym_match_statement_repeat1 = 247, + aux_sym__match_block_repeat1 = 248, + aux_sym_case_clause_repeat1 = 249, + aux_sym_try_statement_repeat1 = 250, + aux_sym_except_clause_repeat1 = 251, aux_sym_with_clause_repeat1 = 252, aux_sym_global_statement_repeat1 = 253, aux_sym_type_parameter_repeat1 = 254, @@ -330,7 +330,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_while] = "while", [anon_sym_try] = "try", [anon_sym_except] = "except", - [anon_sym_except_STAR] = "except*", + [anon_sym_STAR2] = "*", [anon_sym_finally] = "finally", [anon_sym_with] = "with", [anon_sym_def] = "def", @@ -437,7 +437,6 @@ static const char * const ts_symbol_names[] = { [sym_while_statement] = "while_statement", [sym_try_statement] = "try_statement", [sym_except_clause] = "except_clause", - [sym_except_group_clause] = "except_group_clause", [sym_finally_clause] = "finally_clause", [sym_with_statement] = "with_statement", [sym_with_clause] = "with_clause", @@ -548,6 +547,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__match_block_repeat1] = "_match_block_repeat1", [aux_sym_case_clause_repeat1] = "case_clause_repeat1", [aux_sym_try_statement_repeat1] = "try_statement_repeat1", + [aux_sym_except_clause_repeat1] = "except_clause_repeat1", [aux_sym_with_clause_repeat1] = "with_clause_repeat1", [aux_sym_global_statement_repeat1] = "global_statement_repeat1", [aux_sym_type_parameter_repeat1] = "type_parameter_repeat1", @@ -607,7 +607,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_while] = anon_sym_while, [anon_sym_try] = anon_sym_try, [anon_sym_except] = anon_sym_except, - [anon_sym_except_STAR] = anon_sym_except_STAR, + [anon_sym_STAR2] = anon_sym_STAR, [anon_sym_finally] = anon_sym_finally, [anon_sym_with] = anon_sym_with, [anon_sym_def] = anon_sym_def, @@ -714,7 +714,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_while_statement] = sym_while_statement, [sym_try_statement] = sym_try_statement, [sym_except_clause] = sym_except_clause, - [sym_except_group_clause] = sym_except_group_clause, [sym_finally_clause] = sym_finally_clause, [sym_with_statement] = sym_with_statement, [sym_with_clause] = sym_with_clause, @@ -825,6 +824,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__match_block_repeat1] = aux_sym__match_block_repeat1, [aux_sym_case_clause_repeat1] = aux_sym_case_clause_repeat1, [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, + [aux_sym_except_clause_repeat1] = aux_sym_except_clause_repeat1, [aux_sym_with_clause_repeat1] = aux_sym_with_clause_repeat1, [aux_sym_global_statement_repeat1] = aux_sym_global_statement_repeat1, [aux_sym_type_parameter_repeat1] = aux_sym_type_parameter_repeat1, @@ -986,7 +986,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_except_STAR] = { + [anon_sym_STAR2] = { .visible = true, .named = false, }, @@ -1414,10 +1414,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_except_group_clause] = { - .visible = true, - .named = true, - }, [sym_finally_clause] = { .visible = true, .named = true, @@ -1862,6 +1858,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_except_clause_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_with_clause_repeat1] = { .visible = false, .named = false, @@ -2121,42 +2121,51 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [101] = {.index = 206, .length = 4}, [102] = {.index = 210, .length = 4}, [103] = {.index = 214, .length = 4}, - [104] = {.index = 218, .length = 1}, - [106] = {.index = 219, .length = 4}, - [107] = {.index = 223, .length = 5}, - [108] = {.index = 228, .length = 5}, - [109] = {.index = 233, .length = 3}, - [110] = {.index = 236, .length = 2}, - [111] = {.index = 238, .length = 1}, - [112] = {.index = 239, .length = 4}, - [113] = {.index = 243, .length = 4}, - [114] = {.index = 247, .length = 4}, - [115] = {.index = 251, .length = 5}, - [116] = {.index = 256, .length = 5}, - [117] = {.index = 218, .length = 1}, - [118] = {.index = 261, .length = 5}, - [119] = {.index = 266, .length = 5}, - [120] = {.index = 271, .length = 4}, - [121] = {.index = 275, .length = 4}, - [122] = {.index = 279, .length = 2}, - [123] = {.index = 281, .length = 1}, - [124] = {.index = 282, .length = 2}, + [105] = {.index = 218, .length = 1}, + [106] = {.index = 218, .length = 1}, + [107] = {.index = 219, .length = 2}, + [108] = {.index = 221, .length = 4}, + [109] = {.index = 225, .length = 5}, + [110] = {.index = 230, .length = 5}, + [111] = {.index = 235, .length = 3}, + [112] = {.index = 238, .length = 2}, + [113] = {.index = 240, .length = 1}, + [114] = {.index = 241, .length = 4}, + [115] = {.index = 245, .length = 4}, + [116] = {.index = 249, .length = 4}, + [117] = {.index = 253, .length = 5}, + [118] = {.index = 258, .length = 5}, + [119] = {.index = 263, .length = 1}, + [120] = {.index = 264, .length = 2}, + [121] = {.index = 266, .length = 5}, + [122] = {.index = 271, .length = 5}, + [123] = {.index = 276, .length = 4}, + [124] = {.index = 280, .length = 4}, [125] = {.index = 284, .length = 2}, - [126] = {.index = 286, .length = 5}, - [127] = {.index = 291, .length = 5}, - [128] = {.index = 296, .length = 5}, - [129] = {.index = 301, .length = 2}, - [131] = {.index = 303, .length = 6}, - [132] = {.index = 309, .length = 2}, - [133] = {.index = 311, .length = 2}, - [134] = {.index = 313, .length = 3}, - [135] = {.index = 316, .length = 1}, - [136] = {.index = 317, .length = 6}, - [137] = {.index = 301, .length = 2}, - [138] = {.index = 323, .length = 3}, - [139] = {.index = 326, .length = 2}, - [140] = {.index = 328, .length = 2}, - [141] = {.index = 330, .length = 3}, + [126] = {.index = 286, .length = 1}, + [127] = {.index = 287, .length = 2}, + [128] = {.index = 289, .length = 2}, + [129] = {.index = 291, .length = 5}, + [130] = {.index = 296, .length = 5}, + [131] = {.index = 301, .length = 5}, + [132] = {.index = 263, .length = 1}, + [133] = {.index = 306, .length = 2}, + [134] = {.index = 308, .length = 2}, + [135] = {.index = 264, .length = 2}, + [136] = {.index = 310, .length = 6}, + [137] = {.index = 316, .length = 2}, + [138] = {.index = 318, .length = 2}, + [139] = {.index = 320, .length = 3}, + [140] = {.index = 323, .length = 1}, + [141] = {.index = 324, .length = 6}, + [142] = {.index = 330, .length = 2}, + [143] = {.index = 306, .length = 2}, + [144] = {.index = 308, .length = 2}, + [145] = {.index = 332, .length = 3}, + [146] = {.index = 335, .length = 2}, + [147] = {.index = 337, .length = 2}, + [148] = {.index = 330, .length = 2}, + [149] = {.index = 339, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2476,149 +2485,163 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [218] = {field_value, 1}, [219] = + {field_value, 0, .inherited = true}, + {field_value, 1, .inherited = true}, + [221] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [223] = + [225] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [228] = + [230] = {field_body, 5}, {field_body, 6}, {field_name, 1}, {field_superclasses, 3}, {field_type_parameters, 2}, - [233] = + [235] = {field_left, 2}, {field_right, 4}, {field_right, 5}, - [236] = + [238] = {field_key, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [238] = + [240] = {field_consequence, 3}, - [239] = + [241] = {field_alternative, 7}, {field_body, 6}, {field_left, 2}, {field_right, 4}, - [243] = + [245] = {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [247] = + [249] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [251] = + [253] = {field_body, 6}, {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [256] = + [258] = {field_alternative, 7}, {field_body, 5}, {field_body, 6}, {field_left, 1}, {field_right, 3}, - [261] = + [263] = + {field_value, 2}, + [264] = + {field_value, 1}, + {field_value, 2, .inherited = true}, + [266] = {field_body, 6}, {field_body, 7}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [266] = + [271] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [271] = + [276] = {field_key, 1, .inherited = true}, {field_key, 2, .inherited = true}, {field_value, 1, .inherited = true}, {field_value, 2, .inherited = true}, - [275] = + [280] = {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [279] = + [284] = {field_key, 2, .inherited = true}, {field_value, 2, .inherited = true}, - [281] = + [286] = {field_consequence, 4}, - [282] = + [287] = {field_consequence, 3}, {field_consequence, 4}, - [284] = + [289] = {field_consequence, 4}, {field_guard, 2}, - [286] = + [291] = {field_alternative, 8}, {field_body, 6}, {field_body, 7}, {field_left, 2}, {field_right, 4}, - [291] = + [296] = {field_body, 7}, {field_body, 8}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [296] = + [301] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [301] = + [306] = + {field_value, 2}, + {field_value, 3, .inherited = true}, + [308] = {field_alias, 3}, {field_value, 1}, - [303] = + [310] = {field_body, 7}, {field_body, 8}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [309] = + [316] = {field_consequence, 4}, {field_consequence, 5}, - [311] = + [318] = {field_consequence, 5}, {field_guard, 3}, - [313] = + [320] = {field_consequence, 4}, {field_consequence, 5}, {field_guard, 2}, - [316] = + [323] = {field_consequence, 5}, - [317] = + [324] = {field_body, 8}, {field_body, 9}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [323] = + [330] = + {field_alias, 4}, + {field_value, 2}, + [332] = {field_consequence, 5}, {field_consequence, 6}, {field_guard, 3}, - [326] = + [335] = {field_consequence, 5}, {field_consequence, 6}, - [328] = + [337] = {field_consequence, 6}, {field_guard, 4}, - [330] = + [339] = {field_consequence, 6}, {field_consequence, 7}, {field_guard, 4}, @@ -2713,46 +2736,55 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [104] = { [3] = sym_block, }, - [105] = { + [106] = { [3] = sym_block, }, - [106] = { + [108] = { [6] = sym_block, }, - [111] = { + [113] = { [3] = sym_block, }, - [112] = { + [114] = { [6] = sym_block, }, - [114] = { + [116] = { [7] = sym_block, }, [119] = { - [7] = sym_block, + [4] = sym_block, }, - [123] = { + [120] = { [4] = sym_block, }, - [125] = { + [122] = { + [7] = sym_block, + }, + [126] = { [4] = sym_block, }, [128] = { + [4] = sym_block, + }, + [131] = { [8] = sym_block, }, - [129] = { + [133] = { [5] = sym_block, }, - [130] = { + [134] = { [5] = sym_block, }, - [133] = { + [138] = { [5] = sym_block, }, - [135] = { + [140] = { [5] = sym_block, }, - [140] = { + [142] = { + [6] = sym_block, + }, + [147] = { [6] = sym_block, }, }; @@ -2805,458 +2837,458 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [25] = 25, [26] = 26, [27] = 27, - [28] = 27, + [28] = 28, [29] = 29, [30] = 30, [31] = 31, [32] = 32, [33] = 33, - [34] = 13, - [35] = 19, - [36] = 20, - [37] = 29, - [38] = 38, - [39] = 39, - [40] = 30, - [41] = 39, - [42] = 3, - [43] = 4, - [44] = 5, - [45] = 6, - [46] = 7, - [47] = 8, - [48] = 9, - [49] = 10, - [50] = 11, - [51] = 12, - [52] = 14, - [53] = 15, - [54] = 16, - [55] = 17, - [56] = 18, - [57] = 21, - [58] = 22, - [59] = 24, - [60] = 25, - [61] = 38, - [62] = 62, - [63] = 63, - [64] = 62, - [65] = 65, - [66] = 65, - [67] = 62, - [68] = 62, - [69] = 62, - [70] = 70, + [34] = 34, + [35] = 35, + [36] = 36, + [37] = 6, + [38] = 7, + [39] = 8, + [40] = 9, + [41] = 10, + [42] = 11, + [43] = 12, + [44] = 13, + [45] = 14, + [46] = 15, + [47] = 16, + [48] = 17, + [49] = 18, + [50] = 19, + [51] = 20, + [52] = 21, + [53] = 22, + [54] = 23, + [55] = 24, + [56] = 26, + [57] = 27, + [58] = 28, + [59] = 29, + [60] = 32, + [61] = 33, + [62] = 34, + [63] = 36, + [64] = 3, + [65] = 4, + [66] = 5, + [67] = 67, + [68] = 68, + [69] = 69, + [70] = 68, [71] = 71, - [72] = 72, - [73] = 73, + [72] = 71, + [73] = 71, [74] = 74, [75] = 75, - [76] = 72, - [77] = 75, - [78] = 74, - [79] = 73, - [80] = 80, - [81] = 80, - [82] = 82, - [83] = 82, + [76] = 76, + [77] = 77, + [78] = 78, + [79] = 79, + [80] = 77, + [81] = 79, + [82] = 76, + [83] = 78, [84] = 84, - [85] = 85, - [86] = 84, - [87] = 87, + [85] = 84, + [86] = 86, + [87] = 86, [88] = 88, [89] = 89, [90] = 90, [91] = 91, - [92] = 92, + [92] = 88, [93] = 93, - [94] = 89, + [94] = 94, [95] = 95, [96] = 96, [97] = 97, - [98] = 91, - [99] = 90, - [100] = 96, - [101] = 97, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 101, [102] = 102, - [103] = 102, + [103] = 103, [104] = 104, [105] = 105, [106] = 106, [107] = 107, - [108] = 104, + [108] = 108, [109] = 109, - [110] = 105, + [110] = 110, [111] = 111, - [112] = 112, - [113] = 113, - [114] = 106, - [115] = 115, + [112] = 95, + [113] = 100, + [114] = 114, + [115] = 110, [116] = 116, - [117] = 107, - [118] = 85, - [119] = 119, + [117] = 117, + [118] = 91, + [119] = 116, [120] = 120, - [121] = 109, - [122] = 92, - [123] = 123, - [124] = 111, - [125] = 125, - [126] = 93, - [127] = 113, - [128] = 115, - [129] = 129, - [130] = 120, - [131] = 88, - [132] = 95, - [133] = 119, - [134] = 134, - [135] = 135, - [136] = 135, - [137] = 134, - [138] = 134, - [139] = 135, - [140] = 135, - [141] = 134, - [142] = 134, - [143] = 135, - [144] = 144, - [145] = 145, - [146] = 145, - [147] = 147, + [121] = 94, + [122] = 96, + [123] = 98, + [124] = 101, + [125] = 102, + [126] = 104, + [127] = 106, + [128] = 107, + [129] = 109, + [130] = 114, + [131] = 131, + [132] = 132, + [133] = 133, + [134] = 89, + [135] = 131, + [136] = 133, + [137] = 97, + [138] = 99, + [139] = 132, + [140] = 108, + [141] = 111, + [142] = 142, + [143] = 143, + [144] = 143, + [145] = 142, + [146] = 142, + [147] = 143, [148] = 148, - [149] = 148, - [150] = 150, - [151] = 147, - [152] = 145, - [153] = 147, - [154] = 148, - [155] = 148, - [156] = 148, - [157] = 147, - [158] = 150, - [159] = 148, - [160] = 160, - [161] = 160, - [162] = 162, - [163] = 148, - [164] = 160, - [165] = 145, - [166] = 150, - [167] = 145, - [168] = 162, - [169] = 169, - [170] = 150, - [171] = 150, - [172] = 147, - [173] = 147, - [174] = 148, - [175] = 150, - [176] = 150, - [177] = 150, - [178] = 169, - [179] = 147, - [180] = 180, - [181] = 181, - [182] = 182, - [183] = 182, + [149] = 149, + [150] = 149, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 149, + [155] = 151, + [156] = 152, + [157] = 151, + [158] = 152, + [159] = 159, + [160] = 151, + [161] = 152, + [162] = 153, + [163] = 152, + [164] = 152, + [165] = 159, + [166] = 166, + [167] = 152, + [168] = 149, + [169] = 159, + [170] = 153, + [171] = 153, + [172] = 153, + [173] = 173, + [174] = 151, + [175] = 149, + [176] = 152, + [177] = 153, + [178] = 151, + [179] = 166, + [180] = 153, + [181] = 153, + [182] = 151, + [183] = 173, [184] = 184, [185] = 185, [186] = 186, - [187] = 185, - [188] = 182, - [189] = 189, - [190] = 185, - [191] = 189, - [192] = 185, - [193] = 182, - [194] = 189, - [195] = 182, - [196] = 185, - [197] = 182, - [198] = 189, - [199] = 199, - [200] = 189, - [201] = 185, - [202] = 182, - [203] = 189, - [204] = 185, - [205] = 182, - [206] = 189, - [207] = 185, - [208] = 182, - [209] = 189, - [210] = 185, - [211] = 182, - [212] = 182, - [213] = 186, - [214] = 214, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 217, - [219] = 217, + [187] = 187, + [188] = 188, + [189] = 187, + [190] = 186, + [191] = 191, + [192] = 188, + [193] = 193, + [194] = 191, + [195] = 195, + [196] = 188, + [197] = 187, + [198] = 188, + [199] = 187, + [200] = 186, + [201] = 188, + [202] = 187, + [203] = 186, + [204] = 188, + [205] = 187, + [206] = 186, + [207] = 188, + [208] = 187, + [209] = 186, + [210] = 188, + [211] = 187, + [212] = 186, + [213] = 188, + [214] = 187, + [215] = 187, + [216] = 187, + [217] = 186, + [218] = 218, + [219] = 219, [220] = 220, - [221] = 220, - [222] = 217, + [221] = 221, + [222] = 222, [223] = 220, - [224] = 220, - [225] = 216, - [226] = 226, - [227] = 227, - [228] = 228, - [229] = 229, - [230] = 228, + [224] = 221, + [225] = 221, + [226] = 221, + [227] = 222, + [228] = 222, + [229] = 222, + [230] = 230, [231] = 231, - [232] = 232, + [232] = 218, [233] = 233, - [234] = 214, + [234] = 230, [235] = 235, - [236] = 215, + [236] = 236, [237] = 237, - [238] = 238, - [239] = 235, + [238] = 235, + [239] = 231, [240] = 240, [241] = 241, - [242] = 232, - [243] = 228, - [244] = 244, - [245] = 245, - [246] = 235, + [242] = 242, + [243] = 243, + [244] = 231, + [245] = 230, + [246] = 246, [247] = 235, [248] = 248, - [249] = 235, - [250] = 227, - [251] = 227, - [252] = 235, - [253] = 228, - [254] = 235, - [255] = 235, - [256] = 256, - [257] = 226, - [258] = 226, - [259] = 226, - [260] = 240, - [261] = 241, - [262] = 248, - [263] = 227, - [264] = 264, - [265] = 264, - [266] = 266, - [267] = 267, + [249] = 231, + [250] = 250, + [251] = 251, + [252] = 231, + [253] = 231, + [254] = 219, + [255] = 246, + [256] = 231, + [257] = 231, + [258] = 258, + [259] = 235, + [260] = 260, + [261] = 258, + [262] = 258, + [263] = 258, + [264] = 240, + [265] = 250, + [266] = 243, + [267] = 230, [268] = 268, [269] = 269, - [270] = 270, + [270] = 268, [271] = 271, - [272] = 266, - [273] = 267, - [274] = 268, - [275] = 269, - [276] = 264, - [277] = 266, - [278] = 267, - [279] = 270, - [280] = 271, - [281] = 268, + [272] = 272, + [273] = 269, + [274] = 272, + [275] = 275, + [276] = 272, + [277] = 268, + [278] = 271, + [279] = 279, + [280] = 280, + [281] = 275, [282] = 269, - [283] = 264, - [284] = 266, - [285] = 267, - [286] = 270, - [287] = 271, - [288] = 268, - [289] = 269, - [290] = 264, - [291] = 267, - [292] = 270, - [293] = 271, + [283] = 272, + [284] = 275, + [285] = 271, + [286] = 279, + [287] = 280, + [288] = 279, + [289] = 280, + [290] = 269, + [291] = 272, + [292] = 280, + [293] = 268, [294] = 268, - [295] = 269, - [296] = 264, - [297] = 266, - [298] = 267, - [299] = 270, - [300] = 271, - [301] = 268, - [302] = 269, - [303] = 268, - [304] = 266, - [305] = 267, - [306] = 270, - [307] = 271, - [308] = 268, - [309] = 269, - [310] = 269, - [311] = 266, - [312] = 267, - [313] = 270, - [314] = 271, - [315] = 270, + [295] = 271, + [296] = 279, + [297] = 280, + [298] = 269, + [299] = 272, + [300] = 275, + [301] = 271, + [302] = 268, + [303] = 271, + [304] = 279, + [305] = 280, + [306] = 275, + [307] = 269, + [308] = 272, + [309] = 268, + [310] = 271, + [311] = 279, + [312] = 280, + [313] = 269, + [314] = 272, + [315] = 268, [316] = 271, - [317] = 266, - [318] = 318, - [319] = 319, - [320] = 169, - [321] = 321, + [317] = 279, + [318] = 280, + [319] = 269, + [320] = 279, + [321] = 275, [322] = 322, [323] = 323, - [324] = 324, - [325] = 319, - [326] = 322, - [327] = 318, - [328] = 319, - [329] = 323, - [330] = 330, - [331] = 324, - [332] = 323, - [333] = 333, - [334] = 321, - [335] = 335, - [336] = 324, - [337] = 322, - [338] = 318, - [339] = 321, - [340] = 256, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 342, - [345] = 343, - [346] = 256, - [347] = 256, - [348] = 341, - [349] = 341, - [350] = 342, + [324] = 173, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 323, + [329] = 327, + [330] = 325, + [331] = 331, + [332] = 332, + [333] = 323, + [334] = 334, + [335] = 332, + [336] = 322, + [337] = 337, + [338] = 326, + [339] = 325, + [340] = 326, + [341] = 327, + [342] = 332, + [343] = 322, + [344] = 344, + [345] = 345, + [346] = 345, + [347] = 344, + [348] = 344, + [349] = 345, + [350] = 344, [351] = 351, - [352] = 341, - [353] = 342, - [354] = 341, - [355] = 342, - [356] = 341, - [357] = 342, - [358] = 342, - [359] = 341, - [360] = 343, - [361] = 341, - [362] = 342, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 364, - [367] = 364, - [368] = 363, + [352] = 351, + [353] = 345, + [354] = 242, + [355] = 242, + [356] = 345, + [357] = 344, + [358] = 242, + [359] = 359, + [360] = 351, + [361] = 345, + [362] = 344, + [363] = 344, + [364] = 344, + [365] = 345, + [366] = 345, + [367] = 367, + [368] = 368, [369] = 369, [370] = 370, - [371] = 333, - [372] = 147, - [373] = 373, - [374] = 374, - [375] = 364, - [376] = 363, - [377] = 369, - [378] = 378, - [379] = 335, - [380] = 364, - [381] = 363, - [382] = 369, - [383] = 364, - [384] = 364, - [385] = 363, + [371] = 371, + [372] = 372, + [373] = 370, + [374] = 370, + [375] = 368, + [376] = 368, + [377] = 334, + [378] = 370, + [379] = 369, + [380] = 370, + [381] = 370, + [382] = 370, + [383] = 368, + [384] = 369, + [385] = 151, [386] = 369, - [387] = 363, - [388] = 369, - [389] = 363, - [390] = 364, - [391] = 363, - [392] = 369, - [393] = 364, - [394] = 363, - [395] = 369, - [396] = 364, - [397] = 363, - [398] = 369, + [387] = 370, + [388] = 368, + [389] = 369, + [390] = 368, + [391] = 370, + [392] = 368, + [393] = 369, + [394] = 331, + [395] = 368, + [396] = 369, + [397] = 397, + [398] = 370, [399] = 369, [400] = 369, [401] = 401, - [402] = 402, - [403] = 169, - [404] = 404, - [405] = 405, + [402] = 368, + [403] = 369, + [404] = 368, + [405] = 371, [406] = 406, - [407] = 333, + [407] = 407, [408] = 408, - [409] = 401, + [409] = 409, [410] = 410, - [411] = 411, - [412] = 412, - [413] = 413, - [414] = 335, - [415] = 413, - [416] = 416, + [411] = 334, + [412] = 331, + [413] = 151, + [414] = 173, + [415] = 334, + [416] = 331, [417] = 417, [418] = 418, - [419] = 402, + [419] = 419, [420] = 420, - [421] = 405, + [421] = 421, [422] = 422, - [423] = 423, + [423] = 408, [424] = 424, - [425] = 169, - [426] = 417, - [427] = 405, - [428] = 418, + [425] = 425, + [426] = 426, + [427] = 420, + [428] = 426, [429] = 429, - [430] = 422, - [431] = 411, - [432] = 420, - [433] = 420, - [434] = 434, - [435] = 435, - [436] = 411, - [437] = 437, - [438] = 438, + [430] = 430, + [431] = 431, + [432] = 173, + [433] = 433, + [434] = 430, + [435] = 420, + [436] = 426, + [437] = 430, + [438] = 431, [439] = 439, - [440] = 410, - [441] = 333, - [442] = 147, - [443] = 378, - [444] = 401, - [445] = 422, - [446] = 401, - [447] = 447, - [448] = 401, - [449] = 335, - [450] = 401, - [451] = 401, - [452] = 401, - [453] = 401, - [454] = 401, - [455] = 169, - [456] = 439, - [457] = 424, - [458] = 458, - [459] = 459, - [460] = 402, - [461] = 461, + [440] = 440, + [441] = 431, + [442] = 442, + [443] = 443, + [444] = 444, + [445] = 173, + [446] = 409, + [447] = 442, + [448] = 409, + [449] = 409, + [450] = 409, + [451] = 409, + [452] = 409, + [453] = 409, + [454] = 409, + [455] = 409, + [456] = 417, + [457] = 429, + [458] = 408, + [459] = 334, + [460] = 460, + [461] = 460, [462] = 462, [463] = 463, - [464] = 464, + [464] = 463, [465] = 465, [466] = 466, - [467] = 462, - [468] = 333, - [469] = 469, - [470] = 463, - [471] = 469, - [472] = 335, - [473] = 473, - [474] = 461, - [475] = 464, - [476] = 473, - [477] = 477, - [478] = 466, - [479] = 477, + [467] = 467, + [468] = 468, + [469] = 331, + [470] = 470, + [471] = 468, + [472] = 472, + [473] = 462, + [474] = 467, + [475] = 465, + [476] = 466, + [477] = 472, + [478] = 478, + [479] = 479, [480] = 480, [481] = 481, [482] = 482, @@ -3269,135 +3301,135 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [489] = 489, [490] = 490, [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 484, - [496] = 485, - [497] = 486, - [498] = 487, - [499] = 488, + [492] = 491, + [493] = 483, + [494] = 484, + [495] = 485, + [496] = 486, + [497] = 487, + [498] = 498, + [499] = 490, [500] = 500, - [501] = 501, - [502] = 491, - [503] = 492, - [504] = 504, - [505] = 491, - [506] = 484, - [507] = 485, - [508] = 486, - [509] = 487, - [510] = 488, - [511] = 491, - [512] = 492, - [513] = 484, - [514] = 485, - [515] = 486, - [516] = 487, - [517] = 488, - [518] = 491, - [519] = 492, - [520] = 484, - [521] = 484, - [522] = 485, - [523] = 486, - [524] = 487, - [525] = 488, - [526] = 491, - [527] = 492, - [528] = 484, - [529] = 485, - [530] = 486, - [531] = 487, - [532] = 488, - [533] = 491, - [534] = 492, + [501] = 491, + [502] = 483, + [503] = 484, + [504] = 485, + [505] = 486, + [506] = 487, + [507] = 490, + [508] = 491, + [509] = 483, + [510] = 484, + [511] = 485, + [512] = 486, + [513] = 487, + [514] = 490, + [515] = 491, + [516] = 483, + [517] = 484, + [518] = 485, + [519] = 486, + [520] = 487, + [521] = 490, + [522] = 491, + [523] = 483, + [524] = 484, + [525] = 485, + [526] = 486, + [527] = 487, + [528] = 490, + [529] = 491, + [530] = 530, + [531] = 489, + [532] = 532, + [533] = 533, + [534] = 532, [535] = 535, [536] = 536, [537] = 537, [538] = 538, [539] = 539, [540] = 540, - [541] = 500, - [542] = 538, - [543] = 504, + [541] = 482, + [542] = 542, + [543] = 485, [544] = 544, - [545] = 544, - [546] = 485, + [545] = 500, + [546] = 546, [547] = 547, - [548] = 494, - [549] = 537, - [550] = 486, - [551] = 487, - [552] = 552, - [553] = 488, - [554] = 535, - [555] = 489, - [556] = 536, - [557] = 537, - [558] = 544, + [548] = 478, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 538, + [553] = 553, + [554] = 489, + [555] = 490, + [556] = 530, + [557] = 532, + [558] = 540, [559] = 559, - [560] = 492, - [561] = 561, - [562] = 562, - [563] = 535, - [564] = 489, - [565] = 536, - [566] = 537, - [567] = 567, - [568] = 484, - [569] = 535, - [570] = 544, - [571] = 485, - [572] = 486, - [573] = 487, - [574] = 488, - [575] = 536, - [576] = 537, - [577] = 489, - [578] = 536, + [560] = 530, + [561] = 486, + [562] = 553, + [563] = 489, + [564] = 530, + [565] = 532, + [566] = 540, + [567] = 540, + [568] = 535, + [569] = 530, + [570] = 532, + [571] = 487, + [572] = 572, + [573] = 530, + [574] = 532, + [575] = 575, + [576] = 549, + [577] = 483, + [578] = 530, [579] = 579, - [580] = 580, - [581] = 491, - [582] = 536, - [583] = 537, - [584] = 584, - [585] = 536, - [586] = 492, - [587] = 482, - [588] = 536, - [589] = 480, - [590] = 480, - [591] = 480, - [592] = 489, - [593] = 480, - [594] = 480, - [595] = 480, - [596] = 480, - [597] = 481, - [598] = 567, - [599] = 599, - [600] = 552, - [601] = 601, - [602] = 580, - [603] = 501, + [580] = 553, + [581] = 483, + [582] = 553, + [583] = 484, + [584] = 485, + [585] = 486, + [586] = 487, + [587] = 530, + [588] = 489, + [589] = 484, + [590] = 539, + [591] = 490, + [592] = 550, + [593] = 479, + [594] = 550, + [595] = 550, + [596] = 491, + [597] = 550, + [598] = 550, + [599] = 550, + [600] = 550, + [601] = 559, + [602] = 498, + [603] = 575, [604] = 604, [605] = 605, [606] = 606, [607] = 607, - [608] = 607, + [608] = 608, [609] = 609, - [610] = 610, - [611] = 609, + [610] = 607, + [611] = 611, [612] = 612, - [613] = 613, - [614] = 606, - [615] = 605, - [616] = 613, - [617] = 610, - [618] = 618, - [619] = 619, - [620] = 620, + [613] = 606, + [614] = 608, + [615] = 609, + [616] = 616, + [617] = 617, + [618] = 617, + [619] = 612, + [620] = 611, [621] = 621, [622] = 622, [623] = 623, @@ -3405,100 +3437,100 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [625] = 625, [626] = 626, [627] = 627, - [628] = 624, - [629] = 629, - [630] = 621, + [628] = 628, + [629] = 628, + [630] = 626, [631] = 631, [632] = 632, - [633] = 627, - [634] = 634, - [635] = 635, + [633] = 633, + [634] = 632, + [635] = 627, [636] = 636, - [637] = 626, - [638] = 625, + [637] = 637, + [638] = 624, [639] = 639, - [640] = 618, - [641] = 620, - [642] = 636, + [640] = 639, + [641] = 621, + [642] = 642, [643] = 643, [644] = 644, [645] = 645, - [646] = 639, - [647] = 644, + [646] = 636, + [647] = 623, [648] = 648, [649] = 649, [650] = 650, - [651] = 651, - [652] = 643, - [653] = 648, - [654] = 649, + [651] = 642, + [652] = 652, + [653] = 653, + [654] = 654, [655] = 655, [656] = 656, [657] = 657, - [658] = 656, + [658] = 658, [659] = 659, [660] = 660, - [661] = 660, - [662] = 662, - [663] = 663, - [664] = 629, - [665] = 663, - [666] = 634, - [667] = 635, - [668] = 622, - [669] = 643, - [670] = 660, + [661] = 661, + [662] = 219, + [663] = 654, + [664] = 664, + [665] = 665, + [666] = 664, + [667] = 667, + [668] = 661, + [669] = 660, + [670] = 667, [671] = 656, - [672] = 643, - [673] = 214, - [674] = 618, - [675] = 618, - [676] = 215, - [677] = 621, - [678] = 621, - [679] = 656, - [680] = 660, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 688, - [689] = 682, - [690] = 685, + [672] = 672, + [673] = 652, + [674] = 218, + [675] = 675, + [676] = 676, + [677] = 677, + [678] = 657, + [679] = 679, + [680] = 658, + [681] = 672, + [682] = 653, + [683] = 655, + [684] = 659, + [685] = 675, + [686] = 676, + [687] = 677, + [688] = 679, + [689] = 665, + [690] = 690, [691] = 691, - [692] = 681, + [692] = 692, [693] = 693, - [694] = 694, + [694] = 690, [695] = 695, - [696] = 693, + [696] = 691, [697] = 697, - [698] = 688, - [699] = 695, - [700] = 686, - [701] = 687, - [702] = 697, - [703] = 694, - [704] = 691, - [705] = 684, - [706] = 683, - [707] = 707, + [698] = 698, + [699] = 699, + [700] = 700, + [701] = 701, + [702] = 698, + [703] = 700, + [704] = 704, + [705] = 695, + [706] = 704, + [707] = 699, [708] = 708, - [709] = 707, - [710] = 710, - [711] = 710, - [712] = 708, - [713] = 713, - [714] = 714, - [715] = 715, + [709] = 709, + [710] = 697, + [711] = 692, + [712] = 709, + [713] = 701, + [714] = 693, + [715] = 708, [716] = 716, [717] = 717, [718] = 718, - [719] = 719, - [720] = 720, - [721] = 721, + [719] = 717, + [720] = 718, + [721] = 716, [722] = 722, [723] = 723, [724] = 724, @@ -3514,2046 +3546,2055 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [734] = 734, [735] = 735, [736] = 736, - [737] = 737, + [737] = 722, [738] = 738, [739] = 739, [740] = 740, [741] = 741, [742] = 742, [743] = 743, - [744] = 744, + [744] = 727, [745] = 745, [746] = 746, [747] = 747, [748] = 748, [749] = 749, - [750] = 714, - [751] = 718, + [750] = 750, + [751] = 723, [752] = 752, - [753] = 753, + [753] = 752, [754] = 754, [755] = 755, - [756] = 717, - [757] = 727, - [758] = 758, - [759] = 759, - [760] = 760, + [756] = 756, + [757] = 757, + [758] = 730, + [759] = 742, + [760] = 738, [761] = 761, - [762] = 719, - [763] = 742, - [764] = 743, + [762] = 762, + [763] = 763, + [764] = 764, [765] = 765, - [766] = 765, + [766] = 766, [767] = 767, - [768] = 767, + [768] = 768, [769] = 769, - [770] = 215, + [770] = 770, [771] = 771, - [772] = 738, - [773] = 769, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 214, - [778] = 778, - [779] = 732, + [772] = 772, + [773] = 773, + [774] = 750, + [775] = 757, + [776] = 732, + [777] = 739, + [778] = 735, + [779] = 741, [780] = 780, - [781] = 746, - [782] = 748, - [783] = 753, - [784] = 784, - [785] = 760, - [786] = 761, - [787] = 776, - [788] = 778, - [789] = 780, - [790] = 784, + [781] = 781, + [782] = 782, + [783] = 762, + [784] = 772, + [785] = 773, + [786] = 764, + [787] = 754, + [788] = 734, + [789] = 761, + [790] = 790, [791] = 791, - [792] = 713, - [793] = 752, - [794] = 771, + [792] = 736, + [793] = 793, + [794] = 743, [795] = 795, - [796] = 791, - [797] = 797, - [798] = 715, - [799] = 725, - [800] = 726, - [801] = 749, - [802] = 802, + [796] = 796, + [797] = 795, + [798] = 798, + [799] = 768, + [800] = 765, + [801] = 801, + [802] = 218, [803] = 803, - [804] = 723, - [805] = 735, - [806] = 740, - [807] = 741, - [808] = 716, - [809] = 720, - [810] = 721, - [811] = 722, - [812] = 724, - [813] = 728, - [814] = 729, - [815] = 730, - [816] = 731, - [817] = 802, - [818] = 734, - [819] = 797, - [820] = 736, - [821] = 803, - [822] = 737, - [823] = 739, - [824] = 795, - [825] = 758, - [826] = 774, - [827] = 733, - [828] = 759, - [829] = 754, - [830] = 744, - [831] = 745, - [832] = 747, - [833] = 755, - [834] = 774, - [835] = 733, - [836] = 775, - [837] = 837, - [838] = 837, - [839] = 837, - [840] = 837, - [841] = 837, - [842] = 837, - [843] = 843, - [844] = 843, - [845] = 845, + [804] = 804, + [805] = 805, + [806] = 801, + [807] = 766, + [808] = 733, + [809] = 767, + [810] = 790, + [811] = 811, + [812] = 793, + [813] = 749, + [814] = 770, + [815] = 771, + [816] = 219, + [817] = 724, + [818] = 726, + [819] = 728, + [820] = 763, + [821] = 729, + [822] = 781, + [823] = 823, + [824] = 731, + [825] = 803, + [826] = 740, + [827] = 791, + [828] = 755, + [829] = 805, + [830] = 745, + [831] = 747, + [832] = 796, + [833] = 756, + [834] = 769, + [835] = 748, + [836] = 780, + [837] = 823, + [838] = 782, + [839] = 798, + [840] = 722, + [841] = 769, + [842] = 811, + [843] = 804, + [844] = 746, + [845] = 725, [846] = 846, [847] = 846, [848] = 846, [849] = 846, [850] = 846, [851] = 846, - [852] = 846, - [853] = 846, + [852] = 852, + [853] = 852, [854] = 854, - [855] = 855, + [855] = 854, [856] = 854, - [857] = 845, - [858] = 858, - [859] = 855, - [860] = 860, + [857] = 854, + [858] = 854, + [859] = 859, + [860] = 854, [861] = 854, - [862] = 862, - [863] = 862, + [862] = 854, + [863] = 863, [864] = 864, [865] = 865, - [866] = 864, - [867] = 858, - [868] = 860, + [866] = 866, + [867] = 867, + [868] = 868, [869] = 869, [870] = 870, - [871] = 870, - [872] = 862, - [873] = 854, - [874] = 860, - [875] = 875, - [876] = 862, - [877] = 860, - [878] = 878, - [879] = 878, - [880] = 862, - [881] = 865, - [882] = 855, + [871] = 863, + [872] = 872, + [873] = 873, + [874] = 874, + [875] = 868, + [876] = 876, + [877] = 873, + [878] = 863, + [879] = 859, + [880] = 859, + [881] = 867, + [882] = 864, [883] = 865, - [884] = 864, - [885] = 885, - [886] = 864, - [887] = 885, - [888] = 858, - [889] = 860, - [890] = 869, - [891] = 862, - [892] = 854, - [893] = 845, - [894] = 858, - [895] = 885, - [896] = 855, - [897] = 865, - [898] = 864, - [899] = 870, - [900] = 878, - [901] = 845, - [902] = 864, - [903] = 860, - [904] = 860, - [905] = 858, - [906] = 870, - [907] = 865, - [908] = 860, - [909] = 875, - [910] = 870, - [911] = 878, - [912] = 858, - [913] = 869, - [914] = 854, - [915] = 855, - [916] = 860, - [917] = 862, - [918] = 869, - [919] = 864, - [920] = 870, - [921] = 865, - [922] = 870, - [923] = 885, - [924] = 885, - [925] = 878, - [926] = 878, - [927] = 854, - [928] = 869, - [929] = 878, - [930] = 855, - [931] = 865, - [932] = 858, - [933] = 858, - [934] = 869, - [935] = 869, - [936] = 855, - [937] = 864, - [938] = 865, - [939] = 860, - [940] = 870, - [941] = 860, - [942] = 860, - [943] = 860, - [944] = 862, - [945] = 878, - [946] = 869, - [947] = 854, - [948] = 855, - [949] = 845, - [950] = 845, - [951] = 951, - [952] = 845, - [953] = 845, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 954, + [884] = 868, + [885] = 870, + [886] = 870, + [887] = 868, + [888] = 863, + [889] = 869, + [890] = 870, + [891] = 867, + [892] = 864, + [893] = 865, + [894] = 866, + [895] = 873, + [896] = 874, + [897] = 874, + [898] = 870, + [899] = 869, + [900] = 863, + [901] = 863, + [902] = 866, + [903] = 873, + [904] = 870, + [905] = 873, + [906] = 874, + [907] = 869, + [908] = 876, + [909] = 870, + [910] = 874, + [911] = 859, + [912] = 867, + [913] = 867, + [914] = 874, + [915] = 867, + [916] = 876, + [917] = 868, + [918] = 864, + [919] = 876, + [920] = 869, + [921] = 867, + [922] = 864, + [923] = 876, + [924] = 872, + [925] = 870, + [926] = 868, + [927] = 864, + [928] = 864, + [929] = 865, + [930] = 863, + [931] = 866, + [932] = 865, + [933] = 873, + [934] = 874, + [935] = 870, + [936] = 865, + [937] = 866, + [938] = 870, + [939] = 866, + [940] = 863, + [941] = 868, + [942] = 869, + [943] = 867, + [944] = 864, + [945] = 865, + [946] = 866, + [947] = 869, + [948] = 873, + [949] = 870, + [950] = 870, + [951] = 870, + [952] = 868, + [953] = 869, + [954] = 866, + [955] = 873, + [956] = 874, + [957] = 865, + [958] = 859, [959] = 959, - [960] = 951, - [961] = 951, - [962] = 962, - [963] = 845, - [964] = 955, + [960] = 960, + [961] = 859, + [962] = 859, + [963] = 859, + [964] = 964, [965] = 965, [966] = 966, [967] = 967, - [968] = 955, - [969] = 954, - [970] = 951, - [971] = 955, - [972] = 972, - [973] = 973, - [974] = 974, - [975] = 954, - [976] = 976, - [977] = 956, - [978] = 955, - [979] = 962, + [968] = 960, + [969] = 964, + [970] = 959, + [971] = 960, + [972] = 964, + [973] = 959, + [974] = 859, + [975] = 964, + [976] = 959, + [977] = 977, + [978] = 978, + [979] = 979, [980] = 980, - [981] = 951, - [982] = 972, - [983] = 972, - [984] = 954, - [985] = 954, - [986] = 986, - [987] = 659, - [988] = 632, - [989] = 845, - [990] = 962, - [991] = 974, - [992] = 955, - [993] = 973, - [994] = 845, - [995] = 954, - [996] = 657, - [997] = 959, - [998] = 951, - [999] = 956, - [1000] = 655, - [1001] = 965, - [1002] = 1002, - [1003] = 966, - [1004] = 965, - [1005] = 959, - [1006] = 951, - [1007] = 845, - [1008] = 959, - [1009] = 973, - [1010] = 967, - [1011] = 972, - [1012] = 1012, - [1013] = 955, - [1014] = 974, - [1015] = 957, - [1016] = 957, - [1017] = 623, + [981] = 981, + [982] = 982, + [983] = 983, + [984] = 960, + [985] = 979, + [986] = 981, + [987] = 982, + [988] = 983, + [989] = 989, + [990] = 960, + [991] = 991, + [992] = 992, + [993] = 966, + [994] = 967, + [995] = 964, + [996] = 977, + [997] = 978, + [998] = 979, + [999] = 965, + [1000] = 980, + [1001] = 981, + [1002] = 982, + [1003] = 983, + [1004] = 959, + [1005] = 1005, + [1006] = 966, + [1007] = 967, + [1008] = 1008, + [1009] = 980, + [1010] = 977, + [1011] = 978, + [1012] = 965, + [1013] = 965, + [1014] = 980, + [1015] = 981, + [1016] = 982, + [1017] = 983, [1018] = 1018, - [1019] = 662, - [1020] = 974, - [1021] = 957, - [1022] = 956, - [1023] = 962, - [1024] = 966, - [1025] = 967, - [1026] = 966, - [1027] = 965, - [1028] = 967, - [1029] = 631, - [1030] = 973, - [1031] = 1031, + [1019] = 649, + [1020] = 637, + [1021] = 622, + [1022] = 633, + [1023] = 650, + [1024] = 625, + [1025] = 859, + [1026] = 960, + [1027] = 964, + [1028] = 959, + [1029] = 859, + [1030] = 966, + [1031] = 967, [1032] = 1032, - [1033] = 655, - [1034] = 659, - [1035] = 662, - [1036] = 631, - [1037] = 632, - [1038] = 612, - [1039] = 651, - [1040] = 1040, + [1033] = 959, + [1034] = 977, + [1035] = 978, + [1036] = 979, + [1037] = 960, + [1038] = 964, + [1039] = 859, + [1040] = 631, [1041] = 1041, - [1042] = 1031, - [1043] = 1002, + [1042] = 1042, + [1043] = 977, [1044] = 1044, [1045] = 1045, - [1046] = 986, + [1046] = 1046, [1047] = 1047, - [1048] = 976, - [1049] = 1031, - [1050] = 1002, - [1051] = 959, - [1052] = 986, + [1048] = 967, + [1049] = 977, + [1050] = 978, + [1051] = 979, + [1052] = 965, [1053] = 980, - [1054] = 1018, - [1055] = 1012, - [1056] = 974, - [1057] = 1057, + [1054] = 981, + [1055] = 982, + [1056] = 983, + [1057] = 978, [1058] = 1058, - [1059] = 1059, - [1060] = 1060, - [1061] = 1061, - [1062] = 976, - [1063] = 1063, - [1064] = 1064, - [1065] = 1065, - [1066] = 1066, - [1067] = 1067, - [1068] = 1068, - [1069] = 986, - [1070] = 959, - [1071] = 974, - [1072] = 976, - [1073] = 956, - [1074] = 965, - [1075] = 973, - [1076] = 957, - [1077] = 962, - [1078] = 966, - [1079] = 967, - [1080] = 972, - [1081] = 954, - [1082] = 980, - [1083] = 1018, - [1084] = 1012, - [1085] = 956, - [1086] = 955, - [1087] = 965, - [1088] = 951, - [1089] = 973, - [1090] = 957, - [1091] = 962, - [1092] = 966, - [1093] = 967, - [1094] = 972, - [1095] = 1095, - [1096] = 1096, + [1059] = 649, + [1060] = 637, + [1061] = 622, + [1062] = 633, + [1063] = 650, + [1064] = 625, + [1065] = 979, + [1066] = 616, + [1067] = 965, + [1068] = 648, + [1069] = 980, + [1070] = 991, + [1071] = 992, + [1072] = 981, + [1073] = 982, + [1074] = 1074, + [1075] = 983, + [1076] = 1076, + [1077] = 1008, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 989, + [1082] = 1082, + [1083] = 1083, + [1084] = 1084, + [1085] = 1008, + [1086] = 1005, + [1087] = 1018, + [1088] = 1032, + [1089] = 989, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 608, + [1094] = 609, + [1095] = 643, + [1096] = 1008, [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1101, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 1107, - [1108] = 605, - [1109] = 607, - [1110] = 645, - [1111] = 650, - [1112] = 980, + [1098] = 966, + [1099] = 967, + [1100] = 644, + [1101] = 989, + [1102] = 977, + [1103] = 978, + [1104] = 979, + [1105] = 965, + [1106] = 980, + [1107] = 981, + [1108] = 982, + [1109] = 983, + [1110] = 1110, + [1111] = 960, + [1112] = 1005, [1113] = 1018, - [1114] = 1012, - [1115] = 959, - [1116] = 974, + [1114] = 1032, + [1115] = 964, + [1116] = 959, [1117] = 1117, - [1118] = 1064, - [1119] = 1065, + [1118] = 1118, + [1119] = 1119, [1120] = 1120, [1121] = 1121, - [1122] = 623, - [1123] = 956, - [1124] = 965, - [1125] = 973, - [1126] = 957, - [1127] = 962, - [1128] = 966, - [1129] = 967, - [1130] = 972, - [1131] = 657, - [1132] = 966, - [1133] = 1040, - [1134] = 1095, - [1135] = 1097, - [1136] = 1103, - [1137] = 1041, - [1138] = 1044, - [1139] = 605, - [1140] = 1057, - [1141] = 1031, - [1142] = 1096, - [1143] = 1002, - [1144] = 1066, - [1145] = 1104, - [1146] = 1105, - [1147] = 1098, - [1148] = 1100, - [1149] = 1067, - [1150] = 1068, - [1151] = 1040, - [1152] = 1041, - [1153] = 1044, - [1154] = 1057, - [1155] = 1106, - [1156] = 976, - [1157] = 1107, - [1158] = 607, - [1159] = 1120, - [1160] = 1096, - [1161] = 1104, - [1162] = 1105, - [1163] = 1106, - [1164] = 1107, - [1165] = 1117, - [1166] = 1121, - [1167] = 1060, - [1168] = 1061, - [1169] = 1063, - [1170] = 1117, - [1171] = 1101, - [1172] = 1102, - [1173] = 1121, - [1174] = 1060, - [1175] = 1061, - [1176] = 1063, - [1177] = 1101, - [1178] = 1102, - [1179] = 623, - [1180] = 1099, - [1181] = 624, - [1182] = 980, - [1183] = 625, - [1184] = 1018, - [1185] = 626, - [1186] = 645, - [1187] = 650, - [1188] = 657, - [1189] = 655, - [1190] = 659, - [1191] = 662, - [1192] = 631, - [1193] = 632, - [1194] = 651, - [1195] = 986, - [1196] = 651, + [1122] = 1122, + [1123] = 1123, + [1124] = 1005, + [1125] = 1018, + [1126] = 1032, + [1127] = 1127, + [1128] = 1128, + [1129] = 991, + [1130] = 992, + [1131] = 966, + [1132] = 967, + [1133] = 1133, + [1134] = 966, + [1135] = 1044, + [1136] = 1045, + [1137] = 1137, + [1138] = 1138, + [1139] = 1139, + [1140] = 631, + [1141] = 622, + [1142] = 1110, + [1143] = 1091, + [1144] = 1133, + [1145] = 1079, + [1146] = 1080, + [1147] = 1041, + [1148] = 1082, + [1149] = 1083, + [1150] = 1084, + [1151] = 649, + [1152] = 1042, + [1153] = 1047, + [1154] = 1058, + [1155] = 637, + [1156] = 622, + [1157] = 633, + [1158] = 1090, + [1159] = 1097, + [1160] = 650, + [1161] = 625, + [1162] = 1091, + [1163] = 1076, + [1164] = 648, + [1165] = 1128, + [1166] = 1138, + [1167] = 989, + [1168] = 1045, + [1169] = 1139, + [1170] = 1110, + [1171] = 1076, + [1172] = 650, + [1173] = 1092, + [1174] = 625, + [1175] = 1092, + [1176] = 1074, + [1177] = 1078, + [1178] = 1137, + [1179] = 1138, + [1180] = 1117, + [1181] = 1118, + [1182] = 1119, + [1183] = 1074, + [1184] = 1120, + [1185] = 608, + [1186] = 609, + [1187] = 1078, + [1188] = 1117, + [1189] = 1133, + [1190] = 1079, + [1191] = 1080, + [1192] = 1041, + [1193] = 1082, + [1194] = 1083, + [1195] = 1084, + [1196] = 1042, [1197] = 1047, - [1198] = 980, - [1199] = 1018, - [1200] = 1012, - [1201] = 959, - [1202] = 974, - [1203] = 623, - [1204] = 612, - [1205] = 627, - [1206] = 976, - [1207] = 1067, - [1208] = 1068, - [1209] = 1095, - [1210] = 956, - [1211] = 965, - [1212] = 973, - [1213] = 957, - [1214] = 962, - [1215] = 1098, - [1216] = 1100, - [1217] = 972, - [1218] = 1097, - [1219] = 1103, - [1220] = 645, - [1221] = 650, - [1222] = 986, - [1223] = 645, - [1224] = 650, - [1225] = 605, - [1226] = 607, - [1227] = 1012, - [1228] = 980, - [1229] = 651, - [1230] = 651, - [1231] = 657, - [1232] = 1018, - [1233] = 1066, - [1234] = 1064, - [1235] = 1065, - [1236] = 1120, - [1237] = 655, - [1238] = 659, - [1239] = 662, - [1240] = 1012, - [1241] = 1095, - [1242] = 1098, - [1243] = 1100, - [1244] = 1040, - [1245] = 1041, - [1246] = 1044, - [1247] = 631, - [1248] = 632, - [1249] = 623, - [1250] = 1057, - [1251] = 1097, - [1252] = 1103, - [1253] = 612, - [1254] = 986, - [1255] = 1096, - [1256] = 1104, - [1257] = 1105, - [1258] = 1106, - [1259] = 1047, - [1260] = 1107, - [1261] = 1117, - [1262] = 1121, - [1263] = 1031, - [1264] = 1002, - [1265] = 657, - [1266] = 1060, - [1267] = 1061, - [1268] = 976, - [1269] = 1063, - [1270] = 655, - [1271] = 659, - [1272] = 1067, - [1273] = 1068, - [1274] = 662, - [1275] = 1101, - [1276] = 1102, - [1277] = 631, - [1278] = 632, - [1279] = 1099, - [1280] = 1099, - [1281] = 1066, - [1282] = 651, - [1283] = 1047, - [1284] = 967, - [1285] = 1041, - [1286] = 1040, - [1287] = 1041, - [1288] = 1044, - [1289] = 1066, - [1290] = 1095, - [1291] = 1098, - [1292] = 1100, - [1293] = 1040, + [1198] = 1058, + [1199] = 616, + [1200] = 1090, + [1201] = 1097, + [1202] = 1008, + [1203] = 1118, + [1204] = 1119, + [1205] = 1120, + [1206] = 631, + [1207] = 1044, + [1208] = 1133, + [1209] = 1079, + [1210] = 1080, + [1211] = 1041, + [1212] = 631, + [1213] = 1082, + [1214] = 1083, + [1215] = 1084, + [1216] = 1042, + [1217] = 1047, + [1218] = 1058, + [1219] = 1090, + [1220] = 1097, + [1221] = 1091, + [1222] = 649, + [1223] = 637, + [1224] = 633, + [1225] = 1139, + [1226] = 650, + [1227] = 625, + [1228] = 1128, + [1229] = 624, + [1230] = 1008, + [1231] = 648, + [1232] = 1128, + [1233] = 621, + [1234] = 1005, + [1235] = 626, + [1236] = 966, + [1237] = 967, + [1238] = 643, + [1239] = 989, + [1240] = 1137, + [1241] = 1138, + [1242] = 977, + [1243] = 978, + [1244] = 979, + [1245] = 965, + [1246] = 980, + [1247] = 981, + [1248] = 982, + [1249] = 983, + [1250] = 644, + [1251] = 643, + [1252] = 644, + [1253] = 643, + [1254] = 644, + [1255] = 648, + [1256] = 648, + [1257] = 648, + [1258] = 1005, + [1259] = 1018, + [1260] = 1032, + [1261] = 1018, + [1262] = 649, + [1263] = 1032, + [1264] = 627, + [1265] = 1139, + [1266] = 1110, + [1267] = 991, + [1268] = 992, + [1269] = 991, + [1270] = 1046, + [1271] = 616, + [1272] = 1008, + [1273] = 608, + [1274] = 609, + [1275] = 1076, + [1276] = 1005, + [1277] = 1018, + [1278] = 1032, + [1279] = 1092, + [1280] = 1137, + [1281] = 1074, + [1282] = 1078, + [1283] = 992, + [1284] = 1117, + [1285] = 1118, + [1286] = 989, + [1287] = 1119, + [1288] = 631, + [1289] = 1046, + [1290] = 1120, + [1291] = 637, + [1292] = 622, + [1293] = 633, [1294] = 1041, - [1295] = 1060, - [1296] = 1057, - [1297] = 1097, - [1298] = 655, - [1299] = 659, - [1300] = 662, - [1301] = 1047, - [1302] = 631, - [1303] = 632, - [1304] = 1096, - [1305] = 1104, - [1306] = 1105, - [1307] = 1106, - [1308] = 1107, - [1309] = 1117, - [1310] = 1121, - [1311] = 1060, - [1312] = 1061, - [1313] = 1063, - [1314] = 1101, - [1315] = 1102, - [1316] = 1101, - [1317] = 1067, - [1318] = 1068, - [1319] = 1103, - [1320] = 1047, - [1321] = 1057, - [1322] = 1058, - [1323] = 1032, - [1324] = 1059, - [1325] = 645, - [1326] = 650, - [1327] = 619, - [1328] = 623, - [1329] = 1329, - [1330] = 1330, - [1331] = 1099, - [1332] = 1102, - [1333] = 657, - [1334] = 655, - [1335] = 659, - [1336] = 662, - [1337] = 631, - [1338] = 632, - [1339] = 986, - [1340] = 624, - [1341] = 624, - [1342] = 651, - [1343] = 625, - [1344] = 976, - [1345] = 624, - [1346] = 625, - [1347] = 626, - [1348] = 626, - [1349] = 651, - [1350] = 627, - [1351] = 623, - [1352] = 625, - [1353] = 645, - [1354] = 1096, - [1355] = 1104, - [1356] = 1105, - [1357] = 1106, - [1358] = 1107, - [1359] = 1117, - [1360] = 1121, - [1361] = 650, - [1362] = 651, - [1363] = 1060, - [1364] = 1061, - [1365] = 1063, - [1366] = 626, - [1367] = 1066, - [1368] = 627, - [1369] = 1063, - [1370] = 1067, - [1371] = 1068, - [1372] = 1047, - [1373] = 1101, - [1374] = 1102, - [1375] = 1067, - [1376] = 1068, - [1377] = 1099, - [1378] = 651, - [1379] = 1098, - [1380] = 1100, - [1381] = 1099, - [1382] = 1095, - [1383] = 1097, - [1384] = 657, - [1385] = 1103, - [1386] = 1066, - [1387] = 645, - [1388] = 650, - [1389] = 1098, - [1390] = 1100, - [1391] = 980, - [1392] = 1040, - [1393] = 1061, - [1394] = 1044, - [1395] = 1018, - [1396] = 1057, - [1397] = 1012, - [1398] = 1095, - [1399] = 1097, - [1400] = 627, - [1401] = 1103, - [1402] = 1096, - [1403] = 1104, - [1404] = 1105, - [1405] = 1106, - [1406] = 1107, - [1407] = 1117, - [1408] = 1121, - [1409] = 619, - [1410] = 1044, - [1411] = 1044, - [1412] = 1061, - [1413] = 1120, - [1414] = 1063, - [1415] = 650, - [1416] = 1068, - [1417] = 1066, - [1418] = 1101, - [1419] = 1102, - [1420] = 1067, - [1421] = 1064, - [1422] = 1098, - [1423] = 1064, - [1424] = 1100, - [1425] = 1065, - [1426] = 1095, - [1427] = 1120, - [1428] = 1040, - [1429] = 1041, - [1430] = 645, - [1431] = 1060, - [1432] = 657, - [1433] = 655, - [1434] = 659, - [1435] = 662, - [1436] = 631, - [1437] = 632, - [1438] = 1097, - [1439] = 1057, - [1440] = 1103, - [1441] = 1099, - [1442] = 1065, - [1443] = 1120, - [1444] = 1047, - [1445] = 619, - [1446] = 619, - [1447] = 1096, - [1448] = 1104, - [1449] = 651, - [1450] = 1105, - [1451] = 1064, - [1452] = 1065, - [1453] = 1121, - [1454] = 1106, - [1455] = 1107, - [1456] = 1117, - [1457] = 623, - [1458] = 651, - [1459] = 662, - [1460] = 631, - [1461] = 632, - [1462] = 650, - [1463] = 1329, - [1464] = 626, - [1465] = 645, - [1466] = 627, - [1467] = 1330, - [1468] = 623, - [1469] = 657, - [1470] = 655, - [1471] = 651, - [1472] = 651, - [1473] = 651, - [1474] = 659, - [1475] = 624, - [1476] = 625, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, + [1295] = 1118, + [1296] = 1123, + [1297] = 645, + [1298] = 1137, + [1299] = 1091, + [1300] = 1138, + [1301] = 643, + [1302] = 644, + [1303] = 1005, + [1304] = 1018, + [1305] = 1032, + [1306] = 1139, + [1307] = 1110, + [1308] = 631, + [1309] = 1076, + [1310] = 1092, + [1311] = 1058, + [1312] = 1074, + [1313] = 1078, + [1314] = 1117, + [1315] = 1118, + [1316] = 1119, + [1317] = 1133, + [1318] = 1120, + [1319] = 1120, + [1320] = 1119, + [1321] = 1120, + [1322] = 1121, + [1323] = 1079, + [1324] = 1080, + [1325] = 1041, + [1326] = 648, + [1327] = 1133, + [1328] = 1079, + [1329] = 1080, + [1330] = 1082, + [1331] = 1082, + [1332] = 1083, + [1333] = 1084, + [1334] = 1042, + [1335] = 1047, + [1336] = 1058, + [1337] = 1083, + [1338] = 1092, + [1339] = 624, + [1340] = 1090, + [1341] = 1097, + [1342] = 621, + [1343] = 1133, + [1344] = 626, + [1345] = 1074, + [1346] = 1079, + [1347] = 649, + [1348] = 1128, + [1349] = 1080, + [1350] = 1041, + [1351] = 637, + [1352] = 622, + [1353] = 633, + [1354] = 1082, + [1355] = 1090, + [1356] = 1083, + [1357] = 643, + [1358] = 631, + [1359] = 644, + [1360] = 650, + [1361] = 625, + [1362] = 1084, + [1363] = 1363, + [1364] = 1364, + [1365] = 627, + [1366] = 649, + [1367] = 637, + [1368] = 622, + [1369] = 633, + [1370] = 650, + [1371] = 625, + [1372] = 1008, + [1373] = 1097, + [1374] = 648, + [1375] = 989, + [1376] = 624, + [1377] = 621, + [1378] = 626, + [1379] = 1084, + [1380] = 1042, + [1381] = 648, + [1382] = 627, + [1383] = 1047, + [1384] = 1058, + [1385] = 1117, + [1386] = 1118, + [1387] = 1128, + [1388] = 1119, + [1389] = 1090, + [1390] = 1091, + [1391] = 1137, + [1392] = 624, + [1393] = 621, + [1394] = 1139, + [1395] = 626, + [1396] = 643, + [1397] = 644, + [1398] = 648, + [1399] = 627, + [1400] = 1139, + [1401] = 1110, + [1402] = 1128, + [1403] = 1076, + [1404] = 1097, + [1405] = 1138, + [1406] = 1078, + [1407] = 1092, + [1408] = 1110, + [1409] = 1137, + [1410] = 1076, + [1411] = 1042, + [1412] = 1138, + [1413] = 1122, + [1414] = 1074, + [1415] = 1078, + [1416] = 1047, + [1417] = 645, + [1418] = 1117, + [1419] = 1091, + [1420] = 1045, + [1421] = 1097, + [1422] = 1090, + [1423] = 1139, + [1424] = 1110, + [1425] = 631, + [1426] = 649, + [1427] = 637, + [1428] = 622, + [1429] = 633, + [1430] = 650, + [1431] = 625, + [1432] = 1076, + [1433] = 648, + [1434] = 1092, + [1435] = 1044, + [1436] = 1045, + [1437] = 1046, + [1438] = 1074, + [1439] = 1078, + [1440] = 645, + [1441] = 1117, + [1442] = 1118, + [1443] = 1119, + [1444] = 1120, + [1445] = 1044, + [1446] = 1128, + [1447] = 1045, + [1448] = 1046, + [1449] = 1091, + [1450] = 1046, + [1451] = 1133, + [1452] = 1079, + [1453] = 1080, + [1454] = 1041, + [1455] = 1082, + [1456] = 1083, + [1457] = 1084, + [1458] = 1137, + [1459] = 1042, + [1460] = 1047, + [1461] = 1058, + [1462] = 643, + [1463] = 1044, + [1464] = 644, + [1465] = 1138, + [1466] = 645, + [1467] = 624, + [1468] = 631, + [1469] = 626, + [1470] = 627, + [1471] = 1363, + [1472] = 1364, + [1473] = 649, + [1474] = 637, + [1475] = 622, + [1476] = 621, + [1477] = 633, + [1478] = 650, + [1479] = 625, + [1480] = 643, + [1481] = 644, + [1482] = 648, + [1483] = 648, + [1484] = 648, + [1485] = 648, [1486] = 1486, [1487] = 1487, - [1488] = 1485, - [1489] = 1480, - [1490] = 1479, - [1491] = 1481, - [1492] = 1482, - [1493] = 1483, - [1494] = 1484, - [1495] = 1487, - [1496] = 1486, - [1497] = 1487, - [1498] = 1480, - [1499] = 1479, - [1500] = 1481, - [1501] = 1482, - [1502] = 1480, - [1503] = 1479, - [1504] = 1486, - [1505] = 1487, - [1506] = 1481, - [1507] = 1483, - [1508] = 1484, - [1509] = 1483, - [1510] = 1484, - [1511] = 1482, - [1512] = 1485, - [1513] = 1486, - [1514] = 1485, - [1515] = 1515, - [1516] = 1516, - [1517] = 1516, - [1518] = 1516, - [1519] = 1519, - [1520] = 1520, - [1521] = 1521, - [1522] = 1522, - [1523] = 1523, - [1524] = 1523, - [1525] = 1525, - [1526] = 1521, - [1527] = 1525, - [1528] = 1522, - [1529] = 1523, - [1530] = 1520, - [1531] = 1521, - [1532] = 1521, - [1533] = 1525, - [1534] = 1522, - [1535] = 1523, - [1536] = 1520, - [1537] = 1520, - [1538] = 1525, - [1539] = 1522, - [1540] = 1540, - [1541] = 1541, - [1542] = 1541, - [1543] = 1543, - [1544] = 1541, - [1545] = 1545, - [1546] = 1543, - [1547] = 1543, - [1548] = 1541, - [1549] = 1543, + [1488] = 1488, + [1489] = 1489, + [1490] = 1490, + [1491] = 1491, + [1492] = 1492, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, + [1496] = 1496, + [1497] = 1489, + [1498] = 1488, + [1499] = 1490, + [1500] = 1490, + [1501] = 1491, + [1502] = 1490, + [1503] = 1491, + [1504] = 1493, + [1505] = 1492, + [1506] = 1493, + [1507] = 1496, + [1508] = 1495, + [1509] = 1496, + [1510] = 1489, + [1511] = 1488, + [1512] = 1492, + [1513] = 1492, + [1514] = 1493, + [1515] = 1494, + [1516] = 1495, + [1517] = 1496, + [1518] = 1495, + [1519] = 1494, + [1520] = 1489, + [1521] = 1488, + [1522] = 1491, + [1523] = 1494, + [1524] = 1524, + [1525] = 1524, + [1526] = 1526, + [1527] = 1527, + [1528] = 1524, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, + [1533] = 1531, + [1534] = 1529, + [1535] = 1531, + [1536] = 1531, + [1537] = 1529, + [1538] = 1530, + [1539] = 1539, + [1540] = 1530, + [1541] = 1539, + [1542] = 1530, + [1543] = 1539, + [1544] = 1532, + [1545] = 1532, + [1546] = 1529, + [1547] = 1532, + [1548] = 1539, + [1549] = 1549, [1550] = 1550, - [1551] = 1550, - [1552] = 1545, + [1551] = 1551, + [1552] = 1552, [1553] = 1550, - [1554] = 1545, - [1555] = 1545, - [1556] = 1550, - [1557] = 1550, - [1558] = 1545, - [1559] = 1545, - [1560] = 1545, - [1561] = 1550, - [1562] = 1550, - [1563] = 1330, - [1564] = 1550, - [1565] = 627, - [1566] = 1566, - [1567] = 625, - [1568] = 1545, - [1569] = 624, - [1570] = 1570, - [1571] = 626, - [1572] = 1329, - [1573] = 1573, - [1574] = 1574, - [1575] = 645, - [1576] = 1576, - [1577] = 650, + [1554] = 1550, + [1555] = 1552, + [1556] = 1552, + [1557] = 1557, + [1558] = 1552, + [1559] = 1550, + [1560] = 1551, + [1561] = 1557, + [1562] = 1557, + [1563] = 1557, + [1564] = 1551, + [1565] = 1551, + [1566] = 1551, + [1567] = 1551, + [1568] = 1557, + [1569] = 1557, + [1570] = 1551, + [1571] = 1557, + [1572] = 621, + [1573] = 1363, + [1574] = 1557, + [1575] = 1575, + [1576] = 1551, + [1577] = 624, [1578] = 1578, - [1579] = 651, - [1580] = 1580, - [1581] = 1581, - [1582] = 627, - [1583] = 1329, + [1579] = 627, + [1580] = 1364, + [1581] = 626, + [1582] = 1582, + [1583] = 1583, [1584] = 1584, - [1585] = 1330, - [1586] = 624, - [1587] = 625, - [1588] = 1581, - [1589] = 624, - [1590] = 1581, - [1591] = 1330, - [1592] = 627, - [1593] = 1593, - [1594] = 627, - [1595] = 625, - [1596] = 1329, - [1597] = 1597, - [1598] = 1581, - [1599] = 651, - [1600] = 1581, - [1601] = 626, - [1602] = 1602, - [1603] = 1581, - [1604] = 624, - [1605] = 1578, - [1606] = 1581, - [1607] = 1581, - [1608] = 1581, - [1609] = 1329, - [1610] = 1580, - [1611] = 625, - [1612] = 626, - [1613] = 650, - [1614] = 626, - [1615] = 645, - [1616] = 1573, - [1617] = 1330, - [1618] = 1581, - [1619] = 1619, - [1620] = 1576, - [1621] = 1619, + [1585] = 1585, + [1586] = 643, + [1587] = 644, + [1588] = 648, + [1589] = 1589, + [1590] = 1583, + [1591] = 1591, + [1592] = 624, + [1593] = 624, + [1594] = 621, + [1595] = 1363, + [1596] = 643, + [1597] = 644, + [1598] = 626, + [1599] = 621, + [1600] = 624, + [1601] = 621, + [1602] = 626, + [1603] = 1363, + [1604] = 1364, + [1605] = 1364, + [1606] = 1606, + [1607] = 627, + [1608] = 627, + [1609] = 1585, + [1610] = 1582, + [1611] = 627, + [1612] = 1612, + [1613] = 648, + [1614] = 1363, + [1615] = 1364, + [1616] = 1612, + [1617] = 1617, + [1618] = 1612, + [1619] = 1612, + [1620] = 1612, + [1621] = 1612, [1622] = 1622, - [1623] = 1623, - [1624] = 1623, - [1625] = 1584, - [1626] = 1597, - [1627] = 1622, - [1628] = 1622, - [1629] = 1622, - [1630] = 1602, + [1623] = 1612, + [1624] = 1612, + [1625] = 1612, + [1626] = 1612, + [1627] = 626, + [1628] = 1628, + [1629] = 1606, + [1630] = 1630, [1631] = 1622, - [1632] = 1622, - [1633] = 1622, + [1632] = 1630, + [1633] = 1630, [1634] = 1634, - [1635] = 1622, - [1636] = 1593, - [1637] = 1619, - [1638] = 1574, - [1639] = 1639, - [1640] = 1640, - [1641] = 1641, - [1642] = 1640, - [1643] = 1641, - [1644] = 1644, + [1635] = 1630, + [1636] = 1630, + [1637] = 1630, + [1638] = 1617, + [1639] = 1589, + [1640] = 1628, + [1641] = 1630, + [1642] = 1628, + [1643] = 1634, + [1644] = 1591, [1645] = 1645, - [1646] = 1646, - [1647] = 1646, + [1646] = 1584, + [1647] = 1630, [1648] = 1648, [1649] = 1649, [1650] = 1650, - [1651] = 1651, + [1651] = 1649, [1652] = 1652, - [1653] = 1653, + [1653] = 1652, [1654] = 1654, - [1655] = 1650, - [1656] = 1650, - [1657] = 1650, + [1655] = 1655, + [1656] = 1654, + [1657] = 1657, [1658] = 1658, - [1659] = 1650, - [1660] = 1650, - [1661] = 1650, - [1662] = 1650, - [1663] = 1663, + [1659] = 1659, + [1660] = 1660, + [1661] = 1657, + [1662] = 1662, + [1663] = 1657, [1664] = 1664, [1665] = 1665, [1666] = 1666, - [1667] = 1667, - [1668] = 1668, - [1669] = 1667, - [1670] = 1648, - [1671] = 1663, - [1672] = 1666, - [1673] = 1653, - [1674] = 1664, - [1675] = 1667, - [1676] = 1665, - [1677] = 1668, - [1678] = 1665, - [1679] = 1667, - [1680] = 1654, - [1681] = 1666, - [1682] = 1667, - [1683] = 1665, - [1684] = 1668, - [1685] = 1685, - [1686] = 1666, - [1687] = 1687, - [1688] = 1668, - [1689] = 1667, - [1690] = 1668, - [1691] = 1666, - [1692] = 1667, - [1693] = 1665, - [1694] = 1658, - [1695] = 1668, - [1696] = 1666, - [1697] = 1697, - [1698] = 1667, - [1699] = 1665, - [1700] = 1668, - [1701] = 1668, - [1702] = 1666, - [1703] = 1667, - [1704] = 1651, - [1705] = 1705, - [1706] = 1666, - [1707] = 1705, - [1708] = 1666, - [1709] = 1705, - [1710] = 1649, - [1711] = 1652, - [1712] = 1705, - [1713] = 1705, - [1714] = 1705, - [1715] = 1705, - [1716] = 1705, - [1717] = 1665, - [1718] = 1665, - [1719] = 1663, - [1720] = 1720, - [1721] = 1648, - [1722] = 1649, - [1723] = 1649, - [1724] = 1724, - [1725] = 1658, - [1726] = 1651, - [1727] = 1653, - [1728] = 1652, - [1729] = 1664, - [1730] = 1654, - [1731] = 1653, - [1732] = 1658, - [1733] = 1724, - [1734] = 1734, - [1735] = 1663, - [1736] = 1651, - [1737] = 1652, - [1738] = 1664, - [1739] = 1648, - [1740] = 1654, - [1741] = 1663, - [1742] = 1652, - [1743] = 1664, + [1667] = 1657, + [1668] = 1657, + [1669] = 1657, + [1670] = 1657, + [1671] = 1671, + [1672] = 1657, + [1673] = 1673, + [1674] = 1674, + [1675] = 1675, + [1676] = 1676, + [1677] = 1677, + [1678] = 1678, + [1679] = 1678, + [1680] = 1675, + [1681] = 1676, + [1682] = 1677, + [1683] = 1658, + [1684] = 1677, + [1685] = 1675, + [1686] = 1678, + [1687] = 1675, + [1688] = 1678, + [1689] = 1676, + [1690] = 1660, + [1691] = 1677, + [1692] = 1671, + [1693] = 1677, + [1694] = 1678, + [1695] = 1675, + [1696] = 1676, + [1697] = 1677, + [1698] = 1676, + [1699] = 1677, + [1700] = 1700, + [1701] = 1675, + [1702] = 1676, + [1703] = 1676, + [1704] = 1664, + [1705] = 1700, + [1706] = 1706, + [1707] = 1707, + [1708] = 1678, + [1709] = 1700, + [1710] = 1665, + [1711] = 1675, + [1712] = 1700, + [1713] = 1666, + [1714] = 1676, + [1715] = 1700, + [1716] = 1678, + [1717] = 1673, + [1718] = 1700, + [1719] = 1659, + [1720] = 1700, + [1721] = 1677, + [1722] = 1700, + [1723] = 1675, + [1724] = 1677, + [1725] = 1678, + [1726] = 1662, + [1727] = 1678, + [1728] = 1662, + [1729] = 1671, + [1730] = 1730, + [1731] = 1731, + [1732] = 1673, + [1733] = 1659, + [1734] = 1659, + [1735] = 1673, + [1736] = 1662, + [1737] = 1737, + [1738] = 1658, + [1739] = 1660, + [1740] = 1664, + [1741] = 1665, + [1742] = 1658, + [1743] = 1660, [1744] = 1664, - [1745] = 1658, - [1746] = 1746, - [1747] = 1747, - [1748] = 1649, - [1749] = 1654, - [1750] = 1654, - [1751] = 1648, - [1752] = 1653, - [1753] = 1663, - [1754] = 1649, - [1755] = 1648, - [1756] = 1724, - [1757] = 1653, - [1758] = 1663, - [1759] = 1648, - [1760] = 1658, - [1761] = 1651, - [1762] = 1724, - [1763] = 1658, - [1764] = 1652, - [1765] = 1664, - [1766] = 1654, + [1745] = 1665, + [1746] = 1666, + [1747] = 1737, + [1748] = 1666, + [1749] = 1671, + [1750] = 1671, + [1751] = 1666, + [1752] = 1658, + [1753] = 1658, + [1754] = 1754, + [1755] = 1671, + [1756] = 1659, + [1757] = 1662, + [1758] = 1737, + [1759] = 1658, + [1760] = 1760, + [1761] = 1659, + [1762] = 1660, + [1763] = 1671, + [1764] = 1664, + [1765] = 1665, + [1766] = 1766, [1767] = 1767, - [1768] = 1651, - [1769] = 1649, + [1768] = 1662, + [1769] = 1659, [1770] = 1770, - [1771] = 1651, - [1772] = 1772, + [1771] = 1660, + [1772] = 1737, [1773] = 1773, - [1774] = 1652, - [1775] = 1775, - [1776] = 1653, - [1777] = 1777, + [1774] = 1664, + [1775] = 1662, + [1776] = 1665, + [1777] = 1666, [1778] = 1778, - [1779] = 1779, - [1780] = 1777, - [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1779, - [1785] = 1773, - [1786] = 1777, - [1787] = 1746, - [1788] = 1663, - [1789] = 1789, - [1790] = 1648, - [1791] = 1791, - [1792] = 1777, - [1793] = 1734, - [1794] = 1651, - [1795] = 1652, - [1796] = 1664, - [1797] = 1654, - [1798] = 1779, + [1779] = 1660, + [1780] = 1664, + [1781] = 1673, + [1782] = 1665, + [1783] = 1673, + [1784] = 1673, + [1785] = 1666, + [1786] = 1786, + [1787] = 1662, + [1788] = 1788, + [1789] = 1786, + [1790] = 1754, + [1791] = 1770, + [1792] = 1792, + [1793] = 1666, + [1794] = 1786, + [1795] = 1795, + [1796] = 1796, + [1797] = 1658, + [1798] = 1754, [1799] = 1799, - [1800] = 1777, + [1800] = 1673, [1801] = 1801, - [1802] = 1782, - [1803] = 1777, - [1804] = 1804, - [1805] = 1805, - [1806] = 1746, - [1807] = 1649, - [1808] = 1658, - [1809] = 1777, - [1810] = 1653, - [1811] = 1777, - [1812] = 1777, - [1813] = 1777, - [1814] = 1814, - [1815] = 1746, - [1816] = 1816, - [1817] = 1817, + [1802] = 1786, + [1803] = 1803, + [1804] = 1795, + [1805] = 1786, + [1806] = 1806, + [1807] = 1786, + [1808] = 1754, + [1809] = 1809, + [1810] = 1786, + [1811] = 1799, + [1812] = 1812, + [1813] = 1799, + [1814] = 1665, + [1815] = 1730, + [1816] = 1664, + [1817] = 1803, [1818] = 1818, - [1819] = 1817, - [1820] = 1814, - [1821] = 1782, - [1822] = 1814, - [1823] = 1823, + [1819] = 1671, + [1820] = 1803, + [1821] = 1821, + [1822] = 1822, + [1823] = 1786, [1824] = 1824, - [1825] = 1825, + [1825] = 1786, [1826] = 1826, - [1827] = 1827, - [1828] = 1767, + [1827] = 1659, + [1828] = 1795, [1829] = 1829, - [1830] = 1747, - [1831] = 1831, - [1832] = 1832, - [1833] = 1829, - [1834] = 1772, - [1835] = 1772, - [1836] = 1829, - [1837] = 1791, + [1830] = 1660, + [1831] = 1824, + [1832] = 1786, + [1833] = 1833, + [1834] = 1834, + [1835] = 1778, + [1836] = 1836, + [1837] = 1778, [1838] = 1838, - [1839] = 1839, + [1839] = 1773, [1840] = 1840, - [1841] = 1841, - [1842] = 1842, - [1843] = 1840, - [1844] = 1747, + [1841] = 1773, + [1842] = 1836, + [1843] = 1778, + [1844] = 1836, [1845] = 1845, - [1846] = 1842, - [1847] = 1847, + [1846] = 1822, + [1847] = 1836, [1848] = 1848, - [1849] = 1849, - [1850] = 1826, - [1851] = 1848, - [1852] = 1824, - [1853] = 1791, - [1854] = 1849, - [1855] = 1829, - [1856] = 1829, - [1857] = 1734, - [1858] = 1838, - [1859] = 1838, - [1860] = 1829, - [1861] = 1772, - [1862] = 1734, - [1863] = 1767, - [1864] = 1767, - [1865] = 1865, - [1866] = 1866, - [1867] = 1848, - [1868] = 1829, - [1869] = 1829, - [1870] = 1747, - [1871] = 1840, - [1872] = 1824, - [1873] = 1791, - [1874] = 1772, - [1875] = 1875, + [1849] = 1838, + [1850] = 1760, + [1851] = 1836, + [1852] = 1836, + [1853] = 1760, + [1854] = 1854, + [1855] = 1855, + [1856] = 1848, + [1857] = 1857, + [1858] = 1836, + [1859] = 1730, + [1860] = 1730, + [1861] = 1760, + [1862] = 1862, + [1863] = 1822, + [1864] = 1773, + [1865] = 1833, + [1866] = 1854, + [1867] = 1867, + [1868] = 1868, + [1869] = 1869, + [1870] = 1868, + [1871] = 1857, + [1872] = 1872, + [1873] = 1855, + [1874] = 1874, + [1875] = 1822, [1876] = 1876, - [1877] = 1877, - [1878] = 1878, - [1879] = 1879, - [1880] = 1880, + [1877] = 1833, + [1878] = 1848, + [1879] = 1874, + [1880] = 1869, [1881] = 1881, [1882] = 1882, - [1883] = 1883, - [1884] = 1878, - [1885] = 1881, + [1883] = 1874, + [1884] = 1838, + [1885] = 1836, [1886] = 1886, [1887] = 1887, [1888] = 1888, [1889] = 1889, - [1890] = 1574, + [1890] = 1766, [1891] = 1891, [1892] = 1892, [1893] = 1893, - [1894] = 1888, + [1894] = 1894, [1895] = 1895, - [1896] = 1789, - [1897] = 1897, - [1898] = 1770, + [1896] = 1896, + [1897] = 1788, + [1898] = 1898, [1899] = 1899, [1900] = 1900, - [1901] = 1901, - [1902] = 1902, + [1901] = 1888, + [1902] = 1812, [1903] = 1903, [1904] = 1904, - [1905] = 1832, - [1906] = 1875, - [1907] = 1892, - [1908] = 1878, + [1905] = 1905, + [1906] = 1892, + [1907] = 1898, + [1908] = 1908, [1909] = 1909, - [1910] = 1839, - [1911] = 1576, + [1910] = 1910, + [1911] = 1766, [1912] = 1912, - [1913] = 1773, - [1914] = 1895, + [1913] = 1770, + [1914] = 1899, [1915] = 1915, - [1916] = 1916, - [1917] = 1917, + [1916] = 1912, + [1917] = 1905, [1918] = 1918, - [1919] = 1832, - [1920] = 1903, - [1921] = 1921, - [1922] = 1922, - [1923] = 1773, - [1924] = 1924, - [1925] = 1747, - [1926] = 1921, - [1927] = 1770, - [1928] = 1928, - [1929] = 1929, - [1930] = 1876, - [1931] = 1895, - [1932] = 1912, - [1933] = 1879, + [1919] = 1812, + [1920] = 1904, + [1921] = 1770, + [1922] = 1918, + [1923] = 1923, + [1924] = 1876, + [1925] = 1925, + [1926] = 1760, + [1927] = 1927, + [1928] = 1589, + [1929] = 1876, + [1930] = 1930, + [1931] = 1931, + [1932] = 1932, + [1933] = 1933, [1934] = 1934, - [1935] = 1928, - [1936] = 1936, - [1937] = 1912, - [1938] = 1773, - [1939] = 1921, + [1935] = 1918, + [1936] = 1887, + [1937] = 1937, + [1938] = 1933, + [1939] = 1773, [1940] = 1940, - [1941] = 1839, - [1942] = 1875, - [1943] = 1929, - [1944] = 1944, - [1945] = 1895, - [1946] = 1946, - [1947] = 1818, - [1948] = 1948, - [1949] = 1818, - [1950] = 1880, - [1951] = 1951, + [1941] = 1941, + [1942] = 1896, + [1943] = 1943, + [1944] = 1900, + [1945] = 1915, + [1946] = 1905, + [1947] = 1887, + [1948] = 1770, + [1949] = 1949, + [1950] = 1903, + [1951] = 1766, [1952] = 1952, - [1953] = 1892, - [1954] = 1882, - [1955] = 1929, + [1953] = 1953, + [1954] = 1912, + [1955] = 1910, [1956] = 1956, - [1957] = 1888, - [1958] = 1958, + [1957] = 1908, + [1958] = 1876, [1959] = 1959, - [1960] = 1960, - [1961] = 1961, - [1962] = 1901, + [1960] = 1889, + [1961] = 1899, + [1962] = 1962, [1963] = 1963, [1964] = 1964, - [1965] = 1818, - [1966] = 1961, - [1967] = 1883, - [1968] = 1882, - [1969] = 1936, + [1965] = 1892, + [1966] = 1893, + [1967] = 1967, + [1968] = 1778, + [1969] = 1969, [1970] = 1970, - [1971] = 1901, - [1972] = 1839, - [1973] = 1922, - [1974] = 1879, - [1975] = 1958, - [1976] = 1832, - [1977] = 1956, - [1978] = 1978, + [1971] = 1889, + [1972] = 1893, + [1973] = 1915, + [1974] = 1898, + [1975] = 1872, + [1976] = 1812, + [1977] = 1977, + [1978] = 1872, [1979] = 1979, - [1980] = 1767, - [1981] = 1909, - [1982] = 1770, + [1980] = 1980, + [1981] = 1872, + [1982] = 1918, [1983] = 1983, - [1984] = 1964, + [1984] = 1984, [1985] = 1985, - [1986] = 1986, - [1987] = 1883, + [1986] = 1934, + [1987] = 1941, [1988] = 1988, - [1989] = 1989, - [1990] = 1989, + [1989] = 1888, + [1990] = 1990, [1991] = 1991, - [1992] = 1989, - [1993] = 1993, + [1992] = 1932, + [1993] = 1584, [1994] = 1994, - [1995] = 1995, - [1996] = 1881, - [1997] = 1997, + [1995] = 1988, + [1996] = 1996, + [1997] = 1933, [1998] = 1998, - [1999] = 1999, - [2000] = 1934, - [2001] = 2001, - [2002] = 1989, - [2003] = 2003, - [2004] = 1964, - [2005] = 2005, - [2006] = 1989, - [2007] = 2007, - [2008] = 1840, - [2009] = 1909, - [2010] = 1956, - [2011] = 1961, - [2012] = 2012, + [1999] = 1896, + [2000] = 2000, + [2001] = 1900, + [2002] = 1933, + [2003] = 1896, + [2004] = 1900, + [2005] = 1984, + [2006] = 1909, + [2007] = 1930, + [2008] = 1905, + [2009] = 1953, + [2010] = 1923, + [2011] = 1991, + [2012] = 1899, [2013] = 2013, - [2014] = 2014, - [2015] = 2015, - [2016] = 2016, - [2017] = 1998, + [2014] = 1956, + [2015] = 1888, + [2016] = 1998, + [2017] = 2017, [2018] = 2018, - [2019] = 1921, + [2019] = 2000, [2020] = 2020, - [2021] = 2021, - [2022] = 2022, - [2023] = 2023, - [2024] = 1818, - [2025] = 1887, - [2026] = 1909, + [2021] = 1909, + [2022] = 1998, + [2023] = 2000, + [2024] = 1930, + [2025] = 1953, + [2026] = 2026, [2027] = 2027, - [2028] = 1970, - [2029] = 1989, + [2028] = 2013, + [2029] = 2029, [2030] = 2030, [2031] = 2031, - [2032] = 1887, + [2032] = 2032, [2033] = 2033, - [2034] = 2016, - [2035] = 1989, - [2036] = 2027, - [2037] = 2013, - [2038] = 2038, + [2034] = 2034, + [2035] = 1622, + [2036] = 2020, + [2037] = 2037, + [2038] = 1963, [2039] = 2039, - [2040] = 2040, + [2040] = 2013, [2041] = 2041, - [2042] = 2031, + [2042] = 2020, [2043] = 2043, [2044] = 2044, [2045] = 2045, - [2046] = 1922, - [2047] = 1978, - [2048] = 1978, - [2049] = 1944, - [2050] = 1918, - [2051] = 1944, - [2052] = 2005, - [2053] = 1593, - [2054] = 1934, - [2055] = 2014, - [2056] = 1964, - [2057] = 1999, - [2058] = 2031, + [2046] = 2046, + [2047] = 2047, + [2048] = 2048, + [2049] = 2049, + [2050] = 2050, + [2051] = 2018, + [2052] = 2033, + [2053] = 2053, + [2054] = 2054, + [2055] = 2020, + [2056] = 2056, + [2057] = 1991, + [2058] = 2058, [2059] = 2059, - [2060] = 2022, - [2061] = 2031, + [2060] = 2060, + [2061] = 2061, [2062] = 2062, - [2063] = 1944, - [2064] = 1602, - [2065] = 2005, - [2066] = 2014, - [2067] = 1887, - [2068] = 1597, - [2069] = 2069, + [2063] = 1979, + [2064] = 2033, + [2065] = 1617, + [2066] = 2066, + [2067] = 2067, + [2068] = 1908, + [2069] = 1606, [2070] = 2070, - [2071] = 1989, - [2072] = 2072, - [2073] = 1879, - [2074] = 1922, - [2075] = 2072, - [2076] = 1889, - [2077] = 2077, - [2078] = 1918, - [2079] = 2023, - [2080] = 1876, - [2081] = 1956, - [2082] = 1961, - [2083] = 1876, - [2084] = 1883, - [2085] = 1881, + [2071] = 2020, + [2072] = 1591, + [2073] = 2073, + [2074] = 1812, + [2075] = 2075, + [2076] = 1934, + [2077] = 2020, + [2078] = 2078, + [2079] = 2079, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 2083, + [2084] = 2020, + [2085] = 1848, [2086] = 2020, - [2087] = 1918, - [2088] = 1584, - [2089] = 2089, - [2090] = 1978, - [2091] = 2091, - [2092] = 2092, - [2093] = 2093, - [2094] = 2072, - [2095] = 1924, + [2087] = 1934, + [2088] = 1941, + [2089] = 1988, + [2090] = 1923, + [2091] = 1991, + [2092] = 1956, + [2093] = 1908, + [2094] = 2037, + [2095] = 2017, [2096] = 2096, - [2097] = 2097, - [2098] = 2098, - [2099] = 1901, - [2100] = 2100, - [2101] = 1934, - [2102] = 2102, - [2103] = 2102, + [2097] = 2079, + [2098] = 2096, + [2099] = 2099, + [2100] = 1956, + [2101] = 2054, + [2102] = 1909, + [2103] = 1930, [2104] = 2104, - [2105] = 2105, - [2106] = 2106, - [2107] = 2107, + [2105] = 1953, + [2106] = 2033, + [2107] = 1941, [2108] = 2108, - [2109] = 2109, - [2110] = 2110, - [2111] = 2111, - [2112] = 2112, + [2109] = 1988, + [2110] = 1923, + [2111] = 2044, + [2112] = 2030, [2113] = 2113, - [2114] = 2105, - [2115] = 2115, + [2114] = 2062, + [2115] = 2031, [2116] = 2116, [2117] = 2117, - [2118] = 2118, + [2118] = 2032, [2119] = 2119, - [2120] = 1993, - [2121] = 1998, - [2122] = 2018, - [2123] = 2044, + [2120] = 2120, + [2121] = 2121, + [2122] = 2081, + [2123] = 2073, [2124] = 2124, [2125] = 2125, - [2126] = 1983, - [2127] = 2093, - [2128] = 2097, - [2129] = 1995, - [2130] = 1997, - [2131] = 2007, - [2132] = 2132, - [2133] = 1994, - [2134] = 2012, - [2135] = 2033, - [2136] = 2059, - [2137] = 2077, - [2138] = 1986, - [2139] = 2030, - [2140] = 2089, - [2141] = 2062, - [2142] = 2043, - [2143] = 1985, - [2144] = 2001, - [2145] = 2102, - [2146] = 2015, - [2147] = 2147, - [2148] = 2118, - [2149] = 2119, - [2150] = 2150, - [2151] = 2151, - [2152] = 2152, - [2153] = 2125, + [2126] = 2027, + [2127] = 2029, + [2128] = 2030, + [2129] = 2078, + [2130] = 2079, + [2131] = 2116, + [2132] = 2083, + [2133] = 2048, + [2134] = 2134, + [2135] = 2041, + [2136] = 2119, + [2137] = 2120, + [2138] = 2104, + [2139] = 2041, + [2140] = 2043, + [2141] = 2031, + [2142] = 2124, + [2143] = 2066, + [2144] = 2124, + [2145] = 2145, + [2146] = 2146, + [2147] = 2117, + [2148] = 2148, + [2149] = 2044, + [2150] = 2045, + [2151] = 2046, + [2152] = 2047, + [2153] = 2153, [2154] = 2154, - [2155] = 1993, - [2156] = 1998, - [2157] = 2018, - [2158] = 2044, - [2159] = 1988, + [2155] = 2155, + [2156] = 2156, + [2157] = 2157, + [2158] = 2158, + [2159] = 2159, [2160] = 2160, - [2161] = 2161, - [2162] = 2162, - [2163] = 2118, + [2161] = 2048, + [2162] = 2049, + [2163] = 2119, [2164] = 2119, - [2165] = 1983, - [2166] = 2093, - [2167] = 2097, - [2168] = 1995, - [2169] = 1997, - [2170] = 2125, - [2171] = 2007, - [2172] = 2100, + [2165] = 2120, + [2166] = 2082, + [2167] = 2167, + [2168] = 2168, + [2169] = 2169, + [2170] = 2049, + [2171] = 2171, + [2172] = 2058, [2173] = 2173, - [2174] = 2174, + [2174] = 2059, [2175] = 2175, - [2176] = 2012, - [2177] = 2033, - [2178] = 2059, - [2179] = 2077, - [2180] = 1986, - [2181] = 2030, - [2182] = 2089, - [2183] = 2062, - [2184] = 2043, - [2185] = 1985, - [2186] = 2001, - [2187] = 2102, - [2188] = 2118, - [2189] = 2015, - [2190] = 2119, - [2191] = 1993, - [2192] = 2018, - [2193] = 2044, - [2194] = 2091, - [2195] = 1983, - [2196] = 2093, - [2197] = 2097, - [2198] = 1995, - [2199] = 1997, - [2200] = 2007, - [2201] = 1994, - [2202] = 2012, - [2203] = 2033, - [2204] = 2059, - [2205] = 2077, - [2206] = 1986, - [2207] = 2030, - [2208] = 2089, - [2209] = 2062, - [2210] = 2043, - [2211] = 1985, - [2212] = 2001, - [2213] = 2015, - [2214] = 2214, - [2215] = 2110, - [2216] = 2216, - [2217] = 2217, + [2176] = 2176, + [2177] = 2078, + [2178] = 2079, + [2179] = 2060, + [2180] = 2083, + [2181] = 2104, + [2182] = 2061, + [2183] = 2183, + [2184] = 2184, + [2185] = 2062, + [2186] = 2073, + [2187] = 2124, + [2188] = 2043, + [2189] = 2044, + [2190] = 2190, + [2191] = 2191, + [2192] = 2032, + [2193] = 2193, + [2194] = 2194, + [2195] = 2195, + [2196] = 2078, + [2197] = 2045, + [2198] = 2083, + [2199] = 2199, + [2200] = 2200, + [2201] = 2026, + [2202] = 2104, + [2203] = 2075, + [2204] = 2026, + [2205] = 2046, + [2206] = 2027, + [2207] = 2029, + [2208] = 2030, + [2209] = 2031, + [2210] = 2047, + [2211] = 2032, + [2212] = 2058, + [2213] = 2026, + [2214] = 2059, + [2215] = 2041, + [2216] = 2043, + [2217] = 2067, [2218] = 2218, - [2219] = 2104, - [2220] = 2220, - [2221] = 2221, - [2222] = 2222, - [2223] = 2223, - [2224] = 2224, - [2225] = 2038, - [2226] = 2045, - [2227] = 2218, - [2228] = 2107, - [2229] = 2125, - [2230] = 2230, - [2231] = 1994, - [2232] = 2232, - [2233] = 2233, - [2234] = 2234, - [2235] = 2235, + [2219] = 2060, + [2220] = 2045, + [2221] = 2046, + [2222] = 2047, + [2223] = 2027, + [2224] = 2029, + [2225] = 2048, + [2226] = 2049, + [2227] = 2227, + [2228] = 2058, + [2229] = 2059, + [2230] = 2060, + [2231] = 2061, + [2232] = 2062, + [2233] = 2073, + [2234] = 2191, + [2235] = 2171, [2236] = 2236, - [2237] = 2237, - [2238] = 2238, - [2239] = 2239, + [2237] = 2061, + [2238] = 2125, + [2239] = 2120, [2240] = 2240, [2241] = 2241, - [2242] = 2232, - [2243] = 1960, - [2244] = 1915, - [2245] = 2233, - [2246] = 1951, - [2247] = 986, + [2242] = 2242, + [2243] = 2243, + [2244] = 2244, + [2245] = 2245, + [2246] = 2246, + [2247] = 2244, [2248] = 2248, - [2249] = 2249, + [2249] = 1008, [2250] = 2250, [2251] = 2251, - [2252] = 2252, - [2253] = 2236, - [2254] = 2150, + [2252] = 2246, + [2253] = 2253, + [2254] = 2254, [2255] = 2255, [2256] = 2256, - [2257] = 2257, - [2258] = 2258, + [2257] = 2242, + [2258] = 2156, [2259] = 2259, [2260] = 2260, [2261] = 2261, [2262] = 2262, - [2263] = 2263, - [2264] = 2264, + [2263] = 2254, + [2264] = 1589, [2265] = 2265, [2266] = 2266, - [2267] = 1893, - [2268] = 2240, + [2267] = 2267, + [2268] = 2268, [2269] = 2269, [2270] = 2270, [2271] = 2271, - [2272] = 1979, - [2273] = 2273, - [2274] = 2113, + [2272] = 2255, + [2273] = 2256, + [2274] = 2274, [2275] = 2275, - [2276] = 2234, - [2277] = 1959, + [2276] = 2276, + [2277] = 2277, [2278] = 2278, - [2279] = 2237, + [2279] = 2279, [2280] = 2280, - [2281] = 976, - [2282] = 2240, + [2281] = 2281, + [2282] = 2282, [2283] = 2283, - [2284] = 2234, - [2285] = 2241, - [2286] = 2232, - [2287] = 2280, - [2288] = 2233, - [2289] = 2283, - [2290] = 2248, - [2291] = 1889, - [2292] = 2250, - [2293] = 2293, - [2294] = 2251, - [2295] = 2252, - [2296] = 2296, - [2297] = 2236, - [2298] = 2298, - [2299] = 1891, - [2300] = 2300, - [2301] = 2301, - [2302] = 2302, - [2303] = 2258, - [2304] = 2260, - [2305] = 2150, - [2306] = 2261, - [2307] = 2307, - [2308] = 2262, - [2309] = 2263, - [2310] = 2257, - [2311] = 2230, - [2312] = 2175, - [2313] = 2106, - [2314] = 2264, - [2315] = 1970, - [2316] = 2273, - [2317] = 2317, - [2318] = 2238, - [2319] = 2270, - [2320] = 2320, - [2321] = 2321, - [2322] = 2273, + [2284] = 1949, + [2285] = 1894, + [2286] = 2276, + [2287] = 1925, + [2288] = 2259, + [2289] = 2260, + [2290] = 1984, + [2291] = 2291, + [2292] = 2292, + [2293] = 2248, + [2294] = 2294, + [2295] = 2246, + [2296] = 2242, + [2297] = 2261, + [2298] = 1584, + [2299] = 2242, + [2300] = 2274, + [2301] = 2259, + [2302] = 2260, + [2303] = 2303, + [2304] = 2261, + [2305] = 2236, + [2306] = 2266, + [2307] = 2271, + [2308] = 2267, + [2309] = 2303, + [2310] = 2268, + [2311] = 2269, + [2312] = 2271, + [2313] = 1584, + [2314] = 989, + [2315] = 2315, + [2316] = 2316, + [2317] = 2259, + [2318] = 2260, + [2319] = 2278, + [2320] = 2261, + [2321] = 2279, + [2322] = 2280, [2323] = 2323, - [2324] = 2234, - [2325] = 2239, - [2326] = 2326, - [2327] = 2237, - [2328] = 2328, - [2329] = 2329, - [2330] = 2240, - [2331] = 2258, - [2332] = 2241, - [2333] = 2232, - [2334] = 2334, - [2335] = 2233, - [2336] = 2248, - [2337] = 2248, - [2338] = 2250, - [2339] = 2174, - [2340] = 2251, - [2341] = 2252, - [2342] = 2250, - [2343] = 2328, - [2344] = 2344, - [2345] = 2334, - [2346] = 2346, - [2347] = 2320, - [2348] = 2348, + [2324] = 2281, + [2325] = 2275, + [2326] = 2282, + [2327] = 2327, + [2328] = 2316, + [2329] = 1984, + [2330] = 2330, + [2331] = 2276, + [2332] = 2332, + [2333] = 2333, + [2334] = 2248, + [2335] = 2335, + [2336] = 2246, + [2337] = 2145, + [2338] = 2327, + [2339] = 2242, + [2340] = 2259, + [2341] = 2260, + [2342] = 2261, + [2343] = 2146, + [2344] = 2266, + [2345] = 2267, + [2346] = 2268, + [2347] = 2269, + [2348] = 2155, [2349] = 2349, - [2350] = 2321, - [2351] = 2251, - [2352] = 2273, - [2353] = 2264, - [2354] = 2252, - [2355] = 2150, - [2356] = 2234, + [2350] = 2350, + [2351] = 2333, + [2352] = 2294, + [2353] = 2254, + [2354] = 2236, + [2355] = 2279, + [2356] = 2248, [2357] = 2357, - [2358] = 2358, - [2359] = 2240, - [2360] = 2258, - [2361] = 2241, - [2362] = 2362, - [2363] = 2233, - [2364] = 2248, - [2365] = 2260, - [2366] = 2250, + [2358] = 2266, + [2359] = 2246, + [2360] = 2267, + [2361] = 2242, + [2362] = 2259, + [2363] = 2260, + [2364] = 2268, + [2365] = 2269, + [2366] = 2261, [2367] = 2367, - [2368] = 2232, - [2369] = 2252, - [2370] = 2261, - [2371] = 2161, - [2372] = 2280, - [2373] = 2262, - [2374] = 2263, - [2375] = 2162, - [2376] = 2248, - [2377] = 2175, - [2378] = 2273, - [2379] = 2234, - [2380] = 2259, - [2381] = 2240, - [2382] = 2250, - [2383] = 2241, - [2384] = 2232, - [2385] = 2251, - [2386] = 2233, - [2387] = 2252, - [2388] = 2248, - [2389] = 2367, - [2390] = 2250, - [2391] = 2264, - [2392] = 2251, - [2393] = 2252, - [2394] = 2230, - [2395] = 2175, - [2396] = 2302, - [2397] = 2346, - [2398] = 1584, - [2399] = 2362, - [2400] = 2400, - [2401] = 2273, - [2402] = 2402, - [2403] = 2234, - [2404] = 2241, - [2405] = 2232, - [2406] = 2270, - [2407] = 2240, - [2408] = 2241, - [2409] = 2232, - [2410] = 2410, - [2411] = 2233, - [2412] = 2248, - [2413] = 2250, - [2414] = 2106, - [2415] = 2251, - [2416] = 2252, - [2417] = 2233, - [2418] = 2237, - [2419] = 2275, - [2420] = 2317, - [2421] = 2233, - [2422] = 2251, - [2423] = 2252, + [2368] = 2153, + [2369] = 2266, + [2370] = 2267, + [2371] = 1963, + [2372] = 2268, + [2373] = 2269, + [2374] = 2280, + [2375] = 2303, + [2376] = 2332, + [2377] = 2266, + [2378] = 2255, + [2379] = 2379, + [2380] = 1985, + [2381] = 2256, + [2382] = 1963, + [2383] = 2267, + [2384] = 2248, + [2385] = 2246, + [2386] = 2246, + [2387] = 1990, + [2388] = 2388, + [2389] = 2389, + [2390] = 2242, + [2391] = 2281, + [2392] = 2259, + [2393] = 2260, + [2394] = 1940, + [2395] = 2395, + [2396] = 2261, + [2397] = 2315, + [2398] = 2266, + [2399] = 1931, + [2400] = 2267, + [2401] = 2248, + [2402] = 2268, + [2403] = 2269, + [2404] = 1891, + [2405] = 2251, + [2406] = 2406, + [2407] = 2282, + [2408] = 2271, + [2409] = 2248, + [2410] = 2246, + [2411] = 2242, + [2412] = 2259, + [2413] = 2260, + [2414] = 2414, + [2415] = 1984, + [2416] = 2261, + [2417] = 2388, + [2418] = 2266, + [2419] = 2419, + [2420] = 2267, + [2421] = 2268, + [2422] = 2269, + [2423] = 2423, [2424] = 2424, - [2425] = 2296, - [2426] = 2233, - [2427] = 2251, - [2428] = 2252, - [2429] = 1576, - [2430] = 2329, - [2431] = 2431, - [2432] = 2432, - [2433] = 2433, - [2434] = 2346, - [2435] = 2435, - [2436] = 2436, + [2425] = 2261, + [2426] = 2268, + [2427] = 2269, + [2428] = 2236, + [2429] = 2294, + [2430] = 2430, + [2431] = 2261, + [2432] = 2268, + [2433] = 2269, + [2434] = 2434, + [2435] = 2268, + [2436] = 2269, [2437] = 2437, - [2438] = 2249, - [2439] = 2437, + [2438] = 2419, + [2439] = 2244, [2440] = 2440, - [2441] = 2400, - [2442] = 2260, - [2443] = 2271, - [2444] = 1889, - [2445] = 2235, - [2446] = 2261, - [2447] = 2265, - [2448] = 2301, - [2449] = 2402, - [2450] = 1889, - [2451] = 2270, - [2452] = 2262, - [2453] = 2437, - [2454] = 2400, - [2455] = 1948, - [2456] = 2273, - [2457] = 2263, - [2458] = 2221, - [2459] = 2270, - [2460] = 2222, - [2461] = 2234, - [2462] = 1970, - [2463] = 1576, - [2464] = 2237, - [2465] = 1574, - [2466] = 2238, - [2467] = 2239, - [2468] = 1970, - [2469] = 2431, - [2470] = 2432, - [2471] = 2334, - [2472] = 2236, - [2473] = 2240, + [2441] = 2424, + [2442] = 2434, + [2443] = 2330, + [2444] = 2444, + [2445] = 2278, + [2446] = 2367, + [2447] = 2240, + [2448] = 2250, + [2449] = 2449, + [2450] = 2243, + [2451] = 2349, + [2452] = 2452, + [2453] = 2449, + [2454] = 2452, + [2455] = 2146, + [2456] = 2248, + [2457] = 2434, + [2458] = 2444, + [2459] = 2279, + [2460] = 2145, + [2461] = 2280, + [2462] = 2148, + [2463] = 2167, + [2464] = 2464, + [2465] = 2278, + [2466] = 2281, + [2467] = 2154, + [2468] = 2282, + [2469] = 2146, + [2470] = 2155, + [2471] = 2406, + [2472] = 1617, + [2473] = 2276, [2474] = 2474, - [2475] = 1576, - [2476] = 2273, - [2477] = 2410, - [2478] = 2436, - [2479] = 2241, - [2480] = 2251, - [2481] = 2481, - [2482] = 2482, - [2483] = 2483, - [2484] = 2484, - [2485] = 2485, - [2486] = 2486, - [2487] = 1597, - [2488] = 618, + [2475] = 2292, + [2476] = 2476, + [2477] = 1584, + [2478] = 2478, + [2479] = 2335, + [2480] = 2480, + [2481] = 2406, + [2482] = 2184, + [2483] = 1963, + [2484] = 2395, + [2485] = 2444, + [2486] = 2379, + [2487] = 2262, + [2488] = 2277, [2489] = 2489, [2490] = 2490, [2491] = 2491, - [2492] = 2492, - [2493] = 2493, + [2492] = 632, + [2493] = 1622, [2494] = 2494, [2495] = 2495, [2496] = 2496, [2497] = 2497, [2498] = 2498, [2499] = 2499, - [2500] = 2484, - [2501] = 2501, - [2502] = 2486, - [2503] = 2503, + [2500] = 2500, + [2501] = 2357, + [2502] = 2499, + [2503] = 636, [2504] = 2504, [2505] = 2505, - [2506] = 2483, + [2506] = 2506, [2507] = 2507, - [2508] = 2486, - [2509] = 2509, - [2510] = 2489, - [2511] = 2484, - [2512] = 2512, - [2513] = 2486, + [2508] = 2508, + [2509] = 2499, + [2510] = 1617, + [2511] = 2511, + [2512] = 2504, + [2513] = 2513, [2514] = 2514, [2515] = 2515, [2516] = 2516, - [2517] = 2489, - [2518] = 2323, - [2519] = 660, - [2520] = 2520, - [2521] = 2496, - [2522] = 2496, - [2523] = 2021, + [2517] = 2517, + [2518] = 2518, + [2519] = 2519, + [2520] = 2350, + [2521] = 2521, + [2522] = 2522, + [2523] = 2521, [2524] = 2524, - [2525] = 2482, + [2525] = 2508, [2526] = 2526, - [2527] = 2021, + [2527] = 2497, [2528] = 2528, - [2529] = 2507, - [2530] = 2530, - [2531] = 1602, - [2532] = 2532, - [2533] = 2533, + [2529] = 2529, + [2530] = 2053, + [2531] = 2496, + [2532] = 2500, + [2533] = 2529, [2534] = 2534, - [2535] = 2535, + [2535] = 2497, [2536] = 2536, - [2537] = 643, - [2538] = 2538, - [2539] = 2539, - [2540] = 2540, + [2537] = 2499, + [2538] = 2423, + [2539] = 1606, + [2540] = 2496, [2541] = 2541, - [2542] = 1593, - [2543] = 2543, - [2544] = 2503, - [2545] = 1584, - [2546] = 1597, - [2547] = 2547, + [2542] = 2542, + [2543] = 2504, + [2544] = 2544, + [2545] = 2545, + [2546] = 2546, + [2547] = 2053, [2548] = 2548, - [2549] = 2021, - [2550] = 2494, - [2551] = 2543, - [2552] = 2548, - [2553] = 2540, - [2554] = 2514, - [2555] = 2555, - [2556] = 2496, + [2549] = 628, + [2550] = 2550, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 2554, + [2555] = 639, + [2556] = 2556, [2557] = 2557, - [2558] = 1602, - [2559] = 2559, - [2560] = 656, - [2561] = 2561, - [2562] = 621, + [2558] = 642, + [2559] = 2515, + [2560] = 2560, + [2561] = 2521, + [2562] = 2529, [2563] = 2563, - [2564] = 2433, - [2565] = 1593, - [2566] = 2566, - [2567] = 2489, - [2568] = 2440, - [2569] = 2569, - [2570] = 2482, - [2571] = 2569, - [2572] = 2572, + [2564] = 1622, + [2565] = 2497, + [2566] = 2521, + [2567] = 2567, + [2568] = 2568, + [2569] = 2507, + [2570] = 2570, + [2571] = 2553, + [2572] = 2053, [2573] = 2573, - [2574] = 2507, - [2575] = 2575, - [2576] = 2515, - [2577] = 2569, - [2578] = 2497, + [2574] = 1591, + [2575] = 1591, + [2576] = 2500, + [2577] = 2577, + [2578] = 2578, [2579] = 2579, - [2580] = 2484, - [2581] = 2572, + [2580] = 2519, + [2581] = 2581, [2582] = 2582, - [2583] = 2583, - [2584] = 2584, - [2585] = 2585, - [2586] = 2586, - [2587] = 2587, + [2583] = 2494, + [2584] = 2554, + [2585] = 1606, + [2586] = 2556, + [2587] = 2526, [2588] = 2588, - [2589] = 2589, - [2590] = 2590, + [2589] = 2581, + [2590] = 2504, [2591] = 2591, [2592] = 2592, [2593] = 2593, [2594] = 2594, - [2595] = 2584, + [2595] = 2595, [2596] = 2596, [2597] = 2597, [2598] = 2598, - [2599] = 2584, - [2600] = 2590, - [2601] = 2591, - [2602] = 2589, - [2603] = 2598, - [2604] = 2582, + [2599] = 2596, + [2600] = 2600, + [2601] = 2601, + [2602] = 2602, + [2603] = 2603, + [2604] = 2603, [2605] = 2605, [2606] = 2606, - [2607] = 2584, + [2607] = 2607, [2608] = 2608, - [2609] = 2593, - [2610] = 2610, + [2609] = 2609, + [2610] = 2592, [2611] = 2611, - [2612] = 2612, - [2613] = 2613, - [2614] = 2592, + [2612] = 2607, + [2613] = 2600, + [2614] = 2603, [2615] = 2615, - [2616] = 2585, - [2617] = 2617, - [2618] = 2598, - [2619] = 2619, - [2620] = 2617, - [2621] = 2593, - [2622] = 2590, + [2616] = 2611, + [2617] = 2601, + [2618] = 2618, + [2619] = 2602, + [2620] = 2620, + [2621] = 2621, + [2622] = 2607, [2623] = 2623, - [2624] = 2608, + [2624] = 2621, [2625] = 2625, [2626] = 2626, - [2627] = 2627, - [2628] = 2612, - [2629] = 2596, - [2630] = 2598, - [2631] = 2631, - [2632] = 2596, + [2627] = 2605, + [2628] = 2606, + [2629] = 2629, + [2630] = 2601, + [2631] = 2607, + [2632] = 2605, [2633] = 2633, [2634] = 2634, [2635] = 2635, [2636] = 2636, - [2637] = 2637, - [2638] = 2585, - [2639] = 2597, - [2640] = 2598, - [2641] = 2589, - [2642] = 2588, - [2643] = 2643, - [2644] = 2596, - [2645] = 2585, - [2646] = 2598, - [2647] = 2589, - [2648] = 2648, - [2649] = 2610, - [2650] = 2585, - [2651] = 2651, - [2652] = 2597, - [2653] = 2590, - [2654] = 2654, - [2655] = 2615, - [2656] = 2637, - [2657] = 2592, - [2658] = 2658, - [2659] = 2589, - [2660] = 2593, - [2661] = 2591, - [2662] = 2662, - [2663] = 2623, - [2664] = 2648, - [2665] = 2596, - [2666] = 2592, - [2667] = 2667, - [2668] = 2597, + [2637] = 2609, + [2638] = 2638, + [2639] = 2607, + [2640] = 2626, + [2641] = 2600, + [2642] = 2642, + [2643] = 2592, + [2644] = 2636, + [2645] = 2645, + [2646] = 2611, + [2647] = 2647, + [2648] = 2636, + [2649] = 2607, + [2650] = 2650, + [2651] = 2600, + [2652] = 2606, + [2653] = 2594, + [2654] = 2603, + [2655] = 2625, + [2656] = 2656, + [2657] = 2611, + [2658] = 2597, + [2659] = 2592, + [2660] = 2602, + [2661] = 2594, + [2662] = 2596, + [2663] = 2603, + [2664] = 2664, + [2665] = 2601, + [2666] = 2666, + [2667] = 2598, + [2668] = 2609, [2669] = 2669, - [2670] = 2598, - [2671] = 2662, - [2672] = 2593, - [2673] = 2611, - [2674] = 2674, - [2675] = 2594, - [2676] = 2676, - [2677] = 2606, - [2678] = 2648, - [2679] = 2587, - [2680] = 2631, - [2681] = 2590, - [2682] = 2591, - [2683] = 2596, - [2684] = 2597, - [2685] = 2591, - [2686] = 2591, - [2687] = 2593, - [2688] = 2598, - [2689] = 2592, - [2690] = 2667, - [2691] = 2617, - [2692] = 2582, - [2693] = 2590, - [2694] = 2694, - [2695] = 2669, - [2696] = 2605, - [2697] = 2591, - [2698] = 2585, - [2699] = 2593, - [2700] = 2592, - [2701] = 2584, - [2702] = 2676, - [2703] = 2669, - [2704] = 2582, - [2705] = 2587, - [2706] = 2605, - [2707] = 2707, - [2708] = 2582, - [2709] = 2615, - [2710] = 2605, - [2711] = 2711, - [2712] = 2589, - [2713] = 2582, - [2714] = 2714, - [2715] = 2584, - [2716] = 2585, - [2717] = 2658, - [2718] = 2648, - [2719] = 2592, - [2720] = 2720, - [2721] = 2593, - [2722] = 2722, - [2723] = 2605, - [2724] = 2605, - [2725] = 2596, - [2726] = 2615, - [2727] = 2608, - [2728] = 2597, - [2729] = 2585, - [2730] = 2654, - [2731] = 2731, - [2732] = 2598, - [2733] = 2584, - [2734] = 2582, - [2735] = 2617, - [2736] = 2720, - [2737] = 2589, - [2738] = 2598, - [2739] = 2590, - [2740] = 2596, - [2741] = 2588, - [2742] = 2635, - [2743] = 2589, - [2744] = 2605, - [2745] = 2745, - [2746] = 2658, - [2747] = 2747, - [2748] = 2651, - [2749] = 2749, - [2750] = 2608, - [2751] = 2597, - [2752] = 2590, - [2753] = 2591, - [2754] = 2617, - [2755] = 2755, - [2756] = 2615, - [2757] = 2582, - [2758] = 2605, + [2670] = 2601, + [2671] = 2592, + [2672] = 2666, + [2673] = 2594, + [2674] = 2602, + [2675] = 2602, + [2676] = 2642, + [2677] = 2594, + [2678] = 2656, + [2679] = 2626, + [2680] = 2618, + [2681] = 2609, + [2682] = 2682, + [2683] = 2683, + [2684] = 2684, + [2685] = 2605, + [2686] = 2595, + [2687] = 2606, + [2688] = 2683, + [2689] = 2608, + [2690] = 2607, + [2691] = 2600, + [2692] = 2692, + [2693] = 2602, + [2694] = 2609, + [2695] = 2695, + [2696] = 2592, + [2697] = 2598, + [2698] = 2611, + [2699] = 2609, + [2700] = 2605, + [2701] = 2701, + [2702] = 2615, + [2703] = 2601, + [2704] = 2621, + [2705] = 2705, + [2706] = 2603, + [2707] = 2602, + [2708] = 2692, + [2709] = 2594, + [2710] = 2615, + [2711] = 2635, + [2712] = 2606, + [2713] = 2605, + [2714] = 2656, + [2715] = 2606, + [2716] = 2683, + [2717] = 2598, + [2718] = 2701, + [2719] = 2607, + [2720] = 2600, + [2721] = 2636, + [2722] = 2603, + [2723] = 2609, + [2724] = 2592, + [2725] = 2647, + [2726] = 2726, + [2727] = 2598, + [2728] = 2600, + [2729] = 2609, + [2730] = 2603, + [2731] = 2591, + [2732] = 2611, + [2733] = 2621, + [2734] = 2611, + [2735] = 2735, + [2736] = 2598, + [2737] = 2737, + [2738] = 2738, + [2739] = 2739, + [2740] = 2701, + [2741] = 2741, + [2742] = 2742, + [2743] = 2592, + [2744] = 2598, + [2745] = 2601, + [2746] = 2601, + [2747] = 2692, + [2748] = 2602, + [2749] = 2596, + [2750] = 2692, + [2751] = 2751, + [2752] = 2615, + [2753] = 2705, + [2754] = 2629, + [2755] = 2605, + [2756] = 2594, + [2757] = 2757, + [2758] = 2611, [2759] = 2759, - [2760] = 2707, - [2761] = 2658, - [2762] = 2762, - [2763] = 2584, - [2764] = 2597, - [2765] = 2636, - [2766] = 2731, - [2767] = 2767, - [2768] = 2613, - [2769] = 2634, - [2770] = 2749, - [2771] = 2588, - [2772] = 2674, - [2773] = 2749, - [2774] = 2648, - [2775] = 2592, - [2776] = 2707, + [2760] = 2606, + [2761] = 2605, + [2762] = 2684, + [2763] = 2626, + [2764] = 2638, + [2765] = 2765, + [2766] = 2607, + [2767] = 2615, + [2768] = 2768, + [2769] = 2606, + [2770] = 2770, + [2771] = 2771, + [2772] = 2600, + [2773] = 2607, + [2774] = 2593, + [2775] = 2620, + [2776] = 2598, + [2777] = 2742, + [2778] = 2741, + [2779] = 2664, + [2780] = 2692, + [2781] = 2759, + [2782] = 2664, + [2783] = 2682, + [2784] = 2594, + [2785] = 2636, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -5823,14 +5864,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(54); - if (lookahead == '\r') SKIP(51); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(154); + if (lookahead == '\r') SKIP(52); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(92); if (lookahead == '&') ADVANCE(96); if (lookahead == '(') ADVANCE(58); if (lookahead == ')') ADVANCE(59); - if (lookahead == '*') ADVANCE(62); + if (lookahead == '*') ADVANCE(70); if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(60); if (lookahead == '-') ADVANCE(82); @@ -5847,7 +5888,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(130); if (lookahead == ']') ADVANCE(77); if (lookahead == '^') ADVANCE(98); - if (lookahead == 'e') ADVANCE(152); if (lookahead == '{') ADVANCE(85); if (lookahead == '|') ADVANCE(84); if (lookahead == '}') ADVANCE(86); @@ -5856,12 +5896,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(51); + lookahead == 0xfeff) SKIP(52); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(155); + if (lookahead == '\n') ADVANCE(149); END_STATE(); case 2: if (lookahead == '\n') ADVANCE(127); @@ -5882,8 +5922,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 4: if (lookahead == '\r') SKIP(4); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(154); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(92); if (lookahead == '&') ADVANCE(96); if (lookahead == '(') ADVANCE(58); @@ -5901,7 +5941,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(110); if (lookahead == '@') ADVANCE(79); if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == '^') ADVANCE(98); if (lookahead == '{') ADVANCE(85); if (lookahead == '|') ADVANCE(84); @@ -5912,12 +5952,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(4); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); case 5: if (lookahead == '\r') SKIP(5); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(154); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(91); if (lookahead == '&') ADVANCE(95); if (lookahead == '(') ADVANCE(58); @@ -5936,7 +5976,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(111); if (lookahead == '@') ADVANCE(78); if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(77); if (lookahead == '^') ADVANCE(97); if (lookahead == '{') ADVANCE(85); @@ -5949,31 +5989,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(5); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); case 6: if (lookahead == '\r') SKIP(6); - if (lookahead == '#') ADVANCE(154); - if (lookahead == '%') ADVANCE(21); - if (lookahead == '&') ADVANCE(22); + if (lookahead == '#') ADVANCE(148); + if (lookahead == '%') ADVANCE(22); + if (lookahead == '&') ADVANCE(23); if (lookahead == '(') ADVANCE(58); if (lookahead == '*') ADVANCE(64); if (lookahead == '+') ADVANCE(88); if (lookahead == '-') ADVANCE(81); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '/') ADVANCE(17); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '/') ADVANCE(18); if (lookahead == '0') ADVANCE(136); if (lookahead == ':') ADVANCE(68); if (lookahead == ';') ADVANCE(55); - if (lookahead == '<') ADVANCE(18); + if (lookahead == '<') ADVANCE(19); if (lookahead == '=') ADVANCE(74); - if (lookahead == '>') ADVANCE(31); - if (lookahead == '@') ADVANCE(23); + if (lookahead == '>') ADVANCE(32); + if (lookahead == '@') ADVANCE(24); if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(24); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == '^') ADVANCE(25); if (lookahead == '{') ADVANCE(85); - if (lookahead == '|') ADVANCE(25); + if (lookahead == '|') ADVANCE(26); if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || @@ -5981,12 +6021,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(6); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); case 7: if (lookahead == '\r') SKIP(7); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(154); + if (lookahead == '#') ADVANCE(148); + if (lookahead == '(') ADVANCE(58); + if (lookahead == '*') ADVANCE(70); + if (lookahead == '+') ADVANCE(87); + if (lookahead == '-') ADVANCE(80); + if (lookahead == '.') ADVANCE(16); + if (lookahead == '0') ADVANCE(136); + if (lookahead == ':') ADVANCE(68); + if (lookahead == '[') ADVANCE(76); + if (lookahead == '\\') ADVANCE(11); + if (lookahead == '{') ADVANCE(85); + if (lookahead == '~') ADVANCE(101); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(7); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); + END_STATE(); + case 8: + if (lookahead == '\r') SKIP(8); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(92); if (lookahead == '&') ADVANCE(96); if (lookahead == '(') ADVANCE(58); @@ -6004,7 +6066,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(110); if (lookahead == '@') ADVANCE(79); if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(77); if (lookahead == '^') ADVANCE(98); if (lookahead == '|') ADVANCE(84); @@ -6013,13 +6075,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(7); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + lookahead == 0xfeff) SKIP(8); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); - case 8: - if (lookahead == '\r') SKIP(8); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(154); + case 9: + if (lookahead == '\r') SKIP(9); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(92); if (lookahead == '&') ADVANCE(96); if (lookahead == '(') ADVANCE(58); @@ -6037,7 +6099,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(110); if (lookahead == '@') ADVANCE(79); if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(77); if (lookahead == '^') ADVANCE(98); if (lookahead == '|') ADVANCE(84); @@ -6045,30 +6107,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(8); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + lookahead == 0xfeff) SKIP(9); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); - case 9: - if (lookahead == '\r') SKIP(9); - if (lookahead == '#') ADVANCE(154); - if (lookahead == '-') ADVANCE(30); + case 10: + if (lookahead == '\r') SKIP(10); + if (lookahead == '#') ADVANCE(148); + if (lookahead == '-') ADVANCE(31); if (lookahead == ':') ADVANCE(68); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(9); + lookahead == 0xfeff) SKIP(10); END_STATE(); - case 10: + case 11: if (lookahead == '\r') ADVANCE(1); if ((!eof && lookahead == 00) || - lookahead == '\n') ADVANCE(155); + lookahead == '\n') ADVANCE(149); END_STATE(); - case 11: - if (lookahead == '\r') SKIP(11); - if (lookahead == '!') ADVANCE(19); - if (lookahead == '#') ADVANCE(154); + case 12: + if (lookahead == '\r') SKIP(12); + if (lookahead == '!') ADVANCE(20); + if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(92); if (lookahead == '&') ADVANCE(96); if (lookahead == '(') ADVANCE(58); @@ -6086,7 +6148,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(110); if (lookahead == '@') ADVANCE(79); if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == '^') ADVANCE(98); if (lookahead == '{') ADVANCE(85); if (lookahead == '|') ADVANCE(84); @@ -6095,14 +6157,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(11); + lookahead == 0xfeff) SKIP(12); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); - case 12: - if (lookahead == '\r') SKIP(12); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(154); + case 13: + if (lookahead == '\r') SKIP(13); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(91); if (lookahead == '&') ADVANCE(95); if (lookahead == '(') ADVANCE(58); @@ -6121,7 +6183,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(111); if (lookahead == '@') ADVANCE(78); if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(77); if (lookahead == '^') ADVANCE(97); if (lookahead == '{') ADVANCE(85); @@ -6132,14 +6194,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(12); + lookahead == 0xfeff) SKIP(13); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); - case 13: - if (lookahead == '\r') SKIP(13); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(154); + case 14: + if (lookahead == '\r') SKIP(14); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(91); if (lookahead == '&') ADVANCE(95); if (lookahead == '(') ADVANCE(58); @@ -6157,7 +6219,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(111); if (lookahead == '@') ADVANCE(78); if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(77); if (lookahead == '^') ADVANCE(97); if (lookahead == '|') ADVANCE(83); @@ -6166,13 +6228,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(13); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + lookahead == 0xfeff) SKIP(14); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); - case 14: - if (lookahead == '\r') SKIP(14); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(154); + case 15: + if (lookahead == '\r') SKIP(15); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(91); if (lookahead == '&') ADVANCE(95); if (lookahead == '(') ADVANCE(58); @@ -6190,7 +6252,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(111); if (lookahead == '@') ADVANCE(78); if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(77); if (lookahead == '^') ADVANCE(97); if (lookahead == '|') ADVANCE(83); @@ -6199,47 +6261,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(14); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + lookahead == 0xfeff) SKIP(15); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); - case 15: - if (lookahead == '.') ADVANCE(16); + case 16: + if (lookahead == '.') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); END_STATE(); - case 16: + case 17: if (lookahead == '.') ADVANCE(126); END_STATE(); - case 17: + case 18: if (lookahead == '/') ADVANCE(27); if (lookahead == '=') ADVANCE(116); END_STATE(); - case 18: - if (lookahead == '<') ADVANCE(28); - END_STATE(); case 19: - if (lookahead == '=') ADVANCE(107); + if (lookahead == '<') ADVANCE(28); END_STATE(); case 20: if (lookahead == '=') ADVANCE(107); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); END_STATE(); case 21: - if (lookahead == '=') ADVANCE(119); + if (lookahead == '=') ADVANCE(107); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); END_STATE(); case 22: - if (lookahead == '=') ADVANCE(123); + if (lookahead == '=') ADVANCE(119); END_STATE(); case 23: - if (lookahead == '=') ADVANCE(117); + if (lookahead == '=') ADVANCE(123); END_STATE(); case 24: - if (lookahead == '=') ADVANCE(124); + if (lookahead == '=') ADVANCE(117); END_STATE(); case 25: - if (lookahead == '=') ADVANCE(125); + if (lookahead == '=') ADVANCE(124); END_STATE(); case 26: - if (lookahead == '=') ADVANCE(120); + if (lookahead == '=') ADVANCE(125); END_STATE(); case 27: if (lookahead == '=') ADVANCE(118); @@ -6251,67 +6310,65 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(121); END_STATE(); case 30: - if (lookahead == '>') ADVANCE(71); + if (lookahead == '=') ADVANCE(120); END_STATE(); case 31: - if (lookahead == '>') ADVANCE(29); + if (lookahead == '>') ADVANCE(71); END_STATE(); case 32: - if (lookahead == '_') ADVANCE(38); - if (lookahead == '0' || - lookahead == '1') ADVANCE(139); + if (lookahead == '>') ADVANCE(29); END_STATE(); case 33: if (lookahead == '_') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(140); + if (lookahead == '0' || + lookahead == '1') ADVANCE(139); END_STATE(); case 34: - if (lookahead == '_') ADVANCE(42); + if (lookahead == '_') ADVANCE(40); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(140); + END_STATE(); + case 35: + if (lookahead == '_') ADVANCE(43); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); END_STATE(); - case 35: - if (lookahead == '{') ADVANCE(50); - END_STATE(); case 36: - if (lookahead == '}') ADVANCE(127); - if (lookahead != 0) ADVANCE(36); + if (lookahead == '{') ADVANCE(51); END_STATE(); case 37: + if (lookahead == '}') ADVANCE(127); + if (lookahead != 0) ADVANCE(37); + END_STATE(); + case 38: if (lookahead == '+' || - lookahead == '-') ADVANCE(40); + lookahead == '-') ADVANCE(41); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); - case 38: + case 39: if (lookahead == '0' || lookahead == '1') ADVANCE(139); END_STATE(); - case 39: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(140); - END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(140); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(144); END_STATE(); case 42: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(127); END_STATE(); case 43: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); END_STATE(); case 44: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(42); END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || @@ -6339,19 +6396,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); END_STATE(); case 50: - if (lookahead != 0 && - lookahead != '}') ADVANCE(36); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); case 51: + if (lookahead != 0 && + lookahead != '}') ADVANCE(37); + END_STATE(); + case 52: if (eof) ADVANCE(54); - if (lookahead == '\r') SKIP(51); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(154); + if (lookahead == '\r') SKIP(52); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(148); if (lookahead == '%') ADVANCE(92); if (lookahead == '&') ADVANCE(96); if (lookahead == '(') ADVANCE(58); if (lookahead == ')') ADVANCE(59); - if (lookahead == '*') ADVANCE(62); + if (lookahead == '*') ADVANCE(70); if (lookahead == '+') ADVANCE(88); if (lookahead == ',') ADVANCE(60); if (lookahead == '-') ADVANCE(82); @@ -6365,10 +6427,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(110); if (lookahead == '@') ADVANCE(79); if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(77); if (lookahead == '^') ADVANCE(98); - if (lookahead == 'e') ADVANCE(152); if (lookahead == '{') ADVANCE(85); if (lookahead == '|') ADVANCE(84); if (lookahead == '}') ADVANCE(86); @@ -6377,22 +6438,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(51); + lookahead == 0xfeff) SKIP(52); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); - case 52: + case 53: if (eof) ADVANCE(54); - if (lookahead == '\r') SKIP(52); - if (lookahead == '!') ADVANCE(20); - if (lookahead == '#') ADVANCE(154); + if (lookahead == '\r') SKIP(53); + if (lookahead == '!') ADVANCE(21); + if (lookahead == '#') ADVANCE(148); if (lookahead == '(') ADVANCE(58); if (lookahead == ')') ADVANCE(59); if (lookahead == '*') ADVANCE(61); if (lookahead == '+') ADVANCE(87); if (lookahead == ',') ADVANCE(60); if (lookahead == '-') ADVANCE(80); - if (lookahead == '.') ADVANCE(15); + if (lookahead == '.') ADVANCE(16); if (lookahead == '0') ADVANCE(136); if (lookahead == ':') ADVANCE(68); if (lookahead == ';') ADVANCE(55); @@ -6401,43 +6462,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(109); if (lookahead == '@') ADVANCE(78); if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); + if (lookahead == '\\') ADVANCE(11); if (lookahead == ']') ADVANCE(77); if (lookahead == '{') ADVANCE(85); if (lookahead == '|') ADVANCE(83); if (lookahead == '}') ADVANCE(86); if (lookahead == '~') ADVANCE(101); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ' || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(52); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); - END_STATE(); - case 53: - if (eof) ADVANCE(54); - if (lookahead == '\r') SKIP(53); - if (lookahead == '#') ADVANCE(154); - if (lookahead == '(') ADVANCE(58); - if (lookahead == '*') ADVANCE(61); - if (lookahead == '+') ADVANCE(87); - if (lookahead == '-') ADVANCE(80); - if (lookahead == '.') ADVANCE(15); - if (lookahead == '0') ADVANCE(136); - if (lookahead == '@') ADVANCE(78); - if (lookahead == '[') ADVANCE(76); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == 'e') ADVANCE(152); - if (lookahead == '{') ADVANCE(85); - if (lookahead == '~') ADVANCE(101); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ' || lookahead == 0x200b || lookahead == 0x2060 || lookahead == 0xfeff) SKIP(53); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(137); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(153); + if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(147); END_STATE(); case 54: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -6450,7 +6487,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 57: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(16); + if (lookahead == '.') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); END_STATE(); case 58: @@ -6476,7 +6513,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 64: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(26); + if (lookahead == '*') ADVANCE(30); if (lookahead == '=') ADVANCE(115); END_STATE(); case 65: @@ -6497,7 +6534,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(67); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_except_STAR); + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); case 71: ACCEPT_TOKEN(anon_sym_DASH_GT); @@ -6710,13 +6747,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 130: ACCEPT_TOKEN(anon_sym_BSLASH); ADVANCE_MAP( - 0, 155, + 0, 149, '\n', 127, '\r', 2, - 'N', 35, - 'U', 49, - 'u', 45, - 'x', 43, + 'N', 36, + 'U', 50, + 'u', 46, + 'x', 44, '"', 127, '\'', 127, '\\', 127, @@ -6776,14 +6813,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '.', 145, '_', 138, - 'B', 32, - 'b', 32, - 'E', 37, - 'e', 37, - 'O', 33, - 'o', 33, - 'X', 34, - 'x', 34, + 'B', 33, + 'b', 33, + 'E', 38, + 'e', 38, + 'O', 34, + 'o', 34, + 'X', 35, + 'x', 35, 'J', 135, 'L', 135, 'j', 135, @@ -6796,8 +6833,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '.', 145, '_', 138, - 'E', 37, - 'e', 37, + 'E', 38, + 'e', 38, 'J', 135, 'L', 135, 'j', 135, @@ -6809,7 +6846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_integer); if (lookahead == '.') ADVANCE(145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); + lookahead == 'e') ADVANCE(38); if (lookahead == 'J' || lookahead == 'L' || lookahead == 'j' || @@ -6818,7 +6855,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 139: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(38); + if (lookahead == '_') ADVANCE(39); if (lookahead == 'L' || lookahead == 'l') ADVANCE(135); if (lookahead == '0' || @@ -6826,14 +6863,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 140: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(39); + if (lookahead == '_') ADVANCE(40); if (lookahead == 'L' || lookahead == 'l') ADVANCE(135); if (('0' <= lookahead && lookahead <= '7')) ADVANCE(140); END_STATE(); case 141: ACCEPT_TOKEN(sym_integer); - if (lookahead == '_') ADVANCE(42); + if (lookahead == '_') ADVANCE(43); if (lookahead == 'L' || lookahead == 'l') ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || @@ -6847,7 +6884,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(145); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); + lookahead == 'e') ADVANCE(38); if (lookahead == 'J' || lookahead == 'j') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); @@ -6862,7 +6899,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 145: ACCEPT_TOKEN(sym_float); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); + lookahead == 'e') ADVANCE(38); if (lookahead == 'J' || lookahead == 'j') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(143); @@ -6875,44 +6912,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 147: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '*') ADVANCE(70); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); + if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(147); END_STATE(); case 148: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(149); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); - END_STATE(); - case 149: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(150); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); - END_STATE(); - case 150: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(151); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); - END_STATE(); - case 151: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(147); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); - END_STATE(); - case 152: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'x') ADVANCE(148); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_2, 800, lookahead)) ADVANCE(153); - END_STATE(); - case 154: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(154); + lookahead != '\n') ADVANCE(148); END_STATE(); - case 155: + case 149: ACCEPT_TOKEN(sym_line_continuation); END_STATE(); default: @@ -7464,2782 +7471,2791 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [2] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [3] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [4] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [5] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [6] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [7] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [8] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [9] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [10] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [11] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [12] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 2}, - [13] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [14] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [15] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [16] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [17] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [18] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [19] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [20] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [21] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [22] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [23] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [24] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [25] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [26] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [27] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [28] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [29] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [30] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [31] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [32] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [33] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [34] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [35] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [36] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [37] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [38] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [39] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [40] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [41] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [42] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [43] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [44] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [45] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [46] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [47] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [48] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [49] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [50] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [51] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 2}, - [52] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [53] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [54] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [55] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [56] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [57] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [58] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [59] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [60] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [61] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [62] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [63] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [64] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 2}, - [65] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [66] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [67] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 2}, - [68] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [69] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [70] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [71] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [72] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, - [73] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, - [74] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, - [75] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [1] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [2] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [3] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [4] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [5] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [6] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [7] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [8] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [9] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [10] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [11] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [12] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [13] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [14] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [15] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [16] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [17] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [18] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [19] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [20] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [21] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [22] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [23] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [24] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [25] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [26] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [27] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [28] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [29] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [30] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [31] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [32] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [33] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [34] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [35] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [36] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [37] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [38] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [39] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [40] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [41] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [42] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [43] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [44] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [45] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [46] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [47] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [48] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [49] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [50] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [51] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [52] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [53] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [54] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [55] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [56] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [57] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [58] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [59] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [60] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [61] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [62] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [63] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [64] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [65] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [66] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [67] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [68] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [69] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [70] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [71] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [72] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [73] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 2}, + [74] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [75] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, [76] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, [77] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, [78] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, [79] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, - [80] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [81] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [82] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [83] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [84] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [85] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [86] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [87] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [88] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [89] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [90] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [91] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [92] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [93] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [94] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [95] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [96] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [97] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [98] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [99] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [100] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [101] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [102] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [103] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [104] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [105] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 3}, - [106] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [107] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [108] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [109] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [110] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 3}, - [111] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [112] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [113] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [114] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [115] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [116] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [117] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [118] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [119] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [120] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [121] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [122] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [123] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [124] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [125] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [126] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [127] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [128] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [129] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [130] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [131] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [132] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [133] = {.lex_state = 52, .external_lex_state = 5, .reserved_word_set_id = 1}, - [134] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 3}, - [135] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 3}, - [136] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 3}, - [137] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 3}, - [138] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [139] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [140] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [141] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [142] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [143] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [144] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [145] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [146] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, - [147] = {.lex_state = 11, .external_lex_state = 4, .reserved_word_set_id = 4}, - [148] = {.lex_state = 5, .external_lex_state = 4, .reserved_word_set_id = 5}, - [149] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 4}, - [150] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 5}, - [151] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, - [152] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [153] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 5}, - [154] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, - [155] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 7}, - [156] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 4}, - [157] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 6}, - [158] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 4}, + [80] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [81] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [82] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [83] = {.lex_state = 5, .external_lex_state = 5, .reserved_word_set_id = 1}, + [84] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [85] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [86] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [87] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [88] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [89] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [90] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [91] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [92] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [93] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [94] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [95] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [96] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [97] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [98] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [99] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [100] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [101] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [102] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [103] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [104] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, + [105] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [106] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [107] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [108] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [109] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [110] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [111] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [112] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [113] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [114] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [115] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [116] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [117] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [118] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [119] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [120] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [121] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [122] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [123] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [124] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [125] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [126] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 3}, + [127] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [128] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [129] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [130] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [131] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [132] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [133] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [134] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [135] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [136] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [137] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [138] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [139] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [140] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [141] = {.lex_state = 53, .external_lex_state = 5, .reserved_word_set_id = 1}, + [142] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, + [143] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, + [144] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, + [145] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 3}, + [146] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [147] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [148] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [149] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [150] = {.lex_state = 4, .external_lex_state = 4, .reserved_word_set_id = 1}, + [151] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 4}, + [152] = {.lex_state = 5, .external_lex_state = 4, .reserved_word_set_id = 5}, + [153] = {.lex_state = 13, .external_lex_state = 4, .reserved_word_set_id = 5}, + [154] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [155] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 6}, + [156] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 4}, + [157] = {.lex_state = 13, .external_lex_state = 4, .reserved_word_set_id = 5}, + [158] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, [159] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, - [160] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, - [161] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, - [162] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [163] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, - [164] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, - [165] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [166] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, - [167] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [160] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 6}, + [161] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 4}, + [162] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 4}, + [163] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 6}, + [164] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 7}, + [165] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 6}, + [166] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [167] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, [168] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [169] = {.lex_state = 11, .external_lex_state = 4, .reserved_word_set_id = 1}, - [170] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 6}, - [171] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 6}, - [172] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 7}, - [173] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 6}, - [174] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 4}, - [175] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 4}, - [176] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, - [177] = {.lex_state = 12, .external_lex_state = 7, .reserved_word_set_id = 4}, - [178] = {.lex_state = 11, .external_lex_state = 2, .reserved_word_set_id = 1}, - [179] = {.lex_state = 11, .external_lex_state = 2, .reserved_word_set_id = 1}, - [180] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [181] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [182] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [183] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [184] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [185] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [186] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [187] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [188] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [189] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [190] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [191] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [192] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [193] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [194] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [195] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [196] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [197] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [198] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [199] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [169] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, + [170] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 6}, + [171] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 7}, + [172] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 6}, + [173] = {.lex_state = 12, .external_lex_state = 4, .reserved_word_set_id = 1}, + [174] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 6}, + [175] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [176] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 4}, + [177] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 4}, + [178] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 7}, + [179] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [180] = {.lex_state = 13, .external_lex_state = 7, .reserved_word_set_id = 4}, + [181] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 6}, + [182] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [183] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, + [184] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [185] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [186] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [187] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [188] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [189] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [190] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [191] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [192] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [193] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [194] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [195] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [196] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [197] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [198] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [199] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [200] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [201] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [202] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [201] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [202] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [203] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [204] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [205] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [204] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [205] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [206] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [207] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [208] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [207] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [208] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [209] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, - [210] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [211] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [212] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [213] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [214] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [215] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, - [216] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [217] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [218] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [219] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [220] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [210] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [211] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [212] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [213] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [214] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [215] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [216] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [217] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 8}, + [218] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, + [219] = {.lex_state = 6, .external_lex_state = 4, .reserved_word_set_id = 1}, + [220] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [221] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [222] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [223] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [222] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [223] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [224] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, - [225] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [226] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [227] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [228] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [229] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [230] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [231] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [232] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [233] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [234] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, - [235] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [236] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [225] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [226] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [227] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [228] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [229] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 9}, + [230] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [231] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [232] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [233] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [234] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [235] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [236] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [237] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [238] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [239] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [240] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [241] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [242] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [243] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [244] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [245] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [246] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [247] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [242] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 10}, + [243] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [244] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [245] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [246] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [247] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, [248] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [249] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [250] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [251] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [250] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [251] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [252] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [253] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [254] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [255] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [256] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 10}, - [257] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [258] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [253] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [254] = {.lex_state = 6, .external_lex_state = 2, .reserved_word_set_id = 1}, + [255] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [256] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [257] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [258] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, [259] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [260] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [261] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [260] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [261] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, [262] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, [263] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, - [264] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [265] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [266] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [267] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [268] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, - [269] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, + [264] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [265] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [266] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [267] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 9}, + [268] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [269] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, [270] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [271] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [272] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [273] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [274] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, - [275] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, - [276] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, + [272] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [273] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [274] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [275] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [276] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, [277] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [278] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [279] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [280] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [281] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, - [282] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, - [283] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [284] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [281] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [282] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [283] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [284] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, [285] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [286] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [287] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [288] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, - [289] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, - [290] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [291] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [288] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [289] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [290] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [291] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, [292] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [293] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [294] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, - [295] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, - [296] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, + [294] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [295] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [296] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [297] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [298] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [299] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [300] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [301] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, - [302] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, - [303] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, + [298] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [299] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [300] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [301] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [302] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [303] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [304] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [305] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [306] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [307] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [308] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 8}, - [309] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, - [310] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 8}, + [306] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [307] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [308] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, + [309] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [310] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [311] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [312] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [313] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [314] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [313] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [314] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 8}, [315] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [316] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, [317] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, - [318] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [319] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [320] = {.lex_state = 12, .external_lex_state = 6, .reserved_word_set_id = 1}, - [321] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [322] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [323] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [324] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [325] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [326] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, - [327] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, - [328] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, - [329] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, - [330] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [331] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [332] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [333] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 9}, - [334] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [335] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 9}, - [336] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, - [337] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [338] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [339] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, - [340] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [341] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [342] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [343] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [318] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [319] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 8}, + [320] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 9}, + [321] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [322] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [323] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [324] = {.lex_state = 13, .external_lex_state = 6, .reserved_word_set_id = 1}, + [325] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [326] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [327] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [328] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [329] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [330] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [331] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 9}, + [332] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [333] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [334] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 9}, + [335] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [336] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [337] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [338] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [339] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [340] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [341] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [342] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [343] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [344] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [345] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [346] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [347] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, + [345] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [346] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [347] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [348] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [349] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [350] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [351] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [352] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [351] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [352] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [353] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [354] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [355] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [354] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [355] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, [356] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [357] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [358] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [359] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [360] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, + [358] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [359] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [360] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, [361] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, [362] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, - [363] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [364] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [365] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [366] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [367] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [368] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [369] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [370] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [371] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 10}, - [372] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 1}, - [373] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [374] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [375] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [376] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [377] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [378] = {.lex_state = 12, .external_lex_state = 8, .reserved_word_set_id = 1}, - [379] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 10}, - [380] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [381] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [382] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [383] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [384] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [385] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [386] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [387] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [388] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [389] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [390] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [391] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [392] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [393] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [394] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [395] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [396] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [397] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [398] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [399] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [400] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 9}, - [401] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [402] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [403] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [404] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [405] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [406] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [407] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [408] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [409] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [410] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [411] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [412] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [413] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [414] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [415] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [416] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [417] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [418] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [419] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [420] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [421] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [422] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [423] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [424] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [425] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [426] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [427] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [428] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [429] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [430] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [431] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [432] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [433] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [434] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [435] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [436] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [437] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [438] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [439] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [440] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [441] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [442] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, - [443] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, - [444] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [445] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [446] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [447] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [448] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [449] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [450] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [451] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [452] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [453] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [454] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [455] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [456] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [457] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [458] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [459] = {.lex_state = 52, .external_lex_state = 4, .reserved_word_set_id = 1}, - [460] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [461] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [462] = {.lex_state = 7, .external_lex_state = 4, .reserved_word_set_id = 1}, - [463] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [464] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [465] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [466] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [467] = {.lex_state = 7, .external_lex_state = 4, .reserved_word_set_id = 1}, - [468] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [469] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [470] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [471] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [472] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [473] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [474] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [475] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [476] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [477] = {.lex_state = 7, .external_lex_state = 11}, - [478] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [479] = {.lex_state = 7, .external_lex_state = 11}, - [480] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [481] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [482] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [483] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [484] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [485] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [486] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [487] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [488] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [489] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [490] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [491] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [492] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [493] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [494] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [495] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [496] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [497] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [498] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [499] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [500] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [501] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [502] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [503] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [504] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [505] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [506] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [507] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [508] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [509] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [510] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [511] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [512] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [513] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [514] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [515] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [516] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [517] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [518] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [519] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [520] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [521] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [522] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [523] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [524] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [525] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [526] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [527] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [528] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [529] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [530] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [531] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [532] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [533] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [534] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [535] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [536] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [537] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [538] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [539] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [540] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [541] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [542] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [543] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [544] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [545] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [546] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [547] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [548] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [549] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [550] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [551] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [552] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [553] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [554] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [555] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [556] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [557] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [558] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [559] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [560] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [561] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [562] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [563] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [564] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [565] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [566] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [567] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [568] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [569] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [570] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [571] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [572] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [573] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [574] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [575] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [576] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [577] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [578] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [579] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [580] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [581] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [582] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [583] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [584] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [585] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [586] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [587] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [588] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [589] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [590] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [591] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [592] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [593] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [594] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [595] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [596] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 9}, - [597] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [598] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [599] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [600] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [601] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [602] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [603] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [604] = {.lex_state = 7, .external_lex_state = 11}, - [605] = {.lex_state = 7, .external_lex_state = 11}, - [606] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [607] = {.lex_state = 7, .external_lex_state = 11}, - [608] = {.lex_state = 7, .external_lex_state = 11}, - [609] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [610] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [611] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [612] = {.lex_state = 7, .external_lex_state = 11}, - [613] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [614] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [615] = {.lex_state = 7, .external_lex_state = 11}, - [616] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [617] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [363] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [364] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [365] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [366] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 9}, + [367] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [368] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [369] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [370] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [371] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 1}, + [372] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [373] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [374] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [375] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [376] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [377] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 10}, + [378] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [379] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [380] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [381] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [382] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [383] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [384] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [385] = {.lex_state = 13, .external_lex_state = 8, .reserved_word_set_id = 1}, + [386] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [387] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [388] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [389] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [390] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [391] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [392] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [393] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [394] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 10}, + [395] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [396] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [397] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [398] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [399] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [400] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [401] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [402] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [403] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [404] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 9}, + [405] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, + [406] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [407] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [408] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [409] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [410] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [411] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [412] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [413] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, + [414] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [415] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [416] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [417] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [418] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [419] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [420] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [421] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [422] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [423] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [424] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [425] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [426] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [427] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [428] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [429] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [430] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [431] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [432] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [433] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [434] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [435] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [436] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [437] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [438] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [439] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [440] = {.lex_state = 53, .external_lex_state = 4, .reserved_word_set_id = 1}, + [441] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [442] = {.lex_state = 7, .external_lex_state = 2, .reserved_word_set_id = 1}, + [443] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [444] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [445] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [446] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [447] = {.lex_state = 7, .external_lex_state = 2, .reserved_word_set_id = 1}, + [448] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [449] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [450] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [451] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [452] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [453] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [454] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [455] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [456] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [457] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [458] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [459] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [460] = {.lex_state = 8, .external_lex_state = 9}, + [461] = {.lex_state = 8, .external_lex_state = 9}, + [462] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [463] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [464] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [465] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [466] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [467] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, + [468] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [469] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [470] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [471] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [472] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [473] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [474] = {.lex_state = 8, .external_lex_state = 4, .reserved_word_set_id = 1}, + [475] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [476] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [477] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [478] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [479] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [480] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [481] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [482] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [483] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [484] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [485] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [486] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [487] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [488] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [489] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [490] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [491] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [492] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [493] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [494] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [495] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [496] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [497] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [498] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [499] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [500] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [501] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [502] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [503] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [504] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [505] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [506] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [507] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [508] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [509] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [510] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [511] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [512] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [513] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [514] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [515] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [516] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [517] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [518] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [519] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [520] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [521] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [522] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [523] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [524] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [525] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [526] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [527] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [528] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [529] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [530] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [531] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [532] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [533] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [534] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [535] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [536] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [537] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [538] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [539] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [540] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [541] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [542] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [543] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [544] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [545] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [546] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [547] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [548] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [549] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [550] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [551] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [552] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [553] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [554] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [555] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [556] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [557] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [558] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [559] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [560] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [561] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [562] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [563] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [564] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [565] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [566] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [567] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [568] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [569] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [570] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [571] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [572] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [573] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [574] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [575] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [576] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [577] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [578] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [579] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [580] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [581] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [582] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [583] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [584] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [585] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [586] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [587] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [588] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [589] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [590] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [591] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [592] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [593] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [594] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [595] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [596] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [597] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [598] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [599] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [600] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 9}, + [601] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [602] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [603] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [604] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [605] = {.lex_state = 8, .external_lex_state = 9}, + [606] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [607] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [608] = {.lex_state = 8, .external_lex_state = 9}, + [609] = {.lex_state = 8, .external_lex_state = 9}, + [610] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [611] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [612] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [613] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [614] = {.lex_state = 8, .external_lex_state = 9}, + [615] = {.lex_state = 8, .external_lex_state = 9}, + [616] = {.lex_state = 8, .external_lex_state = 9}, + [617] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [618] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [619] = {.lex_state = 8, .external_lex_state = 11}, - [620] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [621] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [622] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [623] = {.lex_state = 8, .external_lex_state = 11}, - [624] = {.lex_state = 8, .external_lex_state = 11}, - [625] = {.lex_state = 8, .external_lex_state = 11}, - [626] = {.lex_state = 8, .external_lex_state = 11}, - [627] = {.lex_state = 8, .external_lex_state = 11}, - [628] = {.lex_state = 8, .external_lex_state = 11}, - [629] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [630] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [631] = {.lex_state = 8, .external_lex_state = 11}, - [632] = {.lex_state = 8, .external_lex_state = 11}, - [633] = {.lex_state = 8, .external_lex_state = 11}, - [634] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [635] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [636] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [637] = {.lex_state = 8, .external_lex_state = 11}, - [638] = {.lex_state = 8, .external_lex_state = 11}, - [639] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [640] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [641] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [642] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [643] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [644] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [645] = {.lex_state = 8, .external_lex_state = 11}, - [646] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [647] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [648] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [649] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [650] = {.lex_state = 8, .external_lex_state = 11}, - [651] = {.lex_state = 8, .external_lex_state = 11}, - [652] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [653] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [654] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [655] = {.lex_state = 8, .external_lex_state = 11}, + [619] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [620] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [621] = {.lex_state = 9, .external_lex_state = 9}, + [622] = {.lex_state = 9, .external_lex_state = 9}, + [623] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [624] = {.lex_state = 9, .external_lex_state = 9}, + [625] = {.lex_state = 9, .external_lex_state = 9}, + [626] = {.lex_state = 9, .external_lex_state = 9}, + [627] = {.lex_state = 9, .external_lex_state = 9}, + [628] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [629] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [630] = {.lex_state = 9, .external_lex_state = 9}, + [631] = {.lex_state = 9, .external_lex_state = 9}, + [632] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [633] = {.lex_state = 9, .external_lex_state = 9}, + [634] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [635] = {.lex_state = 9, .external_lex_state = 9}, + [636] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [637] = {.lex_state = 9, .external_lex_state = 9}, + [638] = {.lex_state = 9, .external_lex_state = 9}, + [639] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [640] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [641] = {.lex_state = 9, .external_lex_state = 9}, + [642] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [643] = {.lex_state = 9, .external_lex_state = 9}, + [644] = {.lex_state = 9, .external_lex_state = 9}, + [645] = {.lex_state = 9, .external_lex_state = 9}, + [646] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 11}, + [647] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [648] = {.lex_state = 9, .external_lex_state = 9}, + [649] = {.lex_state = 9, .external_lex_state = 9}, + [650] = {.lex_state = 9, .external_lex_state = 9}, + [651] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 11}, + [652] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [653] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [654] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [655] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [656] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [657] = {.lex_state = 8, .external_lex_state = 11}, - [658] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [659] = {.lex_state = 8, .external_lex_state = 11}, - [660] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [657] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [658] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [659] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [660] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [661] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [662] = {.lex_state = 8, .external_lex_state = 11}, - [663] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, + [662] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [663] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, [664] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [665] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [666] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [665] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [666] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, [667] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, - [668] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, - [669] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 11}, - [670] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 11}, - [671] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 11}, - [672] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 11}, - [673] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, - [674] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 11}, - [675] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 11}, - [676] = {.lex_state = 52, .external_lex_state = 6, .reserved_word_set_id = 1}, - [677] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 11}, - [678] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 11}, - [679] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 11}, - [680] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 11}, - [681] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [682] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [683] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [684] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [685] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [686] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [687] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [688] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [689] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [690] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [691] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [692] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [693] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [694] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [695] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [696] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [697] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [698] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [699] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [700] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [701] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [702] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [703] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [704] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [705] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [706] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [707] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 12}, - [708] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [709] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 12}, - [710] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 12}, - [711] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 12}, - [712] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [713] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [714] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [715] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [716] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [717] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [718] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [719] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [720] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [721] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [722] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [723] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [724] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [725] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [726] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [727] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [728] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [729] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [730] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [731] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [732] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [733] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [734] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [735] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [736] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [737] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [738] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [739] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [740] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [741] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [742] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [743] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [744] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [745] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [746] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [747] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [748] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [749] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [750] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [751] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [752] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [753] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [754] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [755] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [756] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [757] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [758] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [759] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [760] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [761] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [762] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [763] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [764] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [765] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [766] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [767] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [768] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [769] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [770] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [771] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [772] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [773] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [774] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [775] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [776] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [777] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [778] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [779] = {.lex_state = 52, .external_lex_state = 7, .reserved_word_set_id = 1}, - [780] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [781] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [782] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [783] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [784] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [785] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [786] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [787] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [788] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [789] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [790] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [791] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [792] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [793] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [794] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [795] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [796] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [797] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [798] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [799] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [800] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [801] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [802] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [803] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [804] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [805] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [806] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [807] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [808] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [809] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [810] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [811] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [812] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [813] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [814] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [815] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [816] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [817] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [818] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [819] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [820] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [821] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [822] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [823] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [824] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [825] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [826] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [827] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [828] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [829] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [830] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [831] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [832] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [833] = {.lex_state = 52, .external_lex_state = 3, .reserved_word_set_id = 1}, - [834] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [835] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [836] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [837] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [838] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [839] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [840] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [841] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [842] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [843] = {.lex_state = 52, .external_lex_state = 8, .reserved_word_set_id = 1}, - [844] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [845] = {.lex_state = 13, .external_lex_state = 11}, - [846] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, - [847] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, - [848] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, - [849] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, - [850] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, - [851] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, - [852] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, - [853] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 13}, - [854] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [855] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [856] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [857] = {.lex_state = 13, .external_lex_state = 12}, - [858] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [859] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [860] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [861] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [862] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [863] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [864] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [865] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [866] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [867] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [868] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [869] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [870] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [871] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [872] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [873] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [874] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [875] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [876] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [877] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [878] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [879] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [880] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [881] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [882] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [883] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [884] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [885] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [886] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [887] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [888] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [889] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [890] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [891] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [892] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [893] = {.lex_state = 13, .external_lex_state = 13}, - [894] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [895] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [896] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [897] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [898] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [899] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [900] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [901] = {.lex_state = 13, .external_lex_state = 13}, - [902] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [903] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [904] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [905] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [906] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [907] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [908] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [909] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [910] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [911] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [912] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [913] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [914] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [915] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [916] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [917] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [918] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [919] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [920] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [921] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [922] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [923] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [924] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [925] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [926] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [927] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [928] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [929] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [930] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [931] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [932] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [933] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [934] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [935] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [936] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [937] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [938] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [939] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [940] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [941] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [942] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [943] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [944] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [945] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [946] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [947] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [948] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 14}, - [949] = {.lex_state = 13, .external_lex_state = 11}, - [950] = {.lex_state = 13, .external_lex_state = 14}, - [951] = {.lex_state = 13, .external_lex_state = 4}, - [952] = {.lex_state = 13, .external_lex_state = 15}, - [953] = {.lex_state = 13, .external_lex_state = 14}, - [954] = {.lex_state = 13, .external_lex_state = 4}, - [955] = {.lex_state = 13, .external_lex_state = 4}, - [956] = {.lex_state = 13, .external_lex_state = 11}, - [957] = {.lex_state = 13, .external_lex_state = 11}, - [958] = {.lex_state = 13, .external_lex_state = 6}, - [959] = {.lex_state = 13, .external_lex_state = 11}, - [960] = {.lex_state = 13, .external_lex_state = 6}, - [961] = {.lex_state = 13, .external_lex_state = 7}, - [962] = {.lex_state = 13, .external_lex_state = 11}, - [963] = {.lex_state = 13, .external_lex_state = 12}, - [964] = {.lex_state = 13, .external_lex_state = 6}, - [965] = {.lex_state = 13, .external_lex_state = 11}, - [966] = {.lex_state = 13, .external_lex_state = 11}, - [967] = {.lex_state = 13, .external_lex_state = 11}, - [968] = {.lex_state = 13, .external_lex_state = 7}, - [969] = {.lex_state = 13, .external_lex_state = 7}, - [970] = {.lex_state = 13, .external_lex_state = 6}, - [971] = {.lex_state = 13, .external_lex_state = 6}, - [972] = {.lex_state = 13, .external_lex_state = 11}, - [973] = {.lex_state = 13, .external_lex_state = 11}, - [974] = {.lex_state = 13, .external_lex_state = 11}, - [975] = {.lex_state = 13, .external_lex_state = 6}, - [976] = {.lex_state = 13, .external_lex_state = 4}, - [977] = {.lex_state = 13, .external_lex_state = 13}, - [978] = {.lex_state = 13, .external_lex_state = 8}, - [979] = {.lex_state = 13, .external_lex_state = 13}, - [980] = {.lex_state = 14, .external_lex_state = 11}, - [981] = {.lex_state = 13, .external_lex_state = 8}, - [982] = {.lex_state = 13, .external_lex_state = 12}, - [983] = {.lex_state = 13, .external_lex_state = 13}, - [984] = {.lex_state = 13, .external_lex_state = 2}, - [985] = {.lex_state = 13, .external_lex_state = 8}, - [986] = {.lex_state = 13, .external_lex_state = 4}, - [987] = {.lex_state = 13, .external_lex_state = 13}, - [988] = {.lex_state = 13, .external_lex_state = 13}, - [989] = {.lex_state = 13, .external_lex_state = 13}, - [990] = {.lex_state = 13, .external_lex_state = 13}, - [991] = {.lex_state = 13, .external_lex_state = 12}, - [992] = {.lex_state = 13, .external_lex_state = 8}, - [993] = {.lex_state = 13, .external_lex_state = 13}, - [994] = {.lex_state = 13, .external_lex_state = 14}, - [995] = {.lex_state = 13, .external_lex_state = 8}, - [996] = {.lex_state = 13, .external_lex_state = 13}, - [997] = {.lex_state = 13, .external_lex_state = 12}, - [998] = {.lex_state = 13, .external_lex_state = 8}, - [999] = {.lex_state = 13, .external_lex_state = 12}, - [1000] = {.lex_state = 13, .external_lex_state = 13}, - [1001] = {.lex_state = 13, .external_lex_state = 12}, - [1002] = {.lex_state = 14, .external_lex_state = 12}, - [1003] = {.lex_state = 13, .external_lex_state = 13}, - [1004] = {.lex_state = 13, .external_lex_state = 13}, - [1005] = {.lex_state = 13, .external_lex_state = 13}, - [1006] = {.lex_state = 13, .external_lex_state = 2}, - [1007] = {.lex_state = 13, .external_lex_state = 12}, - [1008] = {.lex_state = 13, .external_lex_state = 13}, - [1009] = {.lex_state = 13, .external_lex_state = 12}, - [1010] = {.lex_state = 13, .external_lex_state = 13}, - [1011] = {.lex_state = 13, .external_lex_state = 13}, - [1012] = {.lex_state = 14, .external_lex_state = 11}, - [1013] = {.lex_state = 13, .external_lex_state = 2}, - [1014] = {.lex_state = 13, .external_lex_state = 13}, - [1015] = {.lex_state = 13, .external_lex_state = 13}, - [1016] = {.lex_state = 13, .external_lex_state = 12}, - [1017] = {.lex_state = 13, .external_lex_state = 13}, - [1018] = {.lex_state = 14, .external_lex_state = 11}, - [1019] = {.lex_state = 13, .external_lex_state = 13}, - [1020] = {.lex_state = 13, .external_lex_state = 13}, - [1021] = {.lex_state = 13, .external_lex_state = 13}, - [1022] = {.lex_state = 13, .external_lex_state = 13}, - [1023] = {.lex_state = 13, .external_lex_state = 12}, - [1024] = {.lex_state = 13, .external_lex_state = 12}, - [1025] = {.lex_state = 13, .external_lex_state = 12}, - [1026] = {.lex_state = 13, .external_lex_state = 13}, - [1027] = {.lex_state = 13, .external_lex_state = 13}, - [1028] = {.lex_state = 13, .external_lex_state = 13}, - [1029] = {.lex_state = 13, .external_lex_state = 13}, - [1030] = {.lex_state = 13, .external_lex_state = 13}, + [668] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [669] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [670] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [671] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [672] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [673] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [674] = {.lex_state = 53, .external_lex_state = 6, .reserved_word_set_id = 1}, + [675] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [676] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [677] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [678] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [679] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [680] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [681] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [682] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [683] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [684] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [685] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [686] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [687] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [688] = {.lex_state = 53, .external_lex_state = 10, .reserved_word_set_id = 1}, + [689] = {.lex_state = 53, .external_lex_state = 11, .reserved_word_set_id = 1}, + [690] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [691] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [692] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [693] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [694] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [695] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [696] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [697] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [698] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [699] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [700] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [701] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [702] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [703] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [704] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [705] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [706] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [707] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [708] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [709] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [710] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [711] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [712] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [713] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [714] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [715] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [716] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [717] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 12}, + [718] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 12}, + [719] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 12}, + [720] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 12}, + [721] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [722] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [723] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [724] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [725] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [726] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [727] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [728] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [729] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [730] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [731] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [732] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [733] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [734] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [735] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [736] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [737] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [738] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [739] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [740] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [741] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [742] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [743] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [744] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [745] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [746] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [747] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [748] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [749] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [750] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [751] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [752] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [753] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [754] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [755] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [756] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [757] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [758] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [759] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [760] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [761] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [762] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [763] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [764] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [765] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [766] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [767] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [768] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [769] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [770] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [771] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [772] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [773] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [774] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [775] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [776] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [777] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [778] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [779] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [780] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [781] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [782] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [783] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [784] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [785] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [786] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [787] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [788] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [789] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [790] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [791] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [792] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [793] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [794] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [795] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [796] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [797] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [798] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [799] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [800] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [801] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [802] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [803] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [804] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [805] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [806] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [807] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [808] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [809] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [810] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [811] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [812] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [813] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [814] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [815] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [816] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [817] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [818] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [819] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [820] = {.lex_state = 53, .external_lex_state = 7, .reserved_word_set_id = 1}, + [821] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [822] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [823] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [824] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [825] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [826] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [827] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [828] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [829] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [830] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [831] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [832] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [833] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [834] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [835] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [836] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [837] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [838] = {.lex_state = 53, .external_lex_state = 3, .reserved_word_set_id = 1}, + [839] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [840] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [841] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [842] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [843] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [844] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [845] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [846] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [847] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [848] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [849] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [850] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [851] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [852] = {.lex_state = 53, .external_lex_state = 8, .reserved_word_set_id = 1}, + [853] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [854] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [855] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [856] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [857] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [858] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [859] = {.lex_state = 14, .external_lex_state = 9}, + [860] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [861] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [862] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 13}, + [863] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [864] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [865] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [866] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [867] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [868] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [869] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [870] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [871] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [872] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [873] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [874] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [875] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [876] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [877] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [878] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [879] = {.lex_state = 14, .external_lex_state = 12}, + [880] = {.lex_state = 14, .external_lex_state = 13}, + [881] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [882] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [883] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [884] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [885] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [886] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [887] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [888] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [889] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [890] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [891] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [892] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [893] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [894] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [895] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [896] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [897] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [898] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [899] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [900] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [901] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [902] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [903] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [904] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [905] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [906] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [907] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [908] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [909] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [910] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [911] = {.lex_state = 14, .external_lex_state = 13}, + [912] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [913] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [914] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [915] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [916] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [917] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [918] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [919] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [920] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [921] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [922] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [923] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [924] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [925] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [926] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [927] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [928] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [929] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [930] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [931] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [932] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [933] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [934] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [935] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [936] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [937] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [938] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [939] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [940] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [941] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [942] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [943] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [944] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [945] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [946] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [947] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [948] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [949] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [950] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [951] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [952] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [953] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [954] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [955] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [956] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [957] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 14}, + [958] = {.lex_state = 14, .external_lex_state = 9}, + [959] = {.lex_state = 14, .external_lex_state = 4}, + [960] = {.lex_state = 14, .external_lex_state = 4}, + [961] = {.lex_state = 14, .external_lex_state = 14}, + [962] = {.lex_state = 14, .external_lex_state = 15}, + [963] = {.lex_state = 14, .external_lex_state = 14}, + [964] = {.lex_state = 14, .external_lex_state = 4}, + [965] = {.lex_state = 14, .external_lex_state = 9}, + [966] = {.lex_state = 14, .external_lex_state = 9}, + [967] = {.lex_state = 14, .external_lex_state = 9}, + [968] = {.lex_state = 14, .external_lex_state = 7}, + [969] = {.lex_state = 14, .external_lex_state = 7}, + [970] = {.lex_state = 14, .external_lex_state = 7}, + [971] = {.lex_state = 14, .external_lex_state = 6}, + [972] = {.lex_state = 14, .external_lex_state = 6}, + [973] = {.lex_state = 14, .external_lex_state = 6}, + [974] = {.lex_state = 14, .external_lex_state = 12}, + [975] = {.lex_state = 14, .external_lex_state = 6}, + [976] = {.lex_state = 14, .external_lex_state = 6}, + [977] = {.lex_state = 14, .external_lex_state = 9}, + [978] = {.lex_state = 14, .external_lex_state = 9}, + [979] = {.lex_state = 14, .external_lex_state = 9}, + [980] = {.lex_state = 14, .external_lex_state = 9}, + [981] = {.lex_state = 14, .external_lex_state = 9}, + [982] = {.lex_state = 14, .external_lex_state = 9}, + [983] = {.lex_state = 14, .external_lex_state = 9}, + [984] = {.lex_state = 14, .external_lex_state = 6}, + [985] = {.lex_state = 14, .external_lex_state = 13}, + [986] = {.lex_state = 14, .external_lex_state = 12}, + [987] = {.lex_state = 14, .external_lex_state = 12}, + [988] = {.lex_state = 14, .external_lex_state = 12}, + [989] = {.lex_state = 14, .external_lex_state = 4}, + [990] = {.lex_state = 14, .external_lex_state = 2}, + [991] = {.lex_state = 15, .external_lex_state = 12}, + [992] = {.lex_state = 15, .external_lex_state = 12}, + [993] = {.lex_state = 14, .external_lex_state = 13}, + [994] = {.lex_state = 14, .external_lex_state = 13}, + [995] = {.lex_state = 14, .external_lex_state = 2}, + [996] = {.lex_state = 14, .external_lex_state = 13}, + [997] = {.lex_state = 14, .external_lex_state = 13}, + [998] = {.lex_state = 14, .external_lex_state = 13}, + [999] = {.lex_state = 14, .external_lex_state = 13}, + [1000] = {.lex_state = 14, .external_lex_state = 13}, + [1001] = {.lex_state = 14, .external_lex_state = 13}, + [1002] = {.lex_state = 14, .external_lex_state = 13}, + [1003] = {.lex_state = 14, .external_lex_state = 13}, + [1004] = {.lex_state = 14, .external_lex_state = 2}, + [1005] = {.lex_state = 15, .external_lex_state = 9}, + [1006] = {.lex_state = 14, .external_lex_state = 13}, + [1007] = {.lex_state = 14, .external_lex_state = 13}, + [1008] = {.lex_state = 14, .external_lex_state = 4}, + [1009] = {.lex_state = 14, .external_lex_state = 12}, + [1010] = {.lex_state = 14, .external_lex_state = 13}, + [1011] = {.lex_state = 14, .external_lex_state = 13}, + [1012] = {.lex_state = 14, .external_lex_state = 12}, + [1013] = {.lex_state = 14, .external_lex_state = 13}, + [1014] = {.lex_state = 14, .external_lex_state = 13}, + [1015] = {.lex_state = 14, .external_lex_state = 13}, + [1016] = {.lex_state = 14, .external_lex_state = 13}, + [1017] = {.lex_state = 14, .external_lex_state = 13}, + [1018] = {.lex_state = 15, .external_lex_state = 9}, + [1019] = {.lex_state = 14, .external_lex_state = 13}, + [1020] = {.lex_state = 14, .external_lex_state = 13}, + [1021] = {.lex_state = 14, .external_lex_state = 13}, + [1022] = {.lex_state = 14, .external_lex_state = 13}, + [1023] = {.lex_state = 14, .external_lex_state = 13}, + [1024] = {.lex_state = 14, .external_lex_state = 13}, + [1025] = {.lex_state = 14, .external_lex_state = 14}, + [1026] = {.lex_state = 14, .external_lex_state = 8}, + [1027] = {.lex_state = 14, .external_lex_state = 8}, + [1028] = {.lex_state = 14, .external_lex_state = 8}, + [1029] = {.lex_state = 14, .external_lex_state = 12}, + [1030] = {.lex_state = 14, .external_lex_state = 12}, [1031] = {.lex_state = 14, .external_lex_state = 12}, - [1032] = {.lex_state = 14, .external_lex_state = 14}, - [1033] = {.lex_state = 13, .external_lex_state = 11}, - [1034] = {.lex_state = 13, .external_lex_state = 11}, - [1035] = {.lex_state = 13, .external_lex_state = 11}, - [1036] = {.lex_state = 13, .external_lex_state = 11}, - [1037] = {.lex_state = 13, .external_lex_state = 11}, - [1038] = {.lex_state = 14, .external_lex_state = 13}, - [1039] = {.lex_state = 13, .external_lex_state = 11}, - [1040] = {.lex_state = 13, .external_lex_state = 11}, - [1041] = {.lex_state = 13, .external_lex_state = 11}, - [1042] = {.lex_state = 14, .external_lex_state = 14}, + [1032] = {.lex_state = 15, .external_lex_state = 9}, + [1033] = {.lex_state = 14, .external_lex_state = 8}, + [1034] = {.lex_state = 14, .external_lex_state = 12}, + [1035] = {.lex_state = 14, .external_lex_state = 12}, + [1036] = {.lex_state = 14, .external_lex_state = 12}, + [1037] = {.lex_state = 14, .external_lex_state = 8}, + [1038] = {.lex_state = 14, .external_lex_state = 8}, + [1039] = {.lex_state = 14, .external_lex_state = 13}, + [1040] = {.lex_state = 14, .external_lex_state = 13}, + [1041] = {.lex_state = 14, .external_lex_state = 9}, + [1042] = {.lex_state = 14, .external_lex_state = 9}, [1043] = {.lex_state = 14, .external_lex_state = 14}, - [1044] = {.lex_state = 13, .external_lex_state = 11}, - [1045] = {.lex_state = 14, .external_lex_state = 12}, - [1046] = {.lex_state = 13, .external_lex_state = 7}, - [1047] = {.lex_state = 13, .external_lex_state = 11}, - [1048] = {.lex_state = 13, .external_lex_state = 7}, - [1049] = {.lex_state = 14, .external_lex_state = 11}, - [1050] = {.lex_state = 14, .external_lex_state = 11}, - [1051] = {.lex_state = 13, .external_lex_state = 14}, - [1052] = {.lex_state = 13, .external_lex_state = 6}, - [1053] = {.lex_state = 14, .external_lex_state = 12}, - [1054] = {.lex_state = 14, .external_lex_state = 12}, - [1055] = {.lex_state = 14, .external_lex_state = 12}, - [1056] = {.lex_state = 13, .external_lex_state = 14}, - [1057] = {.lex_state = 13, .external_lex_state = 11}, - [1058] = {.lex_state = 14, .external_lex_state = 14}, - [1059] = {.lex_state = 14, .external_lex_state = 14}, - [1060] = {.lex_state = 13, .external_lex_state = 11}, - [1061] = {.lex_state = 13, .external_lex_state = 11}, - [1062] = {.lex_state = 13, .external_lex_state = 6}, - [1063] = {.lex_state = 13, .external_lex_state = 11}, - [1064] = {.lex_state = 14, .external_lex_state = 12}, - [1065] = {.lex_state = 14, .external_lex_state = 12}, - [1066] = {.lex_state = 13, .external_lex_state = 11}, - [1067] = {.lex_state = 13, .external_lex_state = 11}, - [1068] = {.lex_state = 13, .external_lex_state = 11}, - [1069] = {.lex_state = 13, .external_lex_state = 6}, - [1070] = {.lex_state = 13, .external_lex_state = 14}, - [1071] = {.lex_state = 13, .external_lex_state = 14}, - [1072] = {.lex_state = 13, .external_lex_state = 6}, - [1073] = {.lex_state = 13, .external_lex_state = 14}, - [1074] = {.lex_state = 13, .external_lex_state = 14}, - [1075] = {.lex_state = 13, .external_lex_state = 14}, - [1076] = {.lex_state = 13, .external_lex_state = 14}, - [1077] = {.lex_state = 13, .external_lex_state = 14}, - [1078] = {.lex_state = 13, .external_lex_state = 14}, - [1079] = {.lex_state = 13, .external_lex_state = 14}, - [1080] = {.lex_state = 13, .external_lex_state = 14}, - [1081] = {.lex_state = 13, .external_lex_state = 7}, - [1082] = {.lex_state = 14, .external_lex_state = 13}, - [1083] = {.lex_state = 14, .external_lex_state = 13}, - [1084] = {.lex_state = 14, .external_lex_state = 13}, - [1085] = {.lex_state = 13, .external_lex_state = 14}, - [1086] = {.lex_state = 13, .external_lex_state = 7}, - [1087] = {.lex_state = 13, .external_lex_state = 14}, - [1088] = {.lex_state = 13, .external_lex_state = 7}, - [1089] = {.lex_state = 13, .external_lex_state = 14}, - [1090] = {.lex_state = 13, .external_lex_state = 14}, - [1091] = {.lex_state = 13, .external_lex_state = 14}, - [1092] = {.lex_state = 13, .external_lex_state = 14}, - [1093] = {.lex_state = 13, .external_lex_state = 14}, - [1094] = {.lex_state = 13, .external_lex_state = 14}, - [1095] = {.lex_state = 13, .external_lex_state = 11}, - [1096] = {.lex_state = 13, .external_lex_state = 11}, - [1097] = {.lex_state = 13, .external_lex_state = 11}, - [1098] = {.lex_state = 13, .external_lex_state = 11}, - [1099] = {.lex_state = 13, .external_lex_state = 11}, - [1100] = {.lex_state = 13, .external_lex_state = 11}, - [1101] = {.lex_state = 13, .external_lex_state = 11}, - [1102] = {.lex_state = 13, .external_lex_state = 11}, - [1103] = {.lex_state = 13, .external_lex_state = 11}, - [1104] = {.lex_state = 13, .external_lex_state = 11}, - [1105] = {.lex_state = 13, .external_lex_state = 11}, - [1106] = {.lex_state = 13, .external_lex_state = 11}, - [1107] = {.lex_state = 13, .external_lex_state = 11}, - [1108] = {.lex_state = 14, .external_lex_state = 13}, - [1109] = {.lex_state = 14, .external_lex_state = 13}, - [1110] = {.lex_state = 13, .external_lex_state = 11}, - [1111] = {.lex_state = 13, .external_lex_state = 11}, - [1112] = {.lex_state = 14, .external_lex_state = 13}, - [1113] = {.lex_state = 14, .external_lex_state = 13}, - [1114] = {.lex_state = 14, .external_lex_state = 13}, - [1115] = {.lex_state = 13, .external_lex_state = 15}, - [1116] = {.lex_state = 13, .external_lex_state = 15}, - [1117] = {.lex_state = 13, .external_lex_state = 11}, - [1118] = {.lex_state = 14, .external_lex_state = 13}, - [1119] = {.lex_state = 14, .external_lex_state = 13}, - [1120] = {.lex_state = 14, .external_lex_state = 13}, - [1121] = {.lex_state = 13, .external_lex_state = 11}, - [1122] = {.lex_state = 13, .external_lex_state = 11}, - [1123] = {.lex_state = 13, .external_lex_state = 15}, - [1124] = {.lex_state = 13, .external_lex_state = 15}, - [1125] = {.lex_state = 13, .external_lex_state = 15}, - [1126] = {.lex_state = 13, .external_lex_state = 15}, - [1127] = {.lex_state = 13, .external_lex_state = 15}, - [1128] = {.lex_state = 13, .external_lex_state = 15}, - [1129] = {.lex_state = 13, .external_lex_state = 15}, - [1130] = {.lex_state = 13, .external_lex_state = 15}, - [1131] = {.lex_state = 13, .external_lex_state = 11}, - [1132] = {.lex_state = 13, .external_lex_state = 12}, - [1133] = {.lex_state = 13, .external_lex_state = 12}, - [1134] = {.lex_state = 13, .external_lex_state = 13}, - [1135] = {.lex_state = 13, .external_lex_state = 13}, - [1136] = {.lex_state = 13, .external_lex_state = 13}, - [1137] = {.lex_state = 13, .external_lex_state = 12}, - [1138] = {.lex_state = 13, .external_lex_state = 12}, - [1139] = {.lex_state = 14, .external_lex_state = 14}, - [1140] = {.lex_state = 13, .external_lex_state = 12}, - [1141] = {.lex_state = 14, .external_lex_state = 15}, - [1142] = {.lex_state = 13, .external_lex_state = 12}, - [1143] = {.lex_state = 14, .external_lex_state = 15}, - [1144] = {.lex_state = 13, .external_lex_state = 13}, - [1145] = {.lex_state = 13, .external_lex_state = 12}, - [1146] = {.lex_state = 13, .external_lex_state = 12}, - [1147] = {.lex_state = 13, .external_lex_state = 13}, - [1148] = {.lex_state = 13, .external_lex_state = 13}, - [1149] = {.lex_state = 13, .external_lex_state = 12}, - [1150] = {.lex_state = 13, .external_lex_state = 12}, - [1151] = {.lex_state = 13, .external_lex_state = 13}, - [1152] = {.lex_state = 13, .external_lex_state = 13}, - [1153] = {.lex_state = 13, .external_lex_state = 13}, - [1154] = {.lex_state = 13, .external_lex_state = 13}, - [1155] = {.lex_state = 13, .external_lex_state = 12}, - [1156] = {.lex_state = 13, .external_lex_state = 8}, - [1157] = {.lex_state = 13, .external_lex_state = 12}, - [1158] = {.lex_state = 14, .external_lex_state = 14}, - [1159] = {.lex_state = 14, .external_lex_state = 12}, - [1160] = {.lex_state = 13, .external_lex_state = 13}, - [1161] = {.lex_state = 13, .external_lex_state = 13}, - [1162] = {.lex_state = 13, .external_lex_state = 13}, - [1163] = {.lex_state = 13, .external_lex_state = 13}, - [1164] = {.lex_state = 13, .external_lex_state = 13}, - [1165] = {.lex_state = 13, .external_lex_state = 13}, - [1166] = {.lex_state = 13, .external_lex_state = 13}, - [1167] = {.lex_state = 13, .external_lex_state = 13}, - [1168] = {.lex_state = 13, .external_lex_state = 13}, - [1169] = {.lex_state = 13, .external_lex_state = 13}, - [1170] = {.lex_state = 13, .external_lex_state = 12}, - [1171] = {.lex_state = 13, .external_lex_state = 13}, - [1172] = {.lex_state = 13, .external_lex_state = 13}, - [1173] = {.lex_state = 13, .external_lex_state = 12}, - [1174] = {.lex_state = 13, .external_lex_state = 12}, - [1175] = {.lex_state = 13, .external_lex_state = 12}, - [1176] = {.lex_state = 13, .external_lex_state = 12}, - [1177] = {.lex_state = 13, .external_lex_state = 12}, - [1178] = {.lex_state = 13, .external_lex_state = 12}, - [1179] = {.lex_state = 13, .external_lex_state = 13}, - [1180] = {.lex_state = 13, .external_lex_state = 13}, - [1181] = {.lex_state = 13, .external_lex_state = 13}, - [1182] = {.lex_state = 14, .external_lex_state = 14}, - [1183] = {.lex_state = 13, .external_lex_state = 13}, - [1184] = {.lex_state = 14, .external_lex_state = 14}, - [1185] = {.lex_state = 13, .external_lex_state = 13}, - [1186] = {.lex_state = 13, .external_lex_state = 13}, - [1187] = {.lex_state = 13, .external_lex_state = 13}, - [1188] = {.lex_state = 13, .external_lex_state = 13}, - [1189] = {.lex_state = 13, .external_lex_state = 13}, - [1190] = {.lex_state = 13, .external_lex_state = 13}, - [1191] = {.lex_state = 13, .external_lex_state = 13}, - [1192] = {.lex_state = 13, .external_lex_state = 13}, - [1193] = {.lex_state = 13, .external_lex_state = 13}, - [1194] = {.lex_state = 13, .external_lex_state = 12}, - [1195] = {.lex_state = 13, .external_lex_state = 8}, - [1196] = {.lex_state = 13, .external_lex_state = 13}, - [1197] = {.lex_state = 13, .external_lex_state = 13}, - [1198] = {.lex_state = 14, .external_lex_state = 14}, - [1199] = {.lex_state = 14, .external_lex_state = 14}, - [1200] = {.lex_state = 14, .external_lex_state = 14}, - [1201] = {.lex_state = 13, .external_lex_state = 12}, - [1202] = {.lex_state = 13, .external_lex_state = 12}, - [1203] = {.lex_state = 13, .external_lex_state = 14}, - [1204] = {.lex_state = 14, .external_lex_state = 14}, - [1205] = {.lex_state = 13, .external_lex_state = 13}, - [1206] = {.lex_state = 13, .external_lex_state = 8}, - [1207] = {.lex_state = 13, .external_lex_state = 13}, - [1208] = {.lex_state = 13, .external_lex_state = 13}, - [1209] = {.lex_state = 13, .external_lex_state = 13}, - [1210] = {.lex_state = 13, .external_lex_state = 12}, - [1211] = {.lex_state = 13, .external_lex_state = 12}, - [1212] = {.lex_state = 13, .external_lex_state = 12}, - [1213] = {.lex_state = 13, .external_lex_state = 12}, - [1214] = {.lex_state = 13, .external_lex_state = 12}, - [1215] = {.lex_state = 13, .external_lex_state = 12}, - [1216] = {.lex_state = 13, .external_lex_state = 12}, - [1217] = {.lex_state = 13, .external_lex_state = 12}, - [1218] = {.lex_state = 13, .external_lex_state = 13}, - [1219] = {.lex_state = 13, .external_lex_state = 13}, - [1220] = {.lex_state = 13, .external_lex_state = 12}, - [1221] = {.lex_state = 13, .external_lex_state = 12}, - [1222] = {.lex_state = 13, .external_lex_state = 8}, - [1223] = {.lex_state = 13, .external_lex_state = 13}, - [1224] = {.lex_state = 13, .external_lex_state = 13}, + [1044] = {.lex_state = 15, .external_lex_state = 13}, + [1045] = {.lex_state = 15, .external_lex_state = 13}, + [1046] = {.lex_state = 15, .external_lex_state = 13}, + [1047] = {.lex_state = 14, .external_lex_state = 9}, + [1048] = {.lex_state = 14, .external_lex_state = 15}, + [1049] = {.lex_state = 14, .external_lex_state = 15}, + [1050] = {.lex_state = 14, .external_lex_state = 15}, + [1051] = {.lex_state = 14, .external_lex_state = 15}, + [1052] = {.lex_state = 14, .external_lex_state = 15}, + [1053] = {.lex_state = 14, .external_lex_state = 15}, + [1054] = {.lex_state = 14, .external_lex_state = 15}, + [1055] = {.lex_state = 14, .external_lex_state = 15}, + [1056] = {.lex_state = 14, .external_lex_state = 15}, + [1057] = {.lex_state = 14, .external_lex_state = 14}, + [1058] = {.lex_state = 14, .external_lex_state = 9}, + [1059] = {.lex_state = 14, .external_lex_state = 9}, + [1060] = {.lex_state = 14, .external_lex_state = 9}, + [1061] = {.lex_state = 14, .external_lex_state = 9}, + [1062] = {.lex_state = 14, .external_lex_state = 9}, + [1063] = {.lex_state = 14, .external_lex_state = 9}, + [1064] = {.lex_state = 14, .external_lex_state = 9}, + [1065] = {.lex_state = 14, .external_lex_state = 14}, + [1066] = {.lex_state = 15, .external_lex_state = 13}, + [1067] = {.lex_state = 14, .external_lex_state = 14}, + [1068] = {.lex_state = 14, .external_lex_state = 9}, + [1069] = {.lex_state = 14, .external_lex_state = 14}, + [1070] = {.lex_state = 15, .external_lex_state = 14}, + [1071] = {.lex_state = 15, .external_lex_state = 14}, + [1072] = {.lex_state = 14, .external_lex_state = 14}, + [1073] = {.lex_state = 14, .external_lex_state = 14}, + [1074] = {.lex_state = 14, .external_lex_state = 9}, + [1075] = {.lex_state = 14, .external_lex_state = 14}, + [1076] = {.lex_state = 14, .external_lex_state = 9}, + [1077] = {.lex_state = 14, .external_lex_state = 7}, + [1078] = {.lex_state = 14, .external_lex_state = 9}, + [1079] = {.lex_state = 14, .external_lex_state = 9}, + [1080] = {.lex_state = 14, .external_lex_state = 9}, + [1081] = {.lex_state = 14, .external_lex_state = 7}, + [1082] = {.lex_state = 14, .external_lex_state = 9}, + [1083] = {.lex_state = 14, .external_lex_state = 9}, + [1084] = {.lex_state = 14, .external_lex_state = 9}, + [1085] = {.lex_state = 14, .external_lex_state = 6}, + [1086] = {.lex_state = 15, .external_lex_state = 12}, + [1087] = {.lex_state = 15, .external_lex_state = 12}, + [1088] = {.lex_state = 15, .external_lex_state = 12}, + [1089] = {.lex_state = 14, .external_lex_state = 6}, + [1090] = {.lex_state = 14, .external_lex_state = 9}, + [1091] = {.lex_state = 14, .external_lex_state = 9}, + [1092] = {.lex_state = 14, .external_lex_state = 9}, + [1093] = {.lex_state = 15, .external_lex_state = 13}, + [1094] = {.lex_state = 15, .external_lex_state = 13}, + [1095] = {.lex_state = 14, .external_lex_state = 9}, + [1096] = {.lex_state = 14, .external_lex_state = 6}, + [1097] = {.lex_state = 14, .external_lex_state = 9}, + [1098] = {.lex_state = 14, .external_lex_state = 14}, + [1099] = {.lex_state = 14, .external_lex_state = 14}, + [1100] = {.lex_state = 14, .external_lex_state = 9}, + [1101] = {.lex_state = 14, .external_lex_state = 6}, + [1102] = {.lex_state = 14, .external_lex_state = 14}, + [1103] = {.lex_state = 14, .external_lex_state = 14}, + [1104] = {.lex_state = 14, .external_lex_state = 14}, + [1105] = {.lex_state = 14, .external_lex_state = 14}, + [1106] = {.lex_state = 14, .external_lex_state = 14}, + [1107] = {.lex_state = 14, .external_lex_state = 14}, + [1108] = {.lex_state = 14, .external_lex_state = 14}, + [1109] = {.lex_state = 14, .external_lex_state = 14}, + [1110] = {.lex_state = 14, .external_lex_state = 9}, + [1111] = {.lex_state = 14, .external_lex_state = 7}, + [1112] = {.lex_state = 15, .external_lex_state = 13}, + [1113] = {.lex_state = 15, .external_lex_state = 13}, + [1114] = {.lex_state = 15, .external_lex_state = 13}, + [1115] = {.lex_state = 14, .external_lex_state = 7}, + [1116] = {.lex_state = 14, .external_lex_state = 7}, + [1117] = {.lex_state = 14, .external_lex_state = 9}, + [1118] = {.lex_state = 14, .external_lex_state = 9}, + [1119] = {.lex_state = 14, .external_lex_state = 9}, + [1120] = {.lex_state = 14, .external_lex_state = 9}, + [1121] = {.lex_state = 15, .external_lex_state = 14}, + [1122] = {.lex_state = 15, .external_lex_state = 14}, + [1123] = {.lex_state = 15, .external_lex_state = 14}, + [1124] = {.lex_state = 15, .external_lex_state = 13}, + [1125] = {.lex_state = 15, .external_lex_state = 13}, + [1126] = {.lex_state = 15, .external_lex_state = 13}, + [1127] = {.lex_state = 15, .external_lex_state = 12}, + [1128] = {.lex_state = 14, .external_lex_state = 9}, + [1129] = {.lex_state = 15, .external_lex_state = 9}, + [1130] = {.lex_state = 15, .external_lex_state = 9}, + [1131] = {.lex_state = 14, .external_lex_state = 14}, + [1132] = {.lex_state = 14, .external_lex_state = 14}, + [1133] = {.lex_state = 14, .external_lex_state = 9}, + [1134] = {.lex_state = 14, .external_lex_state = 15}, + [1135] = {.lex_state = 15, .external_lex_state = 12}, + [1136] = {.lex_state = 15, .external_lex_state = 12}, + [1137] = {.lex_state = 14, .external_lex_state = 9}, + [1138] = {.lex_state = 14, .external_lex_state = 9}, + [1139] = {.lex_state = 14, .external_lex_state = 9}, + [1140] = {.lex_state = 14, .external_lex_state = 9}, + [1141] = {.lex_state = 14, .external_lex_state = 13}, + [1142] = {.lex_state = 14, .external_lex_state = 12}, + [1143] = {.lex_state = 14, .external_lex_state = 12}, + [1144] = {.lex_state = 14, .external_lex_state = 13}, + [1145] = {.lex_state = 14, .external_lex_state = 13}, + [1146] = {.lex_state = 14, .external_lex_state = 13}, + [1147] = {.lex_state = 14, .external_lex_state = 13}, + [1148] = {.lex_state = 14, .external_lex_state = 13}, + [1149] = {.lex_state = 14, .external_lex_state = 13}, + [1150] = {.lex_state = 14, .external_lex_state = 13}, + [1151] = {.lex_state = 14, .external_lex_state = 12}, + [1152] = {.lex_state = 14, .external_lex_state = 13}, + [1153] = {.lex_state = 14, .external_lex_state = 13}, + [1154] = {.lex_state = 14, .external_lex_state = 13}, + [1155] = {.lex_state = 14, .external_lex_state = 12}, + [1156] = {.lex_state = 14, .external_lex_state = 12}, + [1157] = {.lex_state = 14, .external_lex_state = 12}, + [1158] = {.lex_state = 14, .external_lex_state = 13}, + [1159] = {.lex_state = 14, .external_lex_state = 13}, + [1160] = {.lex_state = 14, .external_lex_state = 12}, + [1161] = {.lex_state = 14, .external_lex_state = 12}, + [1162] = {.lex_state = 14, .external_lex_state = 13}, + [1163] = {.lex_state = 14, .external_lex_state = 12}, + [1164] = {.lex_state = 14, .external_lex_state = 13}, + [1165] = {.lex_state = 14, .external_lex_state = 12}, + [1166] = {.lex_state = 14, .external_lex_state = 13}, + [1167] = {.lex_state = 14, .external_lex_state = 2}, + [1168] = {.lex_state = 15, .external_lex_state = 14}, + [1169] = {.lex_state = 14, .external_lex_state = 13}, + [1170] = {.lex_state = 14, .external_lex_state = 13}, + [1171] = {.lex_state = 14, .external_lex_state = 13}, + [1172] = {.lex_state = 14, .external_lex_state = 14}, + [1173] = {.lex_state = 14, .external_lex_state = 13}, + [1174] = {.lex_state = 14, .external_lex_state = 14}, + [1175] = {.lex_state = 14, .external_lex_state = 12}, + [1176] = {.lex_state = 14, .external_lex_state = 13}, + [1177] = {.lex_state = 14, .external_lex_state = 13}, + [1178] = {.lex_state = 14, .external_lex_state = 12}, + [1179] = {.lex_state = 14, .external_lex_state = 12}, + [1180] = {.lex_state = 14, .external_lex_state = 13}, + [1181] = {.lex_state = 14, .external_lex_state = 13}, + [1182] = {.lex_state = 14, .external_lex_state = 13}, + [1183] = {.lex_state = 14, .external_lex_state = 12}, + [1184] = {.lex_state = 14, .external_lex_state = 13}, + [1185] = {.lex_state = 15, .external_lex_state = 14}, + [1186] = {.lex_state = 15, .external_lex_state = 14}, + [1187] = {.lex_state = 14, .external_lex_state = 12}, + [1188] = {.lex_state = 14, .external_lex_state = 12}, + [1189] = {.lex_state = 14, .external_lex_state = 13}, + [1190] = {.lex_state = 14, .external_lex_state = 13}, + [1191] = {.lex_state = 14, .external_lex_state = 13}, + [1192] = {.lex_state = 14, .external_lex_state = 13}, + [1193] = {.lex_state = 14, .external_lex_state = 13}, + [1194] = {.lex_state = 14, .external_lex_state = 13}, + [1195] = {.lex_state = 14, .external_lex_state = 13}, + [1196] = {.lex_state = 14, .external_lex_state = 13}, + [1197] = {.lex_state = 14, .external_lex_state = 13}, + [1198] = {.lex_state = 14, .external_lex_state = 13}, + [1199] = {.lex_state = 15, .external_lex_state = 12}, + [1200] = {.lex_state = 14, .external_lex_state = 13}, + [1201] = {.lex_state = 14, .external_lex_state = 13}, + [1202] = {.lex_state = 14, .external_lex_state = 2}, + [1203] = {.lex_state = 14, .external_lex_state = 12}, + [1204] = {.lex_state = 14, .external_lex_state = 12}, + [1205] = {.lex_state = 14, .external_lex_state = 12}, + [1206] = {.lex_state = 14, .external_lex_state = 14}, + [1207] = {.lex_state = 15, .external_lex_state = 14}, + [1208] = {.lex_state = 14, .external_lex_state = 12}, + [1209] = {.lex_state = 14, .external_lex_state = 12}, + [1210] = {.lex_state = 14, .external_lex_state = 12}, + [1211] = {.lex_state = 14, .external_lex_state = 12}, + [1212] = {.lex_state = 14, .external_lex_state = 13}, + [1213] = {.lex_state = 14, .external_lex_state = 12}, + [1214] = {.lex_state = 14, .external_lex_state = 12}, + [1215] = {.lex_state = 14, .external_lex_state = 12}, + [1216] = {.lex_state = 14, .external_lex_state = 12}, + [1217] = {.lex_state = 14, .external_lex_state = 12}, + [1218] = {.lex_state = 14, .external_lex_state = 12}, + [1219] = {.lex_state = 14, .external_lex_state = 12}, + [1220] = {.lex_state = 14, .external_lex_state = 12}, + [1221] = {.lex_state = 14, .external_lex_state = 13}, + [1222] = {.lex_state = 14, .external_lex_state = 13}, + [1223] = {.lex_state = 14, .external_lex_state = 13}, + [1224] = {.lex_state = 14, .external_lex_state = 14}, [1225] = {.lex_state = 14, .external_lex_state = 12}, - [1226] = {.lex_state = 14, .external_lex_state = 12}, - [1227] = {.lex_state = 14, .external_lex_state = 14}, - [1228] = {.lex_state = 14, .external_lex_state = 15}, - [1229] = {.lex_state = 13, .external_lex_state = 12}, - [1230] = {.lex_state = 13, .external_lex_state = 13}, - [1231] = {.lex_state = 13, .external_lex_state = 14}, - [1232] = {.lex_state = 14, .external_lex_state = 15}, - [1233] = {.lex_state = 13, .external_lex_state = 13}, - [1234] = {.lex_state = 14, .external_lex_state = 14}, - [1235] = {.lex_state = 14, .external_lex_state = 14}, - [1236] = {.lex_state = 14, .external_lex_state = 14}, - [1237] = {.lex_state = 13, .external_lex_state = 14}, - [1238] = {.lex_state = 13, .external_lex_state = 14}, - [1239] = {.lex_state = 13, .external_lex_state = 14}, - [1240] = {.lex_state = 14, .external_lex_state = 15}, - [1241] = {.lex_state = 13, .external_lex_state = 12}, - [1242] = {.lex_state = 13, .external_lex_state = 13}, - [1243] = {.lex_state = 13, .external_lex_state = 13}, - [1244] = {.lex_state = 13, .external_lex_state = 13}, - [1245] = {.lex_state = 13, .external_lex_state = 13}, - [1246] = {.lex_state = 13, .external_lex_state = 13}, - [1247] = {.lex_state = 13, .external_lex_state = 14}, - [1248] = {.lex_state = 13, .external_lex_state = 14}, - [1249] = {.lex_state = 13, .external_lex_state = 12}, - [1250] = {.lex_state = 13, .external_lex_state = 13}, - [1251] = {.lex_state = 13, .external_lex_state = 12}, - [1252] = {.lex_state = 13, .external_lex_state = 12}, - [1253] = {.lex_state = 14, .external_lex_state = 12}, - [1254] = {.lex_state = 13, .external_lex_state = 2}, - [1255] = {.lex_state = 13, .external_lex_state = 13}, - [1256] = {.lex_state = 13, .external_lex_state = 13}, - [1257] = {.lex_state = 13, .external_lex_state = 13}, - [1258] = {.lex_state = 13, .external_lex_state = 13}, - [1259] = {.lex_state = 13, .external_lex_state = 13}, - [1260] = {.lex_state = 13, .external_lex_state = 13}, - [1261] = {.lex_state = 13, .external_lex_state = 13}, - [1262] = {.lex_state = 13, .external_lex_state = 13}, - [1263] = {.lex_state = 14, .external_lex_state = 12}, - [1264] = {.lex_state = 14, .external_lex_state = 12}, - [1265] = {.lex_state = 13, .external_lex_state = 12}, - [1266] = {.lex_state = 13, .external_lex_state = 13}, - [1267] = {.lex_state = 13, .external_lex_state = 13}, - [1268] = {.lex_state = 13, .external_lex_state = 2}, - [1269] = {.lex_state = 13, .external_lex_state = 13}, - [1270] = {.lex_state = 13, .external_lex_state = 12}, - [1271] = {.lex_state = 13, .external_lex_state = 12}, - [1272] = {.lex_state = 13, .external_lex_state = 13}, - [1273] = {.lex_state = 13, .external_lex_state = 13}, - [1274] = {.lex_state = 13, .external_lex_state = 12}, - [1275] = {.lex_state = 13, .external_lex_state = 13}, - [1276] = {.lex_state = 13, .external_lex_state = 13}, - [1277] = {.lex_state = 13, .external_lex_state = 12}, - [1278] = {.lex_state = 13, .external_lex_state = 12}, - [1279] = {.lex_state = 13, .external_lex_state = 13}, - [1280] = {.lex_state = 13, .external_lex_state = 12}, - [1281] = {.lex_state = 13, .external_lex_state = 12}, - [1282] = {.lex_state = 13, .external_lex_state = 13}, - [1283] = {.lex_state = 13, .external_lex_state = 12}, - [1284] = {.lex_state = 13, .external_lex_state = 12}, - [1285] = {.lex_state = 13, .external_lex_state = 15}, - [1286] = {.lex_state = 13, .external_lex_state = 14}, - [1287] = {.lex_state = 13, .external_lex_state = 14}, - [1288] = {.lex_state = 13, .external_lex_state = 14}, - [1289] = {.lex_state = 13, .external_lex_state = 14}, - [1290] = {.lex_state = 13, .external_lex_state = 14}, - [1291] = {.lex_state = 13, .external_lex_state = 14}, - [1292] = {.lex_state = 13, .external_lex_state = 14}, - [1293] = {.lex_state = 13, .external_lex_state = 14}, - [1294] = {.lex_state = 13, .external_lex_state = 14}, - [1295] = {.lex_state = 13, .external_lex_state = 15}, - [1296] = {.lex_state = 13, .external_lex_state = 14}, - [1297] = {.lex_state = 13, .external_lex_state = 14}, - [1298] = {.lex_state = 13, .external_lex_state = 15}, - [1299] = {.lex_state = 13, .external_lex_state = 15}, - [1300] = {.lex_state = 13, .external_lex_state = 15}, - [1301] = {.lex_state = 13, .external_lex_state = 14}, - [1302] = {.lex_state = 13, .external_lex_state = 15}, - [1303] = {.lex_state = 13, .external_lex_state = 15}, - [1304] = {.lex_state = 13, .external_lex_state = 14}, - [1305] = {.lex_state = 13, .external_lex_state = 14}, - [1306] = {.lex_state = 13, .external_lex_state = 14}, - [1307] = {.lex_state = 13, .external_lex_state = 14}, - [1308] = {.lex_state = 13, .external_lex_state = 14}, - [1309] = {.lex_state = 13, .external_lex_state = 14}, - [1310] = {.lex_state = 13, .external_lex_state = 14}, - [1311] = {.lex_state = 13, .external_lex_state = 14}, - [1312] = {.lex_state = 13, .external_lex_state = 14}, - [1313] = {.lex_state = 13, .external_lex_state = 14}, - [1314] = {.lex_state = 13, .external_lex_state = 14}, - [1315] = {.lex_state = 13, .external_lex_state = 14}, - [1316] = {.lex_state = 13, .external_lex_state = 15}, - [1317] = {.lex_state = 13, .external_lex_state = 14}, - [1318] = {.lex_state = 13, .external_lex_state = 14}, - [1319] = {.lex_state = 13, .external_lex_state = 14}, - [1320] = {.lex_state = 13, .external_lex_state = 14}, - [1321] = {.lex_state = 13, .external_lex_state = 14}, - [1322] = {.lex_state = 14, .external_lex_state = 14}, + [1226] = {.lex_state = 14, .external_lex_state = 13}, + [1227] = {.lex_state = 14, .external_lex_state = 13}, + [1228] = {.lex_state = 14, .external_lex_state = 13}, + [1229] = {.lex_state = 14, .external_lex_state = 13}, + [1230] = {.lex_state = 14, .external_lex_state = 8}, + [1231] = {.lex_state = 14, .external_lex_state = 13}, + [1232] = {.lex_state = 14, .external_lex_state = 13}, + [1233] = {.lex_state = 14, .external_lex_state = 13}, + [1234] = {.lex_state = 15, .external_lex_state = 14}, + [1235] = {.lex_state = 14, .external_lex_state = 13}, + [1236] = {.lex_state = 14, .external_lex_state = 12}, + [1237] = {.lex_state = 14, .external_lex_state = 12}, + [1238] = {.lex_state = 14, .external_lex_state = 13}, + [1239] = {.lex_state = 14, .external_lex_state = 8}, + [1240] = {.lex_state = 14, .external_lex_state = 13}, + [1241] = {.lex_state = 14, .external_lex_state = 13}, + [1242] = {.lex_state = 14, .external_lex_state = 12}, + [1243] = {.lex_state = 14, .external_lex_state = 12}, + [1244] = {.lex_state = 14, .external_lex_state = 12}, + [1245] = {.lex_state = 14, .external_lex_state = 12}, + [1246] = {.lex_state = 14, .external_lex_state = 12}, + [1247] = {.lex_state = 14, .external_lex_state = 12}, + [1248] = {.lex_state = 14, .external_lex_state = 12}, + [1249] = {.lex_state = 14, .external_lex_state = 12}, + [1250] = {.lex_state = 14, .external_lex_state = 13}, + [1251] = {.lex_state = 14, .external_lex_state = 12}, + [1252] = {.lex_state = 14, .external_lex_state = 12}, + [1253] = {.lex_state = 14, .external_lex_state = 13}, + [1254] = {.lex_state = 14, .external_lex_state = 13}, + [1255] = {.lex_state = 14, .external_lex_state = 12}, + [1256] = {.lex_state = 14, .external_lex_state = 13}, + [1257] = {.lex_state = 14, .external_lex_state = 12}, + [1258] = {.lex_state = 15, .external_lex_state = 14}, + [1259] = {.lex_state = 15, .external_lex_state = 14}, + [1260] = {.lex_state = 15, .external_lex_state = 14}, + [1261] = {.lex_state = 15, .external_lex_state = 14}, + [1262] = {.lex_state = 14, .external_lex_state = 14}, + [1263] = {.lex_state = 15, .external_lex_state = 14}, + [1264] = {.lex_state = 14, .external_lex_state = 13}, + [1265] = {.lex_state = 14, .external_lex_state = 13}, + [1266] = {.lex_state = 14, .external_lex_state = 13}, + [1267] = {.lex_state = 15, .external_lex_state = 12}, + [1268] = {.lex_state = 15, .external_lex_state = 12}, + [1269] = {.lex_state = 15, .external_lex_state = 15}, + [1270] = {.lex_state = 15, .external_lex_state = 14}, + [1271] = {.lex_state = 15, .external_lex_state = 14}, + [1272] = {.lex_state = 14, .external_lex_state = 8}, + [1273] = {.lex_state = 15, .external_lex_state = 12}, + [1274] = {.lex_state = 15, .external_lex_state = 12}, + [1275] = {.lex_state = 14, .external_lex_state = 13}, + [1276] = {.lex_state = 15, .external_lex_state = 15}, + [1277] = {.lex_state = 15, .external_lex_state = 15}, + [1278] = {.lex_state = 15, .external_lex_state = 15}, + [1279] = {.lex_state = 14, .external_lex_state = 13}, + [1280] = {.lex_state = 14, .external_lex_state = 13}, + [1281] = {.lex_state = 14, .external_lex_state = 13}, + [1282] = {.lex_state = 14, .external_lex_state = 13}, + [1283] = {.lex_state = 15, .external_lex_state = 15}, + [1284] = {.lex_state = 14, .external_lex_state = 13}, + [1285] = {.lex_state = 14, .external_lex_state = 13}, + [1286] = {.lex_state = 14, .external_lex_state = 8}, + [1287] = {.lex_state = 14, .external_lex_state = 13}, + [1288] = {.lex_state = 14, .external_lex_state = 12}, + [1289] = {.lex_state = 15, .external_lex_state = 12}, + [1290] = {.lex_state = 14, .external_lex_state = 13}, + [1291] = {.lex_state = 14, .external_lex_state = 14}, + [1292] = {.lex_state = 14, .external_lex_state = 14}, + [1293] = {.lex_state = 14, .external_lex_state = 13}, + [1294] = {.lex_state = 14, .external_lex_state = 14}, + [1295] = {.lex_state = 14, .external_lex_state = 14}, + [1296] = {.lex_state = 15, .external_lex_state = 14}, + [1297] = {.lex_state = 14, .external_lex_state = 14}, + [1298] = {.lex_state = 14, .external_lex_state = 14}, + [1299] = {.lex_state = 14, .external_lex_state = 14}, + [1300] = {.lex_state = 14, .external_lex_state = 14}, + [1301] = {.lex_state = 14, .external_lex_state = 14}, + [1302] = {.lex_state = 14, .external_lex_state = 14}, + [1303] = {.lex_state = 15, .external_lex_state = 12}, + [1304] = {.lex_state = 15, .external_lex_state = 12}, + [1305] = {.lex_state = 15, .external_lex_state = 12}, + [1306] = {.lex_state = 14, .external_lex_state = 14}, + [1307] = {.lex_state = 14, .external_lex_state = 14}, + [1308] = {.lex_state = 14, .external_lex_state = 15}, + [1309] = {.lex_state = 14, .external_lex_state = 14}, + [1310] = {.lex_state = 14, .external_lex_state = 14}, + [1311] = {.lex_state = 14, .external_lex_state = 14}, + [1312] = {.lex_state = 14, .external_lex_state = 14}, + [1313] = {.lex_state = 14, .external_lex_state = 14}, + [1314] = {.lex_state = 14, .external_lex_state = 14}, + [1315] = {.lex_state = 14, .external_lex_state = 14}, + [1316] = {.lex_state = 14, .external_lex_state = 14}, + [1317] = {.lex_state = 14, .external_lex_state = 14}, + [1318] = {.lex_state = 14, .external_lex_state = 14}, + [1319] = {.lex_state = 14, .external_lex_state = 15}, + [1320] = {.lex_state = 14, .external_lex_state = 14}, + [1321] = {.lex_state = 14, .external_lex_state = 14}, + [1322] = {.lex_state = 15, .external_lex_state = 14}, [1323] = {.lex_state = 14, .external_lex_state = 14}, [1324] = {.lex_state = 14, .external_lex_state = 14}, - [1325] = {.lex_state = 13, .external_lex_state = 14}, - [1326] = {.lex_state = 13, .external_lex_state = 14}, - [1327] = {.lex_state = 13, .external_lex_state = 14}, - [1328] = {.lex_state = 13, .external_lex_state = 14}, - [1329] = {.lex_state = 8, .external_lex_state = 11}, - [1330] = {.lex_state = 8, .external_lex_state = 11}, - [1331] = {.lex_state = 13, .external_lex_state = 14}, - [1332] = {.lex_state = 13, .external_lex_state = 15}, - [1333] = {.lex_state = 13, .external_lex_state = 14}, - [1334] = {.lex_state = 13, .external_lex_state = 14}, - [1335] = {.lex_state = 13, .external_lex_state = 14}, - [1336] = {.lex_state = 13, .external_lex_state = 14}, - [1337] = {.lex_state = 13, .external_lex_state = 14}, - [1338] = {.lex_state = 13, .external_lex_state = 14}, - [1339] = {.lex_state = 13, .external_lex_state = 7}, - [1340] = {.lex_state = 13, .external_lex_state = 14}, - [1341] = {.lex_state = 13, .external_lex_state = 12}, - [1342] = {.lex_state = 13, .external_lex_state = 14}, - [1343] = {.lex_state = 13, .external_lex_state = 14}, - [1344] = {.lex_state = 13, .external_lex_state = 7}, - [1345] = {.lex_state = 8, .external_lex_state = 11}, - [1346] = {.lex_state = 8, .external_lex_state = 11}, - [1347] = {.lex_state = 8, .external_lex_state = 11}, - [1348] = {.lex_state = 13, .external_lex_state = 14}, - [1349] = {.lex_state = 13, .external_lex_state = 14}, - [1350] = {.lex_state = 8, .external_lex_state = 11}, - [1351] = {.lex_state = 13, .external_lex_state = 15}, - [1352] = {.lex_state = 13, .external_lex_state = 12}, - [1353] = {.lex_state = 13, .external_lex_state = 15}, - [1354] = {.lex_state = 13, .external_lex_state = 14}, - [1355] = {.lex_state = 13, .external_lex_state = 14}, - [1356] = {.lex_state = 13, .external_lex_state = 14}, - [1357] = {.lex_state = 13, .external_lex_state = 14}, - [1358] = {.lex_state = 13, .external_lex_state = 14}, - [1359] = {.lex_state = 13, .external_lex_state = 14}, - [1360] = {.lex_state = 13, .external_lex_state = 14}, - [1361] = {.lex_state = 13, .external_lex_state = 15}, - [1362] = {.lex_state = 13, .external_lex_state = 14}, - [1363] = {.lex_state = 13, .external_lex_state = 14}, - [1364] = {.lex_state = 13, .external_lex_state = 14}, - [1365] = {.lex_state = 13, .external_lex_state = 14}, - [1366] = {.lex_state = 13, .external_lex_state = 12}, - [1367] = {.lex_state = 13, .external_lex_state = 14}, - [1368] = {.lex_state = 13, .external_lex_state = 12}, - [1369] = {.lex_state = 13, .external_lex_state = 15}, - [1370] = {.lex_state = 13, .external_lex_state = 15}, - [1371] = {.lex_state = 13, .external_lex_state = 15}, - [1372] = {.lex_state = 13, .external_lex_state = 15}, - [1373] = {.lex_state = 13, .external_lex_state = 14}, - [1374] = {.lex_state = 13, .external_lex_state = 14}, - [1375] = {.lex_state = 13, .external_lex_state = 14}, - [1376] = {.lex_state = 13, .external_lex_state = 14}, - [1377] = {.lex_state = 13, .external_lex_state = 15}, - [1378] = {.lex_state = 13, .external_lex_state = 15}, - [1379] = {.lex_state = 13, .external_lex_state = 14}, - [1380] = {.lex_state = 13, .external_lex_state = 14}, - [1381] = {.lex_state = 13, .external_lex_state = 14}, - [1382] = {.lex_state = 13, .external_lex_state = 15}, - [1383] = {.lex_state = 13, .external_lex_state = 15}, - [1384] = {.lex_state = 13, .external_lex_state = 15}, - [1385] = {.lex_state = 13, .external_lex_state = 15}, - [1386] = {.lex_state = 13, .external_lex_state = 15}, - [1387] = {.lex_state = 13, .external_lex_state = 14}, - [1388] = {.lex_state = 13, .external_lex_state = 14}, - [1389] = {.lex_state = 13, .external_lex_state = 15}, - [1390] = {.lex_state = 13, .external_lex_state = 15}, - [1391] = {.lex_state = 14, .external_lex_state = 12}, - [1392] = {.lex_state = 13, .external_lex_state = 15}, - [1393] = {.lex_state = 13, .external_lex_state = 15}, - [1394] = {.lex_state = 13, .external_lex_state = 15}, - [1395] = {.lex_state = 14, .external_lex_state = 12}, - [1396] = {.lex_state = 13, .external_lex_state = 15}, - [1397] = {.lex_state = 14, .external_lex_state = 12}, - [1398] = {.lex_state = 13, .external_lex_state = 14}, - [1399] = {.lex_state = 13, .external_lex_state = 14}, - [1400] = {.lex_state = 13, .external_lex_state = 14}, - [1401] = {.lex_state = 13, .external_lex_state = 14}, - [1402] = {.lex_state = 13, .external_lex_state = 15}, - [1403] = {.lex_state = 13, .external_lex_state = 15}, - [1404] = {.lex_state = 13, .external_lex_state = 15}, - [1405] = {.lex_state = 13, .external_lex_state = 15}, - [1406] = {.lex_state = 13, .external_lex_state = 15}, - [1407] = {.lex_state = 13, .external_lex_state = 15}, - [1408] = {.lex_state = 13, .external_lex_state = 15}, - [1409] = {.lex_state = 13, .external_lex_state = 11}, - [1410] = {.lex_state = 13, .external_lex_state = 14}, - [1411] = {.lex_state = 13, .external_lex_state = 12}, - [1412] = {.lex_state = 13, .external_lex_state = 12}, - [1413] = {.lex_state = 14, .external_lex_state = 13}, - [1414] = {.lex_state = 13, .external_lex_state = 12}, - [1415] = {.lex_state = 13, .external_lex_state = 12}, - [1416] = {.lex_state = 13, .external_lex_state = 12}, - [1417] = {.lex_state = 13, .external_lex_state = 12}, - [1418] = {.lex_state = 13, .external_lex_state = 12}, - [1419] = {.lex_state = 13, .external_lex_state = 12}, - [1420] = {.lex_state = 13, .external_lex_state = 12}, - [1421] = {.lex_state = 14, .external_lex_state = 14}, - [1422] = {.lex_state = 13, .external_lex_state = 12}, + [1325] = {.lex_state = 14, .external_lex_state = 14}, + [1326] = {.lex_state = 14, .external_lex_state = 15}, + [1327] = {.lex_state = 14, .external_lex_state = 14}, + [1328] = {.lex_state = 14, .external_lex_state = 14}, + [1329] = {.lex_state = 14, .external_lex_state = 14}, + [1330] = {.lex_state = 14, .external_lex_state = 14}, + [1331] = {.lex_state = 14, .external_lex_state = 14}, + [1332] = {.lex_state = 14, .external_lex_state = 14}, + [1333] = {.lex_state = 14, .external_lex_state = 14}, + [1334] = {.lex_state = 14, .external_lex_state = 14}, + [1335] = {.lex_state = 14, .external_lex_state = 14}, + [1336] = {.lex_state = 14, .external_lex_state = 14}, + [1337] = {.lex_state = 14, .external_lex_state = 14}, + [1338] = {.lex_state = 14, .external_lex_state = 15}, + [1339] = {.lex_state = 14, .external_lex_state = 12}, + [1340] = {.lex_state = 14, .external_lex_state = 14}, + [1341] = {.lex_state = 14, .external_lex_state = 14}, + [1342] = {.lex_state = 14, .external_lex_state = 12}, + [1343] = {.lex_state = 14, .external_lex_state = 15}, + [1344] = {.lex_state = 14, .external_lex_state = 12}, + [1345] = {.lex_state = 14, .external_lex_state = 15}, + [1346] = {.lex_state = 14, .external_lex_state = 15}, + [1347] = {.lex_state = 14, .external_lex_state = 15}, + [1348] = {.lex_state = 14, .external_lex_state = 14}, + [1349] = {.lex_state = 14, .external_lex_state = 15}, + [1350] = {.lex_state = 14, .external_lex_state = 15}, + [1351] = {.lex_state = 14, .external_lex_state = 15}, + [1352] = {.lex_state = 14, .external_lex_state = 15}, + [1353] = {.lex_state = 14, .external_lex_state = 15}, + [1354] = {.lex_state = 14, .external_lex_state = 15}, + [1355] = {.lex_state = 14, .external_lex_state = 14}, + [1356] = {.lex_state = 14, .external_lex_state = 15}, + [1357] = {.lex_state = 14, .external_lex_state = 14}, + [1358] = {.lex_state = 14, .external_lex_state = 14}, + [1359] = {.lex_state = 14, .external_lex_state = 14}, + [1360] = {.lex_state = 14, .external_lex_state = 15}, + [1361] = {.lex_state = 14, .external_lex_state = 15}, + [1362] = {.lex_state = 14, .external_lex_state = 15}, + [1363] = {.lex_state = 9, .external_lex_state = 9}, + [1364] = {.lex_state = 9, .external_lex_state = 9}, + [1365] = {.lex_state = 14, .external_lex_state = 12}, + [1366] = {.lex_state = 14, .external_lex_state = 14}, + [1367] = {.lex_state = 14, .external_lex_state = 14}, + [1368] = {.lex_state = 14, .external_lex_state = 14}, + [1369] = {.lex_state = 14, .external_lex_state = 14}, + [1370] = {.lex_state = 14, .external_lex_state = 14}, + [1371] = {.lex_state = 14, .external_lex_state = 14}, + [1372] = {.lex_state = 14, .external_lex_state = 7}, + [1373] = {.lex_state = 14, .external_lex_state = 14}, + [1374] = {.lex_state = 14, .external_lex_state = 14}, + [1375] = {.lex_state = 14, .external_lex_state = 7}, + [1376] = {.lex_state = 9, .external_lex_state = 9}, + [1377] = {.lex_state = 9, .external_lex_state = 9}, + [1378] = {.lex_state = 9, .external_lex_state = 9}, + [1379] = {.lex_state = 14, .external_lex_state = 14}, + [1380] = {.lex_state = 14, .external_lex_state = 15}, + [1381] = {.lex_state = 14, .external_lex_state = 14}, + [1382] = {.lex_state = 9, .external_lex_state = 9}, + [1383] = {.lex_state = 14, .external_lex_state = 15}, + [1384] = {.lex_state = 14, .external_lex_state = 15}, + [1385] = {.lex_state = 14, .external_lex_state = 15}, + [1386] = {.lex_state = 14, .external_lex_state = 15}, + [1387] = {.lex_state = 14, .external_lex_state = 14}, + [1388] = {.lex_state = 14, .external_lex_state = 15}, + [1389] = {.lex_state = 14, .external_lex_state = 15}, + [1390] = {.lex_state = 14, .external_lex_state = 14}, + [1391] = {.lex_state = 14, .external_lex_state = 15}, + [1392] = {.lex_state = 14, .external_lex_state = 14}, + [1393] = {.lex_state = 14, .external_lex_state = 14}, + [1394] = {.lex_state = 14, .external_lex_state = 15}, + [1395] = {.lex_state = 14, .external_lex_state = 14}, + [1396] = {.lex_state = 14, .external_lex_state = 15}, + [1397] = {.lex_state = 14, .external_lex_state = 15}, + [1398] = {.lex_state = 14, .external_lex_state = 14}, + [1399] = {.lex_state = 14, .external_lex_state = 14}, + [1400] = {.lex_state = 14, .external_lex_state = 14}, + [1401] = {.lex_state = 14, .external_lex_state = 14}, + [1402] = {.lex_state = 14, .external_lex_state = 15}, + [1403] = {.lex_state = 14, .external_lex_state = 14}, + [1404] = {.lex_state = 14, .external_lex_state = 15}, + [1405] = {.lex_state = 14, .external_lex_state = 15}, + [1406] = {.lex_state = 14, .external_lex_state = 15}, + [1407] = {.lex_state = 14, .external_lex_state = 14}, + [1408] = {.lex_state = 14, .external_lex_state = 15}, + [1409] = {.lex_state = 14, .external_lex_state = 14}, + [1410] = {.lex_state = 14, .external_lex_state = 15}, + [1411] = {.lex_state = 14, .external_lex_state = 14}, + [1412] = {.lex_state = 14, .external_lex_state = 14}, + [1413] = {.lex_state = 15, .external_lex_state = 14}, + [1414] = {.lex_state = 14, .external_lex_state = 14}, + [1415] = {.lex_state = 14, .external_lex_state = 14}, + [1416] = {.lex_state = 14, .external_lex_state = 14}, + [1417] = {.lex_state = 14, .external_lex_state = 9}, + [1418] = {.lex_state = 14, .external_lex_state = 14}, + [1419] = {.lex_state = 14, .external_lex_state = 15}, + [1420] = {.lex_state = 15, .external_lex_state = 12}, + [1421] = {.lex_state = 14, .external_lex_state = 12}, + [1422] = {.lex_state = 14, .external_lex_state = 12}, [1423] = {.lex_state = 14, .external_lex_state = 12}, - [1424] = {.lex_state = 13, .external_lex_state = 12}, + [1424] = {.lex_state = 14, .external_lex_state = 12}, [1425] = {.lex_state = 14, .external_lex_state = 12}, - [1426] = {.lex_state = 13, .external_lex_state = 12}, + [1426] = {.lex_state = 14, .external_lex_state = 12}, [1427] = {.lex_state = 14, .external_lex_state = 12}, - [1428] = {.lex_state = 13, .external_lex_state = 12}, - [1429] = {.lex_state = 13, .external_lex_state = 12}, - [1430] = {.lex_state = 13, .external_lex_state = 12}, - [1431] = {.lex_state = 13, .external_lex_state = 12}, - [1432] = {.lex_state = 13, .external_lex_state = 12}, - [1433] = {.lex_state = 13, .external_lex_state = 12}, - [1434] = {.lex_state = 13, .external_lex_state = 12}, - [1435] = {.lex_state = 13, .external_lex_state = 12}, - [1436] = {.lex_state = 13, .external_lex_state = 12}, - [1437] = {.lex_state = 13, .external_lex_state = 12}, - [1438] = {.lex_state = 13, .external_lex_state = 12}, - [1439] = {.lex_state = 13, .external_lex_state = 12}, - [1440] = {.lex_state = 13, .external_lex_state = 12}, - [1441] = {.lex_state = 13, .external_lex_state = 12}, - [1442] = {.lex_state = 14, .external_lex_state = 14}, - [1443] = {.lex_state = 14, .external_lex_state = 14}, - [1444] = {.lex_state = 13, .external_lex_state = 12}, - [1445] = {.lex_state = 13, .external_lex_state = 12}, - [1446] = {.lex_state = 13, .external_lex_state = 15}, - [1447] = {.lex_state = 13, .external_lex_state = 12}, - [1448] = {.lex_state = 13, .external_lex_state = 12}, - [1449] = {.lex_state = 13, .external_lex_state = 12}, - [1450] = {.lex_state = 13, .external_lex_state = 12}, - [1451] = {.lex_state = 14, .external_lex_state = 13}, - [1452] = {.lex_state = 14, .external_lex_state = 13}, - [1453] = {.lex_state = 13, .external_lex_state = 12}, - [1454] = {.lex_state = 13, .external_lex_state = 12}, - [1455] = {.lex_state = 13, .external_lex_state = 12}, - [1456] = {.lex_state = 13, .external_lex_state = 12}, - [1457] = {.lex_state = 13, .external_lex_state = 12}, - [1458] = {.lex_state = 13, .external_lex_state = 12}, - [1459] = {.lex_state = 8, .external_lex_state = 15}, - [1460] = {.lex_state = 8, .external_lex_state = 15}, - [1461] = {.lex_state = 8, .external_lex_state = 15}, - [1462] = {.lex_state = 8, .external_lex_state = 15}, - [1463] = {.lex_state = 8, .external_lex_state = 15}, - [1464] = {.lex_state = 8, .external_lex_state = 15}, - [1465] = {.lex_state = 8, .external_lex_state = 15}, - [1466] = {.lex_state = 8, .external_lex_state = 15}, - [1467] = {.lex_state = 8, .external_lex_state = 15}, - [1468] = {.lex_state = 8, .external_lex_state = 15}, - [1469] = {.lex_state = 8, .external_lex_state = 15}, - [1470] = {.lex_state = 8, .external_lex_state = 15}, - [1471] = {.lex_state = 8, .external_lex_state = 15}, - [1472] = {.lex_state = 13, .external_lex_state = 14}, - [1473] = {.lex_state = 13, .external_lex_state = 13}, - [1474] = {.lex_state = 8, .external_lex_state = 15}, - [1475] = {.lex_state = 8, .external_lex_state = 15}, - [1476] = {.lex_state = 8, .external_lex_state = 15}, - [1477] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1478] = {.lex_state = 12, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1479] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1480] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1481] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1482] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1483] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1484] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1485] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1486] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1487] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1428] = {.lex_state = 14, .external_lex_state = 12}, + [1429] = {.lex_state = 14, .external_lex_state = 12}, + [1430] = {.lex_state = 14, .external_lex_state = 12}, + [1431] = {.lex_state = 14, .external_lex_state = 12}, + [1432] = {.lex_state = 14, .external_lex_state = 12}, + [1433] = {.lex_state = 14, .external_lex_state = 12}, + [1434] = {.lex_state = 14, .external_lex_state = 12}, + [1435] = {.lex_state = 15, .external_lex_state = 13}, + [1436] = {.lex_state = 15, .external_lex_state = 13}, + [1437] = {.lex_state = 15, .external_lex_state = 13}, + [1438] = {.lex_state = 14, .external_lex_state = 12}, + [1439] = {.lex_state = 14, .external_lex_state = 12}, + [1440] = {.lex_state = 14, .external_lex_state = 15}, + [1441] = {.lex_state = 14, .external_lex_state = 12}, + [1442] = {.lex_state = 14, .external_lex_state = 12}, + [1443] = {.lex_state = 14, .external_lex_state = 12}, + [1444] = {.lex_state = 14, .external_lex_state = 12}, + [1445] = {.lex_state = 15, .external_lex_state = 14}, + [1446] = {.lex_state = 14, .external_lex_state = 12}, + [1447] = {.lex_state = 15, .external_lex_state = 14}, + [1448] = {.lex_state = 15, .external_lex_state = 14}, + [1449] = {.lex_state = 14, .external_lex_state = 12}, + [1450] = {.lex_state = 15, .external_lex_state = 12}, + [1451] = {.lex_state = 14, .external_lex_state = 12}, + [1452] = {.lex_state = 14, .external_lex_state = 12}, + [1453] = {.lex_state = 14, .external_lex_state = 12}, + [1454] = {.lex_state = 14, .external_lex_state = 12}, + [1455] = {.lex_state = 14, .external_lex_state = 12}, + [1456] = {.lex_state = 14, .external_lex_state = 12}, + [1457] = {.lex_state = 14, .external_lex_state = 12}, + [1458] = {.lex_state = 14, .external_lex_state = 12}, + [1459] = {.lex_state = 14, .external_lex_state = 12}, + [1460] = {.lex_state = 14, .external_lex_state = 12}, + [1461] = {.lex_state = 14, .external_lex_state = 12}, + [1462] = {.lex_state = 14, .external_lex_state = 12}, + [1463] = {.lex_state = 15, .external_lex_state = 12}, + [1464] = {.lex_state = 14, .external_lex_state = 12}, + [1465] = {.lex_state = 14, .external_lex_state = 12}, + [1466] = {.lex_state = 14, .external_lex_state = 12}, + [1467] = {.lex_state = 9, .external_lex_state = 15}, + [1468] = {.lex_state = 9, .external_lex_state = 15}, + [1469] = {.lex_state = 9, .external_lex_state = 15}, + [1470] = {.lex_state = 9, .external_lex_state = 15}, + [1471] = {.lex_state = 9, .external_lex_state = 15}, + [1472] = {.lex_state = 9, .external_lex_state = 15}, + [1473] = {.lex_state = 9, .external_lex_state = 15}, + [1474] = {.lex_state = 9, .external_lex_state = 15}, + [1475] = {.lex_state = 9, .external_lex_state = 15}, + [1476] = {.lex_state = 9, .external_lex_state = 15}, + [1477] = {.lex_state = 9, .external_lex_state = 15}, + [1478] = {.lex_state = 9, .external_lex_state = 15}, + [1479] = {.lex_state = 9, .external_lex_state = 15}, + [1480] = {.lex_state = 9, .external_lex_state = 15}, + [1481] = {.lex_state = 9, .external_lex_state = 15}, + [1482] = {.lex_state = 9, .external_lex_state = 15}, + [1483] = {.lex_state = 14, .external_lex_state = 14}, + [1484] = {.lex_state = 14, .external_lex_state = 12}, + [1485] = {.lex_state = 14, .external_lex_state = 13}, + [1486] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1487] = {.lex_state = 13, .external_lex_state = 2, .reserved_word_set_id = 1}, [1488] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1489] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1490] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1491] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1489] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1490] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1491] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1492] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1493] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1494] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1495] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1496] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1497] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1495] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1496] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1497] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1498] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1499] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1499] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, [1500] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1501] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1502] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1503] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1501] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1502] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1503] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, [1504] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1505] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1506] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1507] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1508] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, - [1509] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1510] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, - [1511] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, - [1512] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1505] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1506] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1507] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1508] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1509] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1510] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1511] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1512] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, [1513] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, [1514] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, - [1515] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1516] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1517] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1518] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1519] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1520] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1521] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1522] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1523] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1524] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1525] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1526] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1527] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1528] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1529] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1530] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1531] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1532] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1533] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1515] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1516] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1517] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1518] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 15}, + [1519] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1520] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1521] = {.lex_state = 5, .external_lex_state = 8, .reserved_word_set_id = 1}, + [1522] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 15}, + [1523] = {.lex_state = 5, .external_lex_state = 7, .reserved_word_set_id = 1}, + [1524] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1525] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1526] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1527] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1528] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1529] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1530] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1531] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1532] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1533] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1534] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1535] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1536] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, - [1537] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1536] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1537] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, [1538] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, [1539] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, - [1540] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1541] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1542] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1543] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1544] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1545] = {.lex_state = 8, .external_lex_state = 11}, - [1546] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 15}, - [1547] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1548] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1540] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1541] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1542] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1543] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1544] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1545] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, + [1546] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1547] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 1}, + [1548] = {.lex_state = 5, .external_lex_state = 6, .reserved_word_set_id = 15}, [1549] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1550] = {.lex_state = 8, .external_lex_state = 11}, - [1551] = {.lex_state = 8, .external_lex_state = 12}, - [1552] = {.lex_state = 8, .external_lex_state = 12}, - [1553] = {.lex_state = 8, .external_lex_state = 14}, - [1554] = {.lex_state = 8, .external_lex_state = 15}, - [1555] = {.lex_state = 8, .external_lex_state = 14}, - [1556] = {.lex_state = 8, .external_lex_state = 15}, - [1557] = {.lex_state = 52, .external_lex_state = 13}, - [1558] = {.lex_state = 52, .external_lex_state = 13}, - [1559] = {.lex_state = 8, .external_lex_state = 12}, - [1560] = {.lex_state = 52, .external_lex_state = 13}, - [1561] = {.lex_state = 52, .external_lex_state = 13}, - [1562] = {.lex_state = 8, .external_lex_state = 12}, - [1563] = {.lex_state = 13, .external_lex_state = 13}, - [1564] = {.lex_state = 52, .external_lex_state = 14}, - [1565] = {.lex_state = 13, .external_lex_state = 13}, - [1566] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1567] = {.lex_state = 13, .external_lex_state = 13}, - [1568] = {.lex_state = 52, .external_lex_state = 14}, - [1569] = {.lex_state = 13, .external_lex_state = 13}, - [1570] = {.lex_state = 52, .external_lex_state = 2, .reserved_word_set_id = 1}, - [1571] = {.lex_state = 13, .external_lex_state = 13}, - [1572] = {.lex_state = 13, .external_lex_state = 13}, - [1573] = {.lex_state = 13, .external_lex_state = 14}, - [1574] = {.lex_state = 11, .external_lex_state = 11}, - [1575] = {.lex_state = 13, .external_lex_state = 14}, - [1576] = {.lex_state = 11, .external_lex_state = 11}, - [1577] = {.lex_state = 13, .external_lex_state = 14}, - [1578] = {.lex_state = 13, .external_lex_state = 14}, - [1579] = {.lex_state = 13, .external_lex_state = 14}, - [1580] = {.lex_state = 13, .external_lex_state = 14}, - [1581] = {.lex_state = 13, .external_lex_state = 15}, - [1582] = {.lex_state = 13, .external_lex_state = 12}, - [1583] = {.lex_state = 13, .external_lex_state = 12}, - [1584] = {.lex_state = 11, .external_lex_state = 11}, - [1585] = {.lex_state = 13, .external_lex_state = 12}, - [1586] = {.lex_state = 13, .external_lex_state = 12}, - [1587] = {.lex_state = 13, .external_lex_state = 12}, - [1588] = {.lex_state = 13, .external_lex_state = 15}, - [1589] = {.lex_state = 13, .external_lex_state = 14}, - [1590] = {.lex_state = 13, .external_lex_state = 15}, - [1591] = {.lex_state = 13, .external_lex_state = 15}, - [1592] = {.lex_state = 13, .external_lex_state = 15}, - [1593] = {.lex_state = 11, .external_lex_state = 11}, - [1594] = {.lex_state = 13, .external_lex_state = 14}, - [1595] = {.lex_state = 13, .external_lex_state = 14}, - [1596] = {.lex_state = 13, .external_lex_state = 14}, - [1597] = {.lex_state = 11, .external_lex_state = 11}, - [1598] = {.lex_state = 13, .external_lex_state = 15}, - [1599] = {.lex_state = 13, .external_lex_state = 15}, - [1600] = {.lex_state = 13, .external_lex_state = 15}, - [1601] = {.lex_state = 13, .external_lex_state = 14}, - [1602] = {.lex_state = 11, .external_lex_state = 11}, - [1603] = {.lex_state = 13, .external_lex_state = 15}, - [1604] = {.lex_state = 13, .external_lex_state = 15}, - [1605] = {.lex_state = 13, .external_lex_state = 15}, - [1606] = {.lex_state = 13, .external_lex_state = 15}, - [1607] = {.lex_state = 13, .external_lex_state = 15}, - [1608] = {.lex_state = 13, .external_lex_state = 15}, - [1609] = {.lex_state = 13, .external_lex_state = 15}, - [1610] = {.lex_state = 13, .external_lex_state = 15}, - [1611] = {.lex_state = 13, .external_lex_state = 15}, - [1612] = {.lex_state = 13, .external_lex_state = 12}, - [1613] = {.lex_state = 13, .external_lex_state = 15}, - [1614] = {.lex_state = 13, .external_lex_state = 15}, - [1615] = {.lex_state = 13, .external_lex_state = 15}, - [1616] = {.lex_state = 13, .external_lex_state = 15}, - [1617] = {.lex_state = 13, .external_lex_state = 14}, - [1618] = {.lex_state = 13, .external_lex_state = 15}, - [1619] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1620] = {.lex_state = 11, .external_lex_state = 15}, - [1621] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1622] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1623] = {.lex_state = 11, .external_lex_state = 15}, - [1624] = {.lex_state = 11, .external_lex_state = 15}, - [1625] = {.lex_state = 11, .external_lex_state = 15}, - [1626] = {.lex_state = 11, .external_lex_state = 15}, - [1627] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1628] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1629] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1630] = {.lex_state = 11, .external_lex_state = 15}, - [1631] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1632] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1633] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1634] = {.lex_state = 11, .external_lex_state = 11}, - [1635] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1636] = {.lex_state = 11, .external_lex_state = 15}, - [1637] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1638] = {.lex_state = 11, .external_lex_state = 15}, - [1639] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1640] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1641] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, - [1642] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1643] = {.lex_state = 12, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1644] = {.lex_state = 11, .external_lex_state = 15}, - [1645] = {.lex_state = 8, .external_lex_state = 12}, - [1646] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1647] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1648] = {.lex_state = 8, .external_lex_state = 11}, - [1649] = {.lex_state = 8, .external_lex_state = 11}, - [1650] = {.lex_state = 52, .external_lex_state = 13}, - [1651] = {.lex_state = 8, .external_lex_state = 11}, - [1652] = {.lex_state = 8, .external_lex_state = 11}, - [1653] = {.lex_state = 8, .external_lex_state = 11}, - [1654] = {.lex_state = 8, .external_lex_state = 11}, - [1655] = {.lex_state = 52, .external_lex_state = 13}, - [1656] = {.lex_state = 52, .external_lex_state = 13}, - [1657] = {.lex_state = 52, .external_lex_state = 13}, - [1658] = {.lex_state = 8, .external_lex_state = 11}, - [1659] = {.lex_state = 52, .external_lex_state = 13}, - [1660] = {.lex_state = 52, .external_lex_state = 13}, - [1661] = {.lex_state = 52, .external_lex_state = 13}, - [1662] = {.lex_state = 52, .external_lex_state = 13}, - [1663] = {.lex_state = 8, .external_lex_state = 11}, - [1664] = {.lex_state = 8, .external_lex_state = 11}, - [1665] = {.lex_state = 52, .external_lex_state = 14}, - [1666] = {.lex_state = 0, .external_lex_state = 16}, - [1667] = {.lex_state = 0, .external_lex_state = 16}, - [1668] = {.lex_state = 52, .external_lex_state = 14}, - [1669] = {.lex_state = 0, .external_lex_state = 16}, - [1670] = {.lex_state = 8, .external_lex_state = 12}, - [1671] = {.lex_state = 8, .external_lex_state = 12}, - [1672] = {.lex_state = 0, .external_lex_state = 16}, - [1673] = {.lex_state = 8, .external_lex_state = 12}, - [1674] = {.lex_state = 8, .external_lex_state = 12}, - [1675] = {.lex_state = 0, .external_lex_state = 16}, - [1676] = {.lex_state = 52, .external_lex_state = 14}, - [1677] = {.lex_state = 52, .external_lex_state = 14}, - [1678] = {.lex_state = 52, .external_lex_state = 14}, + [1550] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1551] = {.lex_state = 9, .external_lex_state = 9}, + [1552] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1553] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 15}, + [1554] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1555] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1556] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1557] = {.lex_state = 9, .external_lex_state = 9}, + [1558] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1559] = {.lex_state = 5, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1560] = {.lex_state = 9, .external_lex_state = 12}, + [1561] = {.lex_state = 9, .external_lex_state = 12}, + [1562] = {.lex_state = 9, .external_lex_state = 14}, + [1563] = {.lex_state = 9, .external_lex_state = 15}, + [1564] = {.lex_state = 9, .external_lex_state = 14}, + [1565] = {.lex_state = 9, .external_lex_state = 15}, + [1566] = {.lex_state = 53, .external_lex_state = 13}, + [1567] = {.lex_state = 9, .external_lex_state = 12}, + [1568] = {.lex_state = 53, .external_lex_state = 13}, + [1569] = {.lex_state = 53, .external_lex_state = 13}, + [1570] = {.lex_state = 53, .external_lex_state = 13}, + [1571] = {.lex_state = 9, .external_lex_state = 12}, + [1572] = {.lex_state = 14, .external_lex_state = 13}, + [1573] = {.lex_state = 14, .external_lex_state = 13}, + [1574] = {.lex_state = 53, .external_lex_state = 14}, + [1575] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1576] = {.lex_state = 53, .external_lex_state = 14}, + [1577] = {.lex_state = 14, .external_lex_state = 13}, + [1578] = {.lex_state = 53, .external_lex_state = 2, .reserved_word_set_id = 1}, + [1579] = {.lex_state = 14, .external_lex_state = 13}, + [1580] = {.lex_state = 14, .external_lex_state = 13}, + [1581] = {.lex_state = 14, .external_lex_state = 13}, + [1582] = {.lex_state = 14, .external_lex_state = 14}, + [1583] = {.lex_state = 14, .external_lex_state = 14}, + [1584] = {.lex_state = 12, .external_lex_state = 9}, + [1585] = {.lex_state = 14, .external_lex_state = 14}, + [1586] = {.lex_state = 14, .external_lex_state = 14}, + [1587] = {.lex_state = 14, .external_lex_state = 14}, + [1588] = {.lex_state = 14, .external_lex_state = 14}, + [1589] = {.lex_state = 12, .external_lex_state = 9}, + [1590] = {.lex_state = 14, .external_lex_state = 15}, + [1591] = {.lex_state = 12, .external_lex_state = 9}, + [1592] = {.lex_state = 14, .external_lex_state = 12}, + [1593] = {.lex_state = 14, .external_lex_state = 15}, + [1594] = {.lex_state = 14, .external_lex_state = 15}, + [1595] = {.lex_state = 14, .external_lex_state = 15}, + [1596] = {.lex_state = 14, .external_lex_state = 15}, + [1597] = {.lex_state = 14, .external_lex_state = 15}, + [1598] = {.lex_state = 14, .external_lex_state = 15}, + [1599] = {.lex_state = 14, .external_lex_state = 12}, + [1600] = {.lex_state = 14, .external_lex_state = 14}, + [1601] = {.lex_state = 14, .external_lex_state = 14}, + [1602] = {.lex_state = 14, .external_lex_state = 14}, + [1603] = {.lex_state = 14, .external_lex_state = 12}, + [1604] = {.lex_state = 14, .external_lex_state = 12}, + [1605] = {.lex_state = 14, .external_lex_state = 15}, + [1606] = {.lex_state = 12, .external_lex_state = 9}, + [1607] = {.lex_state = 14, .external_lex_state = 14}, + [1608] = {.lex_state = 14, .external_lex_state = 12}, + [1609] = {.lex_state = 14, .external_lex_state = 15}, + [1610] = {.lex_state = 14, .external_lex_state = 15}, + [1611] = {.lex_state = 14, .external_lex_state = 15}, + [1612] = {.lex_state = 14, .external_lex_state = 15}, + [1613] = {.lex_state = 14, .external_lex_state = 15}, + [1614] = {.lex_state = 14, .external_lex_state = 14}, + [1615] = {.lex_state = 14, .external_lex_state = 14}, + [1616] = {.lex_state = 14, .external_lex_state = 15}, + [1617] = {.lex_state = 12, .external_lex_state = 9}, + [1618] = {.lex_state = 14, .external_lex_state = 15}, + [1619] = {.lex_state = 14, .external_lex_state = 15}, + [1620] = {.lex_state = 14, .external_lex_state = 15}, + [1621] = {.lex_state = 14, .external_lex_state = 15}, + [1622] = {.lex_state = 12, .external_lex_state = 9}, + [1623] = {.lex_state = 14, .external_lex_state = 15}, + [1624] = {.lex_state = 14, .external_lex_state = 15}, + [1625] = {.lex_state = 14, .external_lex_state = 15}, + [1626] = {.lex_state = 14, .external_lex_state = 15}, + [1627] = {.lex_state = 14, .external_lex_state = 12}, + [1628] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1629] = {.lex_state = 12, .external_lex_state = 15}, + [1630] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1631] = {.lex_state = 12, .external_lex_state = 15}, + [1632] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1633] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1634] = {.lex_state = 12, .external_lex_state = 15}, + [1635] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1636] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1637] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1638] = {.lex_state = 12, .external_lex_state = 15}, + [1639] = {.lex_state = 12, .external_lex_state = 15}, + [1640] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1641] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1642] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1643] = {.lex_state = 12, .external_lex_state = 15}, + [1644] = {.lex_state = 12, .external_lex_state = 15}, + [1645] = {.lex_state = 12, .external_lex_state = 9}, + [1646] = {.lex_state = 12, .external_lex_state = 15}, + [1647] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1648] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1649] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1650] = {.lex_state = 12, .external_lex_state = 15}, + [1651] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1652] = {.lex_state = 13, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1653] = {.lex_state = 5, .external_lex_state = 14, .reserved_word_set_id = 1}, + [1654] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1655] = {.lex_state = 9, .external_lex_state = 12}, + [1656] = {.lex_state = 5, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1657] = {.lex_state = 53, .external_lex_state = 13}, + [1658] = {.lex_state = 9, .external_lex_state = 9}, + [1659] = {.lex_state = 9, .external_lex_state = 9}, + [1660] = {.lex_state = 9, .external_lex_state = 9}, + [1661] = {.lex_state = 53, .external_lex_state = 13}, + [1662] = {.lex_state = 9, .external_lex_state = 9}, + [1663] = {.lex_state = 53, .external_lex_state = 13}, + [1664] = {.lex_state = 9, .external_lex_state = 9}, + [1665] = {.lex_state = 9, .external_lex_state = 9}, + [1666] = {.lex_state = 9, .external_lex_state = 9}, + [1667] = {.lex_state = 53, .external_lex_state = 13}, + [1668] = {.lex_state = 53, .external_lex_state = 13}, + [1669] = {.lex_state = 53, .external_lex_state = 13}, + [1670] = {.lex_state = 53, .external_lex_state = 13}, + [1671] = {.lex_state = 9, .external_lex_state = 9}, + [1672] = {.lex_state = 53, .external_lex_state = 13}, + [1673] = {.lex_state = 9, .external_lex_state = 9}, + [1674] = {.lex_state = 0, .external_lex_state = 16}, + [1675] = {.lex_state = 53, .external_lex_state = 14}, + [1676] = {.lex_state = 53, .external_lex_state = 14}, + [1677] = {.lex_state = 0, .external_lex_state = 16}, + [1678] = {.lex_state = 0, .external_lex_state = 16}, [1679] = {.lex_state = 0, .external_lex_state = 16}, - [1680] = {.lex_state = 8, .external_lex_state = 12}, - [1681] = {.lex_state = 0, .external_lex_state = 16}, + [1680] = {.lex_state = 53, .external_lex_state = 14}, + [1681] = {.lex_state = 53, .external_lex_state = 14}, [1682] = {.lex_state = 0, .external_lex_state = 16}, - [1683] = {.lex_state = 52, .external_lex_state = 14}, - [1684] = {.lex_state = 52, .external_lex_state = 14}, - [1685] = {.lex_state = 8, .external_lex_state = 11}, + [1683] = {.lex_state = 9, .external_lex_state = 12}, + [1684] = {.lex_state = 0, .external_lex_state = 16}, + [1685] = {.lex_state = 53, .external_lex_state = 14}, [1686] = {.lex_state = 0, .external_lex_state = 16}, - [1687] = {.lex_state = 52, .external_lex_state = 14}, - [1688] = {.lex_state = 52, .external_lex_state = 14}, - [1689] = {.lex_state = 0, .external_lex_state = 16}, - [1690] = {.lex_state = 52, .external_lex_state = 14}, + [1687] = {.lex_state = 53, .external_lex_state = 14}, + [1688] = {.lex_state = 0, .external_lex_state = 16}, + [1689] = {.lex_state = 53, .external_lex_state = 14}, + [1690] = {.lex_state = 9, .external_lex_state = 12}, [1691] = {.lex_state = 0, .external_lex_state = 16}, - [1692] = {.lex_state = 0, .external_lex_state = 16}, - [1693] = {.lex_state = 52, .external_lex_state = 14}, - [1694] = {.lex_state = 8, .external_lex_state = 12}, - [1695] = {.lex_state = 52, .external_lex_state = 14}, - [1696] = {.lex_state = 0, .external_lex_state = 16}, + [1692] = {.lex_state = 9, .external_lex_state = 12}, + [1693] = {.lex_state = 0, .external_lex_state = 16}, + [1694] = {.lex_state = 0, .external_lex_state = 16}, + [1695] = {.lex_state = 53, .external_lex_state = 14}, + [1696] = {.lex_state = 53, .external_lex_state = 14}, [1697] = {.lex_state = 0, .external_lex_state = 16}, - [1698] = {.lex_state = 0, .external_lex_state = 16}, - [1699] = {.lex_state = 52, .external_lex_state = 14}, - [1700] = {.lex_state = 52, .external_lex_state = 14}, - [1701] = {.lex_state = 52, .external_lex_state = 14}, - [1702] = {.lex_state = 0, .external_lex_state = 16}, - [1703] = {.lex_state = 0, .external_lex_state = 16}, - [1704] = {.lex_state = 8, .external_lex_state = 12}, - [1705] = {.lex_state = 52, .external_lex_state = 12}, - [1706] = {.lex_state = 0, .external_lex_state = 16}, - [1707] = {.lex_state = 52, .external_lex_state = 12}, + [1698] = {.lex_state = 53, .external_lex_state = 14}, + [1699] = {.lex_state = 0, .external_lex_state = 16}, + [1700] = {.lex_state = 53, .external_lex_state = 12}, + [1701] = {.lex_state = 53, .external_lex_state = 14}, + [1702] = {.lex_state = 53, .external_lex_state = 14}, + [1703] = {.lex_state = 53, .external_lex_state = 14}, + [1704] = {.lex_state = 9, .external_lex_state = 12}, + [1705] = {.lex_state = 53, .external_lex_state = 12}, + [1706] = {.lex_state = 53, .external_lex_state = 14}, + [1707] = {.lex_state = 9, .external_lex_state = 9}, [1708] = {.lex_state = 0, .external_lex_state = 16}, - [1709] = {.lex_state = 52, .external_lex_state = 12}, - [1710] = {.lex_state = 8, .external_lex_state = 12}, - [1711] = {.lex_state = 8, .external_lex_state = 12}, - [1712] = {.lex_state = 52, .external_lex_state = 12}, - [1713] = {.lex_state = 52, .external_lex_state = 12}, - [1714] = {.lex_state = 52, .external_lex_state = 12}, - [1715] = {.lex_state = 52, .external_lex_state = 12}, - [1716] = {.lex_state = 52, .external_lex_state = 12}, - [1717] = {.lex_state = 52, .external_lex_state = 14}, - [1718] = {.lex_state = 52, .external_lex_state = 14}, - [1719] = {.lex_state = 8, .external_lex_state = 14}, - [1720] = {.lex_state = 52, .external_lex_state = 13}, - [1721] = {.lex_state = 8, .external_lex_state = 14}, - [1722] = {.lex_state = 8, .external_lex_state = 14}, - [1723] = {.lex_state = 8, .external_lex_state = 15}, - [1724] = {.lex_state = 8, .external_lex_state = 11}, - [1725] = {.lex_state = 8, .external_lex_state = 15}, - [1726] = {.lex_state = 8, .external_lex_state = 15}, - [1727] = {.lex_state = 8, .external_lex_state = 14}, - [1728] = {.lex_state = 8, .external_lex_state = 15}, - [1729] = {.lex_state = 8, .external_lex_state = 15}, - [1730] = {.lex_state = 8, .external_lex_state = 15}, - [1731] = {.lex_state = 8, .external_lex_state = 15}, - [1732] = {.lex_state = 8, .external_lex_state = 14}, - [1733] = {.lex_state = 8, .external_lex_state = 14}, - [1734] = {.lex_state = 52, .external_lex_state = 13}, - [1735] = {.lex_state = 8, .external_lex_state = 15}, - [1736] = {.lex_state = 8, .external_lex_state = 14}, - [1737] = {.lex_state = 8, .external_lex_state = 14}, - [1738] = {.lex_state = 8, .external_lex_state = 14}, - [1739] = {.lex_state = 8, .external_lex_state = 15}, - [1740] = {.lex_state = 8, .external_lex_state = 14}, - [1741] = {.lex_state = 52, .external_lex_state = 13}, - [1742] = {.lex_state = 52, .external_lex_state = 13}, - [1743] = {.lex_state = 52, .external_lex_state = 13}, - [1744] = {.lex_state = 8, .external_lex_state = 12}, - [1745] = {.lex_state = 8, .external_lex_state = 12}, - [1746] = {.lex_state = 8, .external_lex_state = 15}, - [1747] = {.lex_state = 8, .external_lex_state = 15}, - [1748] = {.lex_state = 8, .external_lex_state = 12}, - [1749] = {.lex_state = 52, .external_lex_state = 13}, - [1750] = {.lex_state = 8, .external_lex_state = 12}, - [1751] = {.lex_state = 8, .external_lex_state = 12}, - [1752] = {.lex_state = 52, .external_lex_state = 13}, - [1753] = {.lex_state = 8, .external_lex_state = 12}, - [1754] = {.lex_state = 52, .external_lex_state = 13}, - [1755] = {.lex_state = 52, .external_lex_state = 13}, - [1756] = {.lex_state = 8, .external_lex_state = 12}, - [1757] = {.lex_state = 52, .external_lex_state = 13}, - [1758] = {.lex_state = 52, .external_lex_state = 13}, - [1759] = {.lex_state = 52, .external_lex_state = 13}, - [1760] = {.lex_state = 52, .external_lex_state = 13}, - [1761] = {.lex_state = 52, .external_lex_state = 13}, - [1762] = {.lex_state = 8, .external_lex_state = 15}, - [1763] = {.lex_state = 52, .external_lex_state = 13}, - [1764] = {.lex_state = 52, .external_lex_state = 13}, - [1765] = {.lex_state = 52, .external_lex_state = 13}, - [1766] = {.lex_state = 52, .external_lex_state = 13}, - [1767] = {.lex_state = 8, .external_lex_state = 15}, - [1768] = {.lex_state = 52, .external_lex_state = 13}, - [1769] = {.lex_state = 52, .external_lex_state = 13}, - [1770] = {.lex_state = 52, .external_lex_state = 13}, - [1771] = {.lex_state = 8, .external_lex_state = 12}, - [1772] = {.lex_state = 8, .external_lex_state = 15}, - [1773] = {.lex_state = 52, .external_lex_state = 13}, - [1774] = {.lex_state = 8, .external_lex_state = 12}, - [1775] = {.lex_state = 52, .external_lex_state = 11}, - [1776] = {.lex_state = 8, .external_lex_state = 12}, - [1777] = {.lex_state = 52, .external_lex_state = 12}, - [1778] = {.lex_state = 52, .external_lex_state = 11}, - [1779] = {.lex_state = 52, .external_lex_state = 14}, - [1780] = {.lex_state = 52, .external_lex_state = 12}, - [1781] = {.lex_state = 52, .external_lex_state = 11}, - [1782] = {.lex_state = 52, .external_lex_state = 12}, - [1783] = {.lex_state = 0, .external_lex_state = 16}, - [1784] = {.lex_state = 52, .external_lex_state = 12}, - [1785] = {.lex_state = 52, .external_lex_state = 11}, - [1786] = {.lex_state = 52, .external_lex_state = 12}, - [1787] = {.lex_state = 7, .external_lex_state = 13}, - [1788] = {.lex_state = 52, .external_lex_state = 14}, - [1789] = {.lex_state = 52, .external_lex_state = 13}, - [1790] = {.lex_state = 52, .external_lex_state = 14}, - [1791] = {.lex_state = 52, .external_lex_state = 2}, - [1792] = {.lex_state = 52, .external_lex_state = 12}, - [1793] = {.lex_state = 52, .external_lex_state = 11}, - [1794] = {.lex_state = 52, .external_lex_state = 14}, - [1795] = {.lex_state = 52, .external_lex_state = 14}, - [1796] = {.lex_state = 52, .external_lex_state = 14}, - [1797] = {.lex_state = 52, .external_lex_state = 14}, - [1798] = {.lex_state = 52, .external_lex_state = 13}, - [1799] = {.lex_state = 52, .external_lex_state = 11}, - [1800] = {.lex_state = 52, .external_lex_state = 12}, - [1801] = {.lex_state = 52, .external_lex_state = 11}, - [1802] = {.lex_state = 52, .external_lex_state = 14}, - [1803] = {.lex_state = 52, .external_lex_state = 12}, - [1804] = {.lex_state = 0, .external_lex_state = 16}, - [1805] = {.lex_state = 52, .external_lex_state = 11}, - [1806] = {.lex_state = 7, .external_lex_state = 12}, - [1807] = {.lex_state = 52, .external_lex_state = 14}, - [1808] = {.lex_state = 52, .external_lex_state = 14}, - [1809] = {.lex_state = 52, .external_lex_state = 12}, - [1810] = {.lex_state = 52, .external_lex_state = 14}, - [1811] = {.lex_state = 52, .external_lex_state = 12}, - [1812] = {.lex_state = 52, .external_lex_state = 12}, - [1813] = {.lex_state = 52, .external_lex_state = 12}, - [1814] = {.lex_state = 52, .external_lex_state = 12}, - [1815] = {.lex_state = 7, .external_lex_state = 14}, - [1816] = {.lex_state = 52, .external_lex_state = 11}, - [1817] = {.lex_state = 52, .external_lex_state = 15}, - [1818] = {.lex_state = 8, .external_lex_state = 15}, - [1819] = {.lex_state = 52, .external_lex_state = 15}, - [1820] = {.lex_state = 52, .external_lex_state = 13}, - [1821] = {.lex_state = 52, .external_lex_state = 13}, - [1822] = {.lex_state = 52, .external_lex_state = 14}, - [1823] = {.lex_state = 52, .external_lex_state = 11}, - [1824] = {.lex_state = 52, .external_lex_state = 12}, - [1825] = {.lex_state = 52, .external_lex_state = 11}, - [1826] = {.lex_state = 52, .external_lex_state = 15}, - [1827] = {.lex_state = 52, .external_lex_state = 14}, - [1828] = {.lex_state = 7, .external_lex_state = 13}, - [1829] = {.lex_state = 52, .external_lex_state = 13}, - [1830] = {.lex_state = 7, .external_lex_state = 14}, - [1831] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1832] = {.lex_state = 52, .external_lex_state = 15}, - [1833] = {.lex_state = 52, .external_lex_state = 13}, - [1834] = {.lex_state = 7, .external_lex_state = 14}, - [1835] = {.lex_state = 7, .external_lex_state = 13}, - [1836] = {.lex_state = 52, .external_lex_state = 13}, - [1837] = {.lex_state = 52, .external_lex_state = 7}, - [1838] = {.lex_state = 52, .external_lex_state = 13}, - [1839] = {.lex_state = 52, .external_lex_state = 15}, - [1840] = {.lex_state = 52, .external_lex_state = 12}, - [1841] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, - [1842] = {.lex_state = 52, .external_lex_state = 15}, - [1843] = {.lex_state = 52, .external_lex_state = 14}, - [1844] = {.lex_state = 7, .external_lex_state = 13}, - [1845] = {.lex_state = 52, .external_lex_state = 12}, - [1846] = {.lex_state = 52, .external_lex_state = 15}, - [1847] = {.lex_state = 52, .external_lex_state = 11}, - [1848] = {.lex_state = 52, .external_lex_state = 14}, - [1849] = {.lex_state = 52, .external_lex_state = 15}, - [1850] = {.lex_state = 52, .external_lex_state = 15}, - [1851] = {.lex_state = 52, .external_lex_state = 12}, - [1852] = {.lex_state = 52, .external_lex_state = 14}, - [1853] = {.lex_state = 52, .external_lex_state = 8}, - [1854] = {.lex_state = 52, .external_lex_state = 15}, - [1855] = {.lex_state = 52, .external_lex_state = 13}, - [1856] = {.lex_state = 52, .external_lex_state = 13}, - [1857] = {.lex_state = 52, .external_lex_state = 14}, - [1858] = {.lex_state = 52, .external_lex_state = 12}, - [1859] = {.lex_state = 52, .external_lex_state = 14}, - [1860] = {.lex_state = 52, .external_lex_state = 13}, - [1861] = {.lex_state = 7, .external_lex_state = 12}, - [1862] = {.lex_state = 52, .external_lex_state = 12}, - [1863] = {.lex_state = 7, .external_lex_state = 12}, - [1864] = {.lex_state = 7, .external_lex_state = 14}, - [1865] = {.lex_state = 52, .external_lex_state = 12}, - [1866] = {.lex_state = 52, .external_lex_state = 12}, - [1867] = {.lex_state = 52, .external_lex_state = 13}, - [1868] = {.lex_state = 52, .external_lex_state = 13}, - [1869] = {.lex_state = 52, .external_lex_state = 13}, - [1870] = {.lex_state = 7, .external_lex_state = 12}, - [1871] = {.lex_state = 52, .external_lex_state = 13}, - [1872] = {.lex_state = 52, .external_lex_state = 13}, - [1873] = {.lex_state = 52, .external_lex_state = 6}, - [1874] = {.lex_state = 7, .external_lex_state = 11}, - [1875] = {.lex_state = 52, .external_lex_state = 13}, - [1876] = {.lex_state = 8, .external_lex_state = 11}, - [1877] = {.lex_state = 52, .external_lex_state = 12}, - [1878] = {.lex_state = 52, .external_lex_state = 12}, - [1879] = {.lex_state = 8, .external_lex_state = 14}, - [1880] = {.lex_state = 52, .external_lex_state = 15}, - [1881] = {.lex_state = 8, .external_lex_state = 14}, - [1882] = {.lex_state = 52, .external_lex_state = 14}, - [1883] = {.lex_state = 8, .external_lex_state = 11}, - [1884] = {.lex_state = 52, .external_lex_state = 14}, - [1885] = {.lex_state = 8, .external_lex_state = 11}, - [1886] = {.lex_state = 52, .external_lex_state = 15}, - [1887] = {.lex_state = 52, .external_lex_state = 15}, - [1888] = {.lex_state = 52, .external_lex_state = 12}, - [1889] = {.lex_state = 52, .external_lex_state = 13}, - [1890] = {.lex_state = 52, .external_lex_state = 13}, + [1709] = {.lex_state = 53, .external_lex_state = 12}, + [1710] = {.lex_state = 9, .external_lex_state = 12}, + [1711] = {.lex_state = 53, .external_lex_state = 14}, + [1712] = {.lex_state = 53, .external_lex_state = 12}, + [1713] = {.lex_state = 9, .external_lex_state = 12}, + [1714] = {.lex_state = 53, .external_lex_state = 14}, + [1715] = {.lex_state = 53, .external_lex_state = 12}, + [1716] = {.lex_state = 0, .external_lex_state = 16}, + [1717] = {.lex_state = 9, .external_lex_state = 12}, + [1718] = {.lex_state = 53, .external_lex_state = 12}, + [1719] = {.lex_state = 9, .external_lex_state = 12}, + [1720] = {.lex_state = 53, .external_lex_state = 12}, + [1721] = {.lex_state = 0, .external_lex_state = 16}, + [1722] = {.lex_state = 53, .external_lex_state = 12}, + [1723] = {.lex_state = 53, .external_lex_state = 14}, + [1724] = {.lex_state = 0, .external_lex_state = 16}, + [1725] = {.lex_state = 0, .external_lex_state = 16}, + [1726] = {.lex_state = 9, .external_lex_state = 12}, + [1727] = {.lex_state = 0, .external_lex_state = 16}, + [1728] = {.lex_state = 9, .external_lex_state = 14}, + [1729] = {.lex_state = 9, .external_lex_state = 15}, + [1730] = {.lex_state = 53, .external_lex_state = 13}, + [1731] = {.lex_state = 53, .external_lex_state = 13}, + [1732] = {.lex_state = 9, .external_lex_state = 15}, + [1733] = {.lex_state = 9, .external_lex_state = 14}, + [1734] = {.lex_state = 9, .external_lex_state = 15}, + [1735] = {.lex_state = 9, .external_lex_state = 14}, + [1736] = {.lex_state = 9, .external_lex_state = 15}, + [1737] = {.lex_state = 9, .external_lex_state = 9}, + [1738] = {.lex_state = 9, .external_lex_state = 14}, + [1739] = {.lex_state = 9, .external_lex_state = 15}, + [1740] = {.lex_state = 9, .external_lex_state = 15}, + [1741] = {.lex_state = 9, .external_lex_state = 15}, + [1742] = {.lex_state = 9, .external_lex_state = 15}, + [1743] = {.lex_state = 9, .external_lex_state = 14}, + [1744] = {.lex_state = 9, .external_lex_state = 14}, + [1745] = {.lex_state = 9, .external_lex_state = 14}, + [1746] = {.lex_state = 9, .external_lex_state = 14}, + [1747] = {.lex_state = 9, .external_lex_state = 14}, + [1748] = {.lex_state = 9, .external_lex_state = 15}, + [1749] = {.lex_state = 9, .external_lex_state = 14}, + [1750] = {.lex_state = 9, .external_lex_state = 12}, + [1751] = {.lex_state = 53, .external_lex_state = 13}, + [1752] = {.lex_state = 53, .external_lex_state = 13}, + [1753] = {.lex_state = 9, .external_lex_state = 12}, + [1754] = {.lex_state = 9, .external_lex_state = 15}, + [1755] = {.lex_state = 53, .external_lex_state = 13}, + [1756] = {.lex_state = 53, .external_lex_state = 13}, + [1757] = {.lex_state = 9, .external_lex_state = 12}, + [1758] = {.lex_state = 9, .external_lex_state = 12}, + [1759] = {.lex_state = 53, .external_lex_state = 13}, + [1760] = {.lex_state = 9, .external_lex_state = 15}, + [1761] = {.lex_state = 9, .external_lex_state = 12}, + [1762] = {.lex_state = 9, .external_lex_state = 12}, + [1763] = {.lex_state = 53, .external_lex_state = 13}, + [1764] = {.lex_state = 9, .external_lex_state = 12}, + [1765] = {.lex_state = 9, .external_lex_state = 12}, + [1766] = {.lex_state = 53, .external_lex_state = 13}, + [1767] = {.lex_state = 53, .external_lex_state = 9}, + [1768] = {.lex_state = 53, .external_lex_state = 13}, + [1769] = {.lex_state = 53, .external_lex_state = 13}, + [1770] = {.lex_state = 53, .external_lex_state = 13}, + [1771] = {.lex_state = 53, .external_lex_state = 13}, + [1772] = {.lex_state = 9, .external_lex_state = 15}, + [1773] = {.lex_state = 9, .external_lex_state = 15}, + [1774] = {.lex_state = 53, .external_lex_state = 13}, + [1775] = {.lex_state = 53, .external_lex_state = 13}, + [1776] = {.lex_state = 53, .external_lex_state = 13}, + [1777] = {.lex_state = 53, .external_lex_state = 13}, + [1778] = {.lex_state = 9, .external_lex_state = 15}, + [1779] = {.lex_state = 53, .external_lex_state = 13}, + [1780] = {.lex_state = 53, .external_lex_state = 13}, + [1781] = {.lex_state = 53, .external_lex_state = 13}, + [1782] = {.lex_state = 53, .external_lex_state = 13}, + [1783] = {.lex_state = 53, .external_lex_state = 13}, + [1784] = {.lex_state = 9, .external_lex_state = 12}, + [1785] = {.lex_state = 9, .external_lex_state = 12}, + [1786] = {.lex_state = 53, .external_lex_state = 12}, + [1787] = {.lex_state = 53, .external_lex_state = 14}, + [1788] = {.lex_state = 53, .external_lex_state = 13}, + [1789] = {.lex_state = 53, .external_lex_state = 12}, + [1790] = {.lex_state = 8, .external_lex_state = 14}, + [1791] = {.lex_state = 53, .external_lex_state = 9}, + [1792] = {.lex_state = 53, .external_lex_state = 9}, + [1793] = {.lex_state = 53, .external_lex_state = 14}, + [1794] = {.lex_state = 53, .external_lex_state = 12}, + [1795] = {.lex_state = 53, .external_lex_state = 13}, + [1796] = {.lex_state = 53, .external_lex_state = 9}, + [1797] = {.lex_state = 53, .external_lex_state = 14}, + [1798] = {.lex_state = 8, .external_lex_state = 12}, + [1799] = {.lex_state = 53, .external_lex_state = 12}, + [1800] = {.lex_state = 53, .external_lex_state = 14}, + [1801] = {.lex_state = 0, .external_lex_state = 16}, + [1802] = {.lex_state = 53, .external_lex_state = 12}, + [1803] = {.lex_state = 53, .external_lex_state = 14}, + [1804] = {.lex_state = 53, .external_lex_state = 14}, + [1805] = {.lex_state = 53, .external_lex_state = 12}, + [1806] = {.lex_state = 53, .external_lex_state = 9}, + [1807] = {.lex_state = 53, .external_lex_state = 12}, + [1808] = {.lex_state = 8, .external_lex_state = 13}, + [1809] = {.lex_state = 0, .external_lex_state = 16}, + [1810] = {.lex_state = 53, .external_lex_state = 12}, + [1811] = {.lex_state = 53, .external_lex_state = 14}, + [1812] = {.lex_state = 9, .external_lex_state = 15}, + [1813] = {.lex_state = 53, .external_lex_state = 13}, + [1814] = {.lex_state = 53, .external_lex_state = 14}, + [1815] = {.lex_state = 53, .external_lex_state = 9}, + [1816] = {.lex_state = 53, .external_lex_state = 14}, + [1817] = {.lex_state = 53, .external_lex_state = 12}, + [1818] = {.lex_state = 53, .external_lex_state = 9}, + [1819] = {.lex_state = 53, .external_lex_state = 14}, + [1820] = {.lex_state = 53, .external_lex_state = 13}, + [1821] = {.lex_state = 53, .external_lex_state = 9}, + [1822] = {.lex_state = 53, .external_lex_state = 2}, + [1823] = {.lex_state = 53, .external_lex_state = 12}, + [1824] = {.lex_state = 53, .external_lex_state = 15}, + [1825] = {.lex_state = 53, .external_lex_state = 12}, + [1826] = {.lex_state = 53, .external_lex_state = 9}, + [1827] = {.lex_state = 53, .external_lex_state = 14}, + [1828] = {.lex_state = 53, .external_lex_state = 12}, + [1829] = {.lex_state = 53, .external_lex_state = 9}, + [1830] = {.lex_state = 53, .external_lex_state = 14}, + [1831] = {.lex_state = 53, .external_lex_state = 15}, + [1832] = {.lex_state = 53, .external_lex_state = 12}, + [1833] = {.lex_state = 53, .external_lex_state = 13}, + [1834] = {.lex_state = 53, .external_lex_state = 12}, + [1835] = {.lex_state = 8, .external_lex_state = 14}, + [1836] = {.lex_state = 53, .external_lex_state = 13}, + [1837] = {.lex_state = 8, .external_lex_state = 12}, + [1838] = {.lex_state = 53, .external_lex_state = 13}, + [1839] = {.lex_state = 8, .external_lex_state = 12}, + [1840] = {.lex_state = 53, .external_lex_state = 12}, + [1841] = {.lex_state = 8, .external_lex_state = 13}, + [1842] = {.lex_state = 53, .external_lex_state = 13}, + [1843] = {.lex_state = 8, .external_lex_state = 13}, + [1844] = {.lex_state = 53, .external_lex_state = 13}, + [1845] = {.lex_state = 53, .external_lex_state = 12}, + [1846] = {.lex_state = 53, .external_lex_state = 7}, + [1847] = {.lex_state = 53, .external_lex_state = 13}, + [1848] = {.lex_state = 53, .external_lex_state = 12}, + [1849] = {.lex_state = 53, .external_lex_state = 14}, + [1850] = {.lex_state = 8, .external_lex_state = 12}, + [1851] = {.lex_state = 53, .external_lex_state = 13}, + [1852] = {.lex_state = 53, .external_lex_state = 13}, + [1853] = {.lex_state = 8, .external_lex_state = 14}, + [1854] = {.lex_state = 53, .external_lex_state = 15}, + [1855] = {.lex_state = 53, .external_lex_state = 15}, + [1856] = {.lex_state = 53, .external_lex_state = 14}, + [1857] = {.lex_state = 53, .external_lex_state = 15}, + [1858] = {.lex_state = 53, .external_lex_state = 13}, + [1859] = {.lex_state = 53, .external_lex_state = 12}, + [1860] = {.lex_state = 53, .external_lex_state = 14}, + [1861] = {.lex_state = 8, .external_lex_state = 13}, + [1862] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1863] = {.lex_state = 53, .external_lex_state = 8}, + [1864] = {.lex_state = 8, .external_lex_state = 14}, + [1865] = {.lex_state = 53, .external_lex_state = 14}, + [1866] = {.lex_state = 53, .external_lex_state = 15}, + [1867] = {.lex_state = 53, .external_lex_state = 9}, + [1868] = {.lex_state = 53, .external_lex_state = 15}, + [1869] = {.lex_state = 53, .external_lex_state = 15}, + [1870] = {.lex_state = 53, .external_lex_state = 15}, + [1871] = {.lex_state = 53, .external_lex_state = 15}, + [1872] = {.lex_state = 53, .external_lex_state = 15}, + [1873] = {.lex_state = 53, .external_lex_state = 15}, + [1874] = {.lex_state = 53, .external_lex_state = 14}, + [1875] = {.lex_state = 53, .external_lex_state = 6}, + [1876] = {.lex_state = 53, .external_lex_state = 15}, + [1877] = {.lex_state = 53, .external_lex_state = 12}, + [1878] = {.lex_state = 53, .external_lex_state = 13}, + [1879] = {.lex_state = 53, .external_lex_state = 13}, + [1880] = {.lex_state = 53, .external_lex_state = 15}, + [1881] = {.lex_state = 53, .external_lex_state = 9}, + [1882] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, + [1883] = {.lex_state = 53, .external_lex_state = 12}, + [1884] = {.lex_state = 53, .external_lex_state = 12}, + [1885] = {.lex_state = 53, .external_lex_state = 13}, + [1886] = {.lex_state = 53, .external_lex_state = 14}, + [1887] = {.lex_state = 53, .external_lex_state = 14}, + [1888] = {.lex_state = 9, .external_lex_state = 15}, + [1889] = {.lex_state = 53, .external_lex_state = 14}, + [1890] = {.lex_state = 53, .external_lex_state = 14}, [1891] = {.lex_state = 0, .external_lex_state = 16}, - [1892] = {.lex_state = 52, .external_lex_state = 12}, - [1893] = {.lex_state = 0, .external_lex_state = 16}, - [1894] = {.lex_state = 52, .external_lex_state = 14}, - [1895] = {.lex_state = 8, .external_lex_state = 12}, - [1896] = {.lex_state = 52, .external_lex_state = 13}, - [1897] = {.lex_state = 52, .external_lex_state = 15}, - [1898] = {.lex_state = 52, .external_lex_state = 11}, - [1899] = {.lex_state = 52, .external_lex_state = 11}, - [1900] = {.lex_state = 52, .external_lex_state = 12}, - [1901] = {.lex_state = 8, .external_lex_state = 11}, - [1902] = {.lex_state = 52, .external_lex_state = 15}, - [1903] = {.lex_state = 52, .external_lex_state = 14}, - [1904] = {.lex_state = 52, .external_lex_state = 15}, - [1905] = {.lex_state = 52, .external_lex_state = 12}, - [1906] = {.lex_state = 52, .external_lex_state = 12}, - [1907] = {.lex_state = 52, .external_lex_state = 14}, - [1908] = {.lex_state = 52, .external_lex_state = 13}, - [1909] = {.lex_state = 8, .external_lex_state = 11}, - [1910] = {.lex_state = 52, .external_lex_state = 13}, - [1911] = {.lex_state = 52, .external_lex_state = 13}, - [1912] = {.lex_state = 52, .external_lex_state = 13}, - [1913] = {.lex_state = 52, .external_lex_state = 12}, - [1914] = {.lex_state = 8, .external_lex_state = 12}, - [1915] = {.lex_state = 0, .external_lex_state = 16}, - [1916] = {.lex_state = 52, .external_lex_state = 14}, - [1917] = {.lex_state = 52, .external_lex_state = 14}, - [1918] = {.lex_state = 52, .external_lex_state = 15}, - [1919] = {.lex_state = 52, .external_lex_state = 14}, - [1920] = {.lex_state = 52, .external_lex_state = 13}, - [1921] = {.lex_state = 8, .external_lex_state = 14}, - [1922] = {.lex_state = 8, .external_lex_state = 14}, - [1923] = {.lex_state = 52, .external_lex_state = 15}, - [1924] = {.lex_state = 8, .external_lex_state = 14}, - [1925] = {.lex_state = 7, .external_lex_state = 11}, - [1926] = {.lex_state = 8, .external_lex_state = 11}, - [1927] = {.lex_state = 52, .external_lex_state = 14}, - [1928] = {.lex_state = 52, .external_lex_state = 14}, - [1929] = {.lex_state = 52, .external_lex_state = 12}, - [1930] = {.lex_state = 8, .external_lex_state = 14}, - [1931] = {.lex_state = 8, .external_lex_state = 12}, - [1932] = {.lex_state = 52, .external_lex_state = 12}, - [1933] = {.lex_state = 8, .external_lex_state = 15}, - [1934] = {.lex_state = 52, .external_lex_state = 15}, - [1935] = {.lex_state = 52, .external_lex_state = 15}, - [1936] = {.lex_state = 52, .external_lex_state = 15}, - [1937] = {.lex_state = 52, .external_lex_state = 14}, - [1938] = {.lex_state = 52, .external_lex_state = 14}, - [1939] = {.lex_state = 8, .external_lex_state = 15}, - [1940] = {.lex_state = 8, .external_lex_state = 11}, - [1941] = {.lex_state = 52, .external_lex_state = 14}, - [1942] = {.lex_state = 52, .external_lex_state = 14}, - [1943] = {.lex_state = 52, .external_lex_state = 13}, - [1944] = {.lex_state = 52, .external_lex_state = 15}, - [1945] = {.lex_state = 8, .external_lex_state = 12}, - [1946] = {.lex_state = 52, .external_lex_state = 11}, - [1947] = {.lex_state = 7, .external_lex_state = 13}, - [1948] = {.lex_state = 0, .external_lex_state = 16}, - [1949] = {.lex_state = 7, .external_lex_state = 12}, - [1950] = {.lex_state = 52, .external_lex_state = 14}, - [1951] = {.lex_state = 0, .external_lex_state = 16}, - [1952] = {.lex_state = 52, .external_lex_state = 14}, - [1953] = {.lex_state = 52, .external_lex_state = 13}, - [1954] = {.lex_state = 52, .external_lex_state = 12}, - [1955] = {.lex_state = 52, .external_lex_state = 14}, - [1956] = {.lex_state = 8, .external_lex_state = 11}, - [1957] = {.lex_state = 52, .external_lex_state = 13}, - [1958] = {.lex_state = 52, .external_lex_state = 14}, - [1959] = {.lex_state = 0, .external_lex_state = 16}, - [1960] = {.lex_state = 0, .external_lex_state = 16}, - [1961] = {.lex_state = 8, .external_lex_state = 11}, - [1962] = {.lex_state = 8, .external_lex_state = 15}, - [1963] = {.lex_state = 52, .external_lex_state = 12}, - [1964] = {.lex_state = 52, .external_lex_state = 15}, - [1965] = {.lex_state = 7, .external_lex_state = 14}, - [1966] = {.lex_state = 8, .external_lex_state = 14}, - [1967] = {.lex_state = 8, .external_lex_state = 14}, - [1968] = {.lex_state = 52, .external_lex_state = 13}, - [1969] = {.lex_state = 52, .external_lex_state = 15}, - [1970] = {.lex_state = 52, .external_lex_state = 13}, - [1971] = {.lex_state = 8, .external_lex_state = 14}, - [1972] = {.lex_state = 52, .external_lex_state = 12}, - [1973] = {.lex_state = 8, .external_lex_state = 11}, - [1974] = {.lex_state = 8, .external_lex_state = 11}, - [1975] = {.lex_state = 52, .external_lex_state = 15}, - [1976] = {.lex_state = 52, .external_lex_state = 13}, - [1977] = {.lex_state = 8, .external_lex_state = 14}, - [1978] = {.lex_state = 52, .external_lex_state = 15}, - [1979] = {.lex_state = 0, .external_lex_state = 16}, - [1980] = {.lex_state = 7, .external_lex_state = 11}, - [1981] = {.lex_state = 8, .external_lex_state = 14}, - [1982] = {.lex_state = 52, .external_lex_state = 12}, - [1983] = {.lex_state = 52, .external_lex_state = 15}, - [1984] = {.lex_state = 52, .external_lex_state = 14}, - [1985] = {.lex_state = 52, .external_lex_state = 15}, - [1986] = {.lex_state = 52, .external_lex_state = 15}, - [1987] = {.lex_state = 8, .external_lex_state = 15}, - [1988] = {.lex_state = 52, .external_lex_state = 11}, - [1989] = {.lex_state = 52, .external_lex_state = 15}, - [1990] = {.lex_state = 52, .external_lex_state = 15}, - [1991] = {.lex_state = 8, .external_lex_state = 11}, - [1992] = {.lex_state = 52, .external_lex_state = 15}, - [1993] = {.lex_state = 52, .external_lex_state = 15}, - [1994] = {.lex_state = 52, .external_lex_state = 15}, - [1995] = {.lex_state = 52, .external_lex_state = 15}, - [1996] = {.lex_state = 8, .external_lex_state = 15}, - [1997] = {.lex_state = 52, .external_lex_state = 15}, - [1998] = {.lex_state = 52, .external_lex_state = 13}, - [1999] = {.lex_state = 52, .external_lex_state = 13}, - [2000] = {.lex_state = 52, .external_lex_state = 12}, - [2001] = {.lex_state = 52, .external_lex_state = 15}, - [2002] = {.lex_state = 52, .external_lex_state = 15}, - [2003] = {.lex_state = 52, .external_lex_state = 11}, - [2004] = {.lex_state = 52, .external_lex_state = 12}, - [2005] = {.lex_state = 52, .external_lex_state = 13}, - [2006] = {.lex_state = 52, .external_lex_state = 15}, - [2007] = {.lex_state = 52, .external_lex_state = 15}, - [2008] = {.lex_state = 52, .external_lex_state = 15}, - [2009] = {.lex_state = 8, .external_lex_state = 12}, - [2010] = {.lex_state = 8, .external_lex_state = 12}, - [2011] = {.lex_state = 8, .external_lex_state = 12}, - [2012] = {.lex_state = 52, .external_lex_state = 15}, - [2013] = {.lex_state = 52, .external_lex_state = 15}, - [2014] = {.lex_state = 52, .external_lex_state = 12}, - [2015] = {.lex_state = 52, .external_lex_state = 15}, - [2016] = {.lex_state = 52, .external_lex_state = 15}, - [2017] = {.lex_state = 52, .external_lex_state = 15}, - [2018] = {.lex_state = 52, .external_lex_state = 15}, - [2019] = {.lex_state = 8, .external_lex_state = 12}, - [2020] = {.lex_state = 52, .external_lex_state = 15}, - [2021] = {.lex_state = 52, .external_lex_state = 13}, - [2022] = {.lex_state = 52, .external_lex_state = 15}, - [2023] = {.lex_state = 52, .external_lex_state = 15}, - [2024] = {.lex_state = 7, .external_lex_state = 11}, - [2025] = {.lex_state = 52, .external_lex_state = 14}, - [2026] = {.lex_state = 8, .external_lex_state = 15}, - [2027] = {.lex_state = 52, .external_lex_state = 15}, - [2028] = {.lex_state = 52, .external_lex_state = 11}, - [2029] = {.lex_state = 52, .external_lex_state = 15}, - [2030] = {.lex_state = 52, .external_lex_state = 15}, - [2031] = {.lex_state = 52, .external_lex_state = 13}, - [2032] = {.lex_state = 52, .external_lex_state = 13}, - [2033] = {.lex_state = 52, .external_lex_state = 15}, - [2034] = {.lex_state = 52, .external_lex_state = 15}, - [2035] = {.lex_state = 52, .external_lex_state = 15}, - [2036] = {.lex_state = 52, .external_lex_state = 15}, - [2037] = {.lex_state = 52, .external_lex_state = 15}, - [2038] = {.lex_state = 52, .external_lex_state = 11, .reserved_word_set_id = 1}, - [2039] = {.lex_state = 52, .external_lex_state = 15}, - [2040] = {.lex_state = 8, .external_lex_state = 12}, - [2041] = {.lex_state = 3, .external_lex_state = 13}, - [2042] = {.lex_state = 52, .external_lex_state = 13}, - [2043] = {.lex_state = 52, .external_lex_state = 15}, - [2044] = {.lex_state = 52, .external_lex_state = 15}, - [2045] = {.lex_state = 52, .external_lex_state = 11, .reserved_word_set_id = 1}, - [2046] = {.lex_state = 8, .external_lex_state = 12}, - [2047] = {.lex_state = 52, .external_lex_state = 14}, - [2048] = {.lex_state = 52, .external_lex_state = 13}, - [2049] = {.lex_state = 52, .external_lex_state = 14}, - [2050] = {.lex_state = 52, .external_lex_state = 13}, - [2051] = {.lex_state = 52, .external_lex_state = 13}, - [2052] = {.lex_state = 52, .external_lex_state = 12}, - [2053] = {.lex_state = 52, .external_lex_state = 13}, - [2054] = {.lex_state = 52, .external_lex_state = 13}, - [2055] = {.lex_state = 52, .external_lex_state = 14}, - [2056] = {.lex_state = 52, .external_lex_state = 13}, - [2057] = {.lex_state = 52, .external_lex_state = 13}, - [2058] = {.lex_state = 52, .external_lex_state = 13}, - [2059] = {.lex_state = 52, .external_lex_state = 15}, - [2060] = {.lex_state = 52, .external_lex_state = 15}, - [2061] = {.lex_state = 52, .external_lex_state = 13}, - [2062] = {.lex_state = 52, .external_lex_state = 15}, - [2063] = {.lex_state = 52, .external_lex_state = 12}, - [2064] = {.lex_state = 52, .external_lex_state = 13}, - [2065] = {.lex_state = 52, .external_lex_state = 14}, - [2066] = {.lex_state = 52, .external_lex_state = 13}, - [2067] = {.lex_state = 52, .external_lex_state = 12}, - [2068] = {.lex_state = 52, .external_lex_state = 13}, - [2069] = {.lex_state = 52, .external_lex_state = 15}, - [2070] = {.lex_state = 52, .external_lex_state = 15}, - [2071] = {.lex_state = 52, .external_lex_state = 15}, - [2072] = {.lex_state = 52, .external_lex_state = 12}, - [2073] = {.lex_state = 8, .external_lex_state = 12}, - [2074] = {.lex_state = 8, .external_lex_state = 15}, - [2075] = {.lex_state = 52, .external_lex_state = 14}, - [2076] = {.lex_state = 52, .external_lex_state = 11}, - [2077] = {.lex_state = 52, .external_lex_state = 15}, - [2078] = {.lex_state = 52, .external_lex_state = 12}, - [2079] = {.lex_state = 52, .external_lex_state = 15}, - [2080] = {.lex_state = 8, .external_lex_state = 15}, - [2081] = {.lex_state = 8, .external_lex_state = 15}, - [2082] = {.lex_state = 8, .external_lex_state = 15}, - [2083] = {.lex_state = 8, .external_lex_state = 12}, - [2084] = {.lex_state = 8, .external_lex_state = 12}, - [2085] = {.lex_state = 8, .external_lex_state = 12}, - [2086] = {.lex_state = 52, .external_lex_state = 15}, - [2087] = {.lex_state = 52, .external_lex_state = 14}, - [2088] = {.lex_state = 52, .external_lex_state = 13}, - [2089] = {.lex_state = 52, .external_lex_state = 15}, - [2090] = {.lex_state = 52, .external_lex_state = 12}, - [2091] = {.lex_state = 52, .external_lex_state = 11, .reserved_word_set_id = 1}, - [2092] = {.lex_state = 3, .external_lex_state = 13}, - [2093] = {.lex_state = 52, .external_lex_state = 15}, - [2094] = {.lex_state = 52, .external_lex_state = 13}, - [2095] = {.lex_state = 8, .external_lex_state = 15}, - [2096] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2097] = {.lex_state = 52, .external_lex_state = 15}, - [2098] = {.lex_state = 3, .external_lex_state = 13}, - [2099] = {.lex_state = 8, .external_lex_state = 12}, - [2100] = {.lex_state = 8, .external_lex_state = 14}, - [2101] = {.lex_state = 52, .external_lex_state = 14}, - [2102] = {.lex_state = 52, .external_lex_state = 15}, - [2103] = {.lex_state = 52, .external_lex_state = 13}, - [2104] = {.lex_state = 52, .external_lex_state = 13}, - [2105] = {.lex_state = 52, .external_lex_state = 17}, - [2106] = {.lex_state = 52, .external_lex_state = 15}, - [2107] = {.lex_state = 52, .external_lex_state = 15}, - [2108] = {.lex_state = 52, .external_lex_state = 11}, - [2109] = {.lex_state = 52, .external_lex_state = 11}, - [2110] = {.lex_state = 52, .external_lex_state = 17}, - [2111] = {.lex_state = 52, .external_lex_state = 11}, - [2112] = {.lex_state = 52, .external_lex_state = 11}, - [2113] = {.lex_state = 52, .external_lex_state = 11}, - [2114] = {.lex_state = 52, .external_lex_state = 17}, - [2115] = {.lex_state = 52, .external_lex_state = 11}, - [2116] = {.lex_state = 52, .external_lex_state = 13}, - [2117] = {.lex_state = 52, .external_lex_state = 11}, - [2118] = {.lex_state = 52, .external_lex_state = 14}, - [2119] = {.lex_state = 52, .external_lex_state = 12}, - [2120] = {.lex_state = 52, .external_lex_state = 12}, - [2121] = {.lex_state = 52, .external_lex_state = 12}, - [2122] = {.lex_state = 52, .external_lex_state = 12}, - [2123] = {.lex_state = 52, .external_lex_state = 12}, - [2124] = {.lex_state = 8, .external_lex_state = 15}, - [2125] = {.lex_state = 52, .external_lex_state = 14}, - [2126] = {.lex_state = 52, .external_lex_state = 12}, - [2127] = {.lex_state = 52, .external_lex_state = 12}, - [2128] = {.lex_state = 52, .external_lex_state = 12}, - [2129] = {.lex_state = 52, .external_lex_state = 12}, - [2130] = {.lex_state = 52, .external_lex_state = 12}, - [2131] = {.lex_state = 52, .external_lex_state = 12}, - [2132] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2133] = {.lex_state = 52, .external_lex_state = 12}, - [2134] = {.lex_state = 52, .external_lex_state = 12}, - [2135] = {.lex_state = 52, .external_lex_state = 12}, - [2136] = {.lex_state = 52, .external_lex_state = 12}, - [2137] = {.lex_state = 52, .external_lex_state = 12}, - [2138] = {.lex_state = 52, .external_lex_state = 12}, - [2139] = {.lex_state = 52, .external_lex_state = 12}, - [2140] = {.lex_state = 52, .external_lex_state = 12}, - [2141] = {.lex_state = 52, .external_lex_state = 12}, - [2142] = {.lex_state = 52, .external_lex_state = 12}, - [2143] = {.lex_state = 52, .external_lex_state = 12}, - [2144] = {.lex_state = 52, .external_lex_state = 12}, - [2145] = {.lex_state = 52, .external_lex_state = 12}, - [2146] = {.lex_state = 52, .external_lex_state = 12}, - [2147] = {.lex_state = 52, .external_lex_state = 11}, - [2148] = {.lex_state = 52, .external_lex_state = 14}, - [2149] = {.lex_state = 52, .external_lex_state = 12}, - [2150] = {.lex_state = 52, .external_lex_state = 15}, - [2151] = {.lex_state = 52, .external_lex_state = 15}, - [2152] = {.lex_state = 52, .external_lex_state = 17}, - [2153] = {.lex_state = 52, .external_lex_state = 14}, - [2154] = {.lex_state = 52, .external_lex_state = 11}, - [2155] = {.lex_state = 52, .external_lex_state = 14}, - [2156] = {.lex_state = 52, .external_lex_state = 14}, - [2157] = {.lex_state = 52, .external_lex_state = 14}, - [2158] = {.lex_state = 52, .external_lex_state = 14}, - [2159] = {.lex_state = 52, .external_lex_state = 14}, - [2160] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2161] = {.lex_state = 52, .external_lex_state = 11}, - [2162] = {.lex_state = 52, .external_lex_state = 11}, - [2163] = {.lex_state = 52, .external_lex_state = 14}, - [2164] = {.lex_state = 52, .external_lex_state = 12}, - [2165] = {.lex_state = 52, .external_lex_state = 14}, - [2166] = {.lex_state = 52, .external_lex_state = 14}, - [2167] = {.lex_state = 52, .external_lex_state = 14}, - [2168] = {.lex_state = 52, .external_lex_state = 14}, - [2169] = {.lex_state = 52, .external_lex_state = 14}, - [2170] = {.lex_state = 52, .external_lex_state = 14}, - [2171] = {.lex_state = 52, .external_lex_state = 14}, - [2172] = {.lex_state = 8, .external_lex_state = 15}, - [2173] = {.lex_state = 7, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2174] = {.lex_state = 52, .external_lex_state = 14}, - [2175] = {.lex_state = 52, .external_lex_state = 15}, - [2176] = {.lex_state = 52, .external_lex_state = 14}, - [2177] = {.lex_state = 52, .external_lex_state = 14}, - [2178] = {.lex_state = 52, .external_lex_state = 14}, - [2179] = {.lex_state = 52, .external_lex_state = 14}, - [2180] = {.lex_state = 52, .external_lex_state = 14}, - [2181] = {.lex_state = 52, .external_lex_state = 14}, - [2182] = {.lex_state = 52, .external_lex_state = 14}, - [2183] = {.lex_state = 52, .external_lex_state = 14}, - [2184] = {.lex_state = 52, .external_lex_state = 14}, - [2185] = {.lex_state = 52, .external_lex_state = 14}, - [2186] = {.lex_state = 52, .external_lex_state = 14}, - [2187] = {.lex_state = 52, .external_lex_state = 14}, - [2188] = {.lex_state = 52, .external_lex_state = 14}, - [2189] = {.lex_state = 52, .external_lex_state = 14}, - [2190] = {.lex_state = 52, .external_lex_state = 12}, - [2191] = {.lex_state = 52, .external_lex_state = 13}, - [2192] = {.lex_state = 52, .external_lex_state = 13}, - [2193] = {.lex_state = 52, .external_lex_state = 13}, - [2194] = {.lex_state = 52, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2195] = {.lex_state = 52, .external_lex_state = 13}, - [2196] = {.lex_state = 52, .external_lex_state = 13}, - [2197] = {.lex_state = 52, .external_lex_state = 13}, - [2198] = {.lex_state = 52, .external_lex_state = 13}, - [2199] = {.lex_state = 52, .external_lex_state = 13}, - [2200] = {.lex_state = 52, .external_lex_state = 13}, - [2201] = {.lex_state = 52, .external_lex_state = 13}, - [2202] = {.lex_state = 52, .external_lex_state = 13}, - [2203] = {.lex_state = 52, .external_lex_state = 13}, - [2204] = {.lex_state = 52, .external_lex_state = 13}, - [2205] = {.lex_state = 52, .external_lex_state = 13}, - [2206] = {.lex_state = 52, .external_lex_state = 13}, - [2207] = {.lex_state = 52, .external_lex_state = 13}, - [2208] = {.lex_state = 52, .external_lex_state = 13}, - [2209] = {.lex_state = 52, .external_lex_state = 13}, - [2210] = {.lex_state = 52, .external_lex_state = 13}, - [2211] = {.lex_state = 52, .external_lex_state = 13}, - [2212] = {.lex_state = 52, .external_lex_state = 13}, - [2213] = {.lex_state = 52, .external_lex_state = 13}, - [2214] = {.lex_state = 52, .external_lex_state = 11}, - [2215] = {.lex_state = 52, .external_lex_state = 17}, - [2216] = {.lex_state = 52, .external_lex_state = 11}, - [2217] = {.lex_state = 52, .external_lex_state = 11}, - [2218] = {.lex_state = 52, .external_lex_state = 15}, - [2219] = {.lex_state = 52, .external_lex_state = 13}, - [2220] = {.lex_state = 52, .external_lex_state = 11}, - [2221] = {.lex_state = 52, .external_lex_state = 11}, - [2222] = {.lex_state = 52, .external_lex_state = 11}, - [2223] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2224] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2225] = {.lex_state = 52, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2226] = {.lex_state = 52, .external_lex_state = 14, .reserved_word_set_id = 1}, - [2227] = {.lex_state = 52, .external_lex_state = 15}, - [2228] = {.lex_state = 52, .external_lex_state = 15}, - [2229] = {.lex_state = 52, .external_lex_state = 14}, - [2230] = {.lex_state = 52, .external_lex_state = 15}, - [2231] = {.lex_state = 52, .external_lex_state = 14}, - [2232] = {.lex_state = 52, .external_lex_state = 14}, - [2233] = {.lex_state = 52, .external_lex_state = 12}, - [2234] = {.lex_state = 52, .external_lex_state = 13}, - [2235] = {.lex_state = 8, .external_lex_state = 15}, - [2236] = {.lex_state = 52, .external_lex_state = 12}, - [2237] = {.lex_state = 52, .external_lex_state = 11}, - [2238] = {.lex_state = 52, .external_lex_state = 14}, - [2239] = {.lex_state = 52, .external_lex_state = 14}, - [2240] = {.lex_state = 52, .external_lex_state = 13}, - [2241] = {.lex_state = 52, .external_lex_state = 14}, - [2242] = {.lex_state = 52, .external_lex_state = 14}, - [2243] = {.lex_state = 3, .external_lex_state = 13}, - [2244] = {.lex_state = 3, .external_lex_state = 13}, - [2245] = {.lex_state = 52, .external_lex_state = 12}, - [2246] = {.lex_state = 3, .external_lex_state = 13}, - [2247] = {.lex_state = 52, .external_lex_state = 11}, - [2248] = {.lex_state = 52, .external_lex_state = 14}, - [2249] = {.lex_state = 52, .external_lex_state = 15}, - [2250] = {.lex_state = 52, .external_lex_state = 14}, - [2251] = {.lex_state = 52, .external_lex_state = 12}, - [2252] = {.lex_state = 52, .external_lex_state = 12}, - [2253] = {.lex_state = 52, .external_lex_state = 12}, - [2254] = {.lex_state = 52, .external_lex_state = 14}, - [2255] = {.lex_state = 52, .external_lex_state = 14}, - [2256] = {.lex_state = 52, .external_lex_state = 15}, - [2257] = {.lex_state = 52, .external_lex_state = 14}, - [2258] = {.lex_state = 52, .external_lex_state = 13}, - [2259] = {.lex_state = 52, .external_lex_state = 15}, - [2260] = {.lex_state = 52, .external_lex_state = 14}, - [2261] = {.lex_state = 52, .external_lex_state = 12}, - [2262] = {.lex_state = 52, .external_lex_state = 13}, - [2263] = {.lex_state = 52, .external_lex_state = 13}, - [2264] = {.lex_state = 52, .external_lex_state = 14}, - [2265] = {.lex_state = 8, .external_lex_state = 15}, - [2266] = {.lex_state = 52, .external_lex_state = 11}, - [2267] = {.lex_state = 3, .external_lex_state = 13}, - [2268] = {.lex_state = 52, .external_lex_state = 13}, - [2269] = {.lex_state = 52, .external_lex_state = 14}, - [2270] = {.lex_state = 52, .external_lex_state = 11}, - [2271] = {.lex_state = 52, .external_lex_state = 18}, - [2272] = {.lex_state = 3, .external_lex_state = 13}, - [2273] = {.lex_state = 52, .external_lex_state = 14}, - [2274] = {.lex_state = 52, .external_lex_state = 14}, - [2275] = {.lex_state = 52, .external_lex_state = 15}, - [2276] = {.lex_state = 52, .external_lex_state = 13}, - [2277] = {.lex_state = 3, .external_lex_state = 13}, - [2278] = {.lex_state = 52, .external_lex_state = 11}, - [2279] = {.lex_state = 52, .external_lex_state = 11}, - [2280] = {.lex_state = 52, .external_lex_state = 12}, - [2281] = {.lex_state = 52, .external_lex_state = 11}, - [2282] = {.lex_state = 52, .external_lex_state = 13}, - [2283] = {.lex_state = 52, .external_lex_state = 12}, - [2284] = {.lex_state = 52, .external_lex_state = 13}, - [2285] = {.lex_state = 52, .external_lex_state = 14}, - [2286] = {.lex_state = 52, .external_lex_state = 14}, - [2287] = {.lex_state = 52, .external_lex_state = 14}, - [2288] = {.lex_state = 52, .external_lex_state = 12}, - [2289] = {.lex_state = 52, .external_lex_state = 14}, - [2290] = {.lex_state = 52, .external_lex_state = 14}, - [2291] = {.lex_state = 52, .external_lex_state = 12}, - [2292] = {.lex_state = 52, .external_lex_state = 14}, - [2293] = {.lex_state = 52, .external_lex_state = 13}, - [2294] = {.lex_state = 52, .external_lex_state = 12}, - [2295] = {.lex_state = 52, .external_lex_state = 12}, - [2296] = {.lex_state = 52, .external_lex_state = 15}, - [2297] = {.lex_state = 52, .external_lex_state = 12}, - [2298] = {.lex_state = 52, .external_lex_state = 12}, - [2299] = {.lex_state = 3, .external_lex_state = 13}, - [2300] = {.lex_state = 52, .external_lex_state = 11}, - [2301] = {.lex_state = 8, .external_lex_state = 15}, - [2302] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2303] = {.lex_state = 52, .external_lex_state = 13}, - [2304] = {.lex_state = 52, .external_lex_state = 14}, - [2305] = {.lex_state = 52, .external_lex_state = 12}, - [2306] = {.lex_state = 52, .external_lex_state = 12}, - [2307] = {.lex_state = 52, .external_lex_state = 13}, - [2308] = {.lex_state = 52, .external_lex_state = 13}, - [2309] = {.lex_state = 52, .external_lex_state = 13}, - [2310] = {.lex_state = 52, .external_lex_state = 15}, - [2311] = {.lex_state = 52, .external_lex_state = 14}, - [2312] = {.lex_state = 52, .external_lex_state = 14}, - [2313] = {.lex_state = 52, .external_lex_state = 14}, - [2314] = {.lex_state = 52, .external_lex_state = 14}, - [2315] = {.lex_state = 52, .external_lex_state = 12}, - [2316] = {.lex_state = 52, .external_lex_state = 14}, - [2317] = {.lex_state = 52, .external_lex_state = 18}, - [2318] = {.lex_state = 52, .external_lex_state = 14}, - [2319] = {.lex_state = 52, .external_lex_state = 11}, - [2320] = {.lex_state = 52, .external_lex_state = 14}, - [2321] = {.lex_state = 52, .external_lex_state = 14}, - [2322] = {.lex_state = 52, .external_lex_state = 14}, - [2323] = {.lex_state = 52, .external_lex_state = 14}, - [2324] = {.lex_state = 52, .external_lex_state = 13}, - [2325] = {.lex_state = 52, .external_lex_state = 14}, - [2326] = {.lex_state = 52, .external_lex_state = 13}, - [2327] = {.lex_state = 52, .external_lex_state = 11}, - [2328] = {.lex_state = 52, .external_lex_state = 18}, - [2329] = {.lex_state = 52, .external_lex_state = 13}, - [2330] = {.lex_state = 52, .external_lex_state = 13}, - [2331] = {.lex_state = 52, .external_lex_state = 13}, - [2332] = {.lex_state = 52, .external_lex_state = 14}, - [2333] = {.lex_state = 52, .external_lex_state = 14}, - [2334] = {.lex_state = 52, .external_lex_state = 13}, - [2335] = {.lex_state = 52, .external_lex_state = 12}, - [2336] = {.lex_state = 52, .external_lex_state = 14}, - [2337] = {.lex_state = 52, .external_lex_state = 14}, - [2338] = {.lex_state = 52, .external_lex_state = 14}, - [2339] = {.lex_state = 52, .external_lex_state = 15}, - [2340] = {.lex_state = 52, .external_lex_state = 12}, - [2341] = {.lex_state = 52, .external_lex_state = 12}, - [2342] = {.lex_state = 52, .external_lex_state = 14}, - [2343] = {.lex_state = 52, .external_lex_state = 18}, - [2344] = {.lex_state = 52, .external_lex_state = 15}, - [2345] = {.lex_state = 52, .external_lex_state = 14}, - [2346] = {.lex_state = 52, .external_lex_state = 14}, - [2347] = {.lex_state = 52, .external_lex_state = 15}, - [2348] = {.lex_state = 52, .external_lex_state = 12}, - [2349] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2350] = {.lex_state = 52, .external_lex_state = 15}, - [2351] = {.lex_state = 52, .external_lex_state = 12}, - [2352] = {.lex_state = 52, .external_lex_state = 14}, - [2353] = {.lex_state = 52, .external_lex_state = 14}, - [2354] = {.lex_state = 52, .external_lex_state = 12}, - [2355] = {.lex_state = 52, .external_lex_state = 13}, - [2356] = {.lex_state = 52, .external_lex_state = 13}, - [2357] = {.lex_state = 3, .external_lex_state = 13}, - [2358] = {.lex_state = 52, .external_lex_state = 15}, - [2359] = {.lex_state = 52, .external_lex_state = 13}, - [2360] = {.lex_state = 52, .external_lex_state = 13}, - [2361] = {.lex_state = 52, .external_lex_state = 14}, - [2362] = {.lex_state = 52, .external_lex_state = 14}, - [2363] = {.lex_state = 52, .external_lex_state = 12}, - [2364] = {.lex_state = 52, .external_lex_state = 14}, - [2365] = {.lex_state = 52, .external_lex_state = 14}, - [2366] = {.lex_state = 52, .external_lex_state = 14}, - [2367] = {.lex_state = 52, .external_lex_state = 13}, - [2368] = {.lex_state = 52, .external_lex_state = 14}, - [2369] = {.lex_state = 52, .external_lex_state = 12}, - [2370] = {.lex_state = 52, .external_lex_state = 12}, - [2371] = {.lex_state = 52, .external_lex_state = 14}, - [2372] = {.lex_state = 52, .external_lex_state = 13}, - [2373] = {.lex_state = 52, .external_lex_state = 13}, - [2374] = {.lex_state = 52, .external_lex_state = 13}, - [2375] = {.lex_state = 52, .external_lex_state = 14}, - [2376] = {.lex_state = 52, .external_lex_state = 14}, - [2377] = {.lex_state = 52, .external_lex_state = 13}, - [2378] = {.lex_state = 52, .external_lex_state = 14}, - [2379] = {.lex_state = 52, .external_lex_state = 13}, - [2380] = {.lex_state = 52, .external_lex_state = 14}, - [2381] = {.lex_state = 52, .external_lex_state = 13}, - [2382] = {.lex_state = 52, .external_lex_state = 14}, - [2383] = {.lex_state = 52, .external_lex_state = 14}, - [2384] = {.lex_state = 52, .external_lex_state = 14}, - [2385] = {.lex_state = 52, .external_lex_state = 12}, - [2386] = {.lex_state = 52, .external_lex_state = 12}, - [2387] = {.lex_state = 52, .external_lex_state = 12}, - [2388] = {.lex_state = 52, .external_lex_state = 14}, - [2389] = {.lex_state = 52, .external_lex_state = 13}, - [2390] = {.lex_state = 52, .external_lex_state = 14}, - [2391] = {.lex_state = 52, .external_lex_state = 14}, - [2392] = {.lex_state = 52, .external_lex_state = 12}, - [2393] = {.lex_state = 52, .external_lex_state = 12}, - [2394] = {.lex_state = 52, .external_lex_state = 12}, - [2395] = {.lex_state = 52, .external_lex_state = 12}, - [2396] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2397] = {.lex_state = 52, .external_lex_state = 12}, - [2398] = {.lex_state = 52, .external_lex_state = 14}, - [2399] = {.lex_state = 52, .external_lex_state = 12}, - [2400] = {.lex_state = 52, .external_lex_state = 15}, - [2401] = {.lex_state = 52, .external_lex_state = 14}, - [2402] = {.lex_state = 8, .external_lex_state = 15}, - [2403] = {.lex_state = 52, .external_lex_state = 13}, - [2404] = {.lex_state = 52, .external_lex_state = 14}, - [2405] = {.lex_state = 52, .external_lex_state = 14}, - [2406] = {.lex_state = 52, .external_lex_state = 11}, - [2407] = {.lex_state = 52, .external_lex_state = 13}, - [2408] = {.lex_state = 52, .external_lex_state = 14}, - [2409] = {.lex_state = 52, .external_lex_state = 14}, - [2410] = {.lex_state = 52, .external_lex_state = 15}, - [2411] = {.lex_state = 52, .external_lex_state = 12}, - [2412] = {.lex_state = 52, .external_lex_state = 14}, - [2413] = {.lex_state = 52, .external_lex_state = 14}, - [2414] = {.lex_state = 52, .external_lex_state = 12}, - [2415] = {.lex_state = 52, .external_lex_state = 12}, - [2416] = {.lex_state = 52, .external_lex_state = 12}, - [2417] = {.lex_state = 52, .external_lex_state = 12}, - [2418] = {.lex_state = 52, .external_lex_state = 11}, - [2419] = {.lex_state = 52, .external_lex_state = 14}, - [2420] = {.lex_state = 52, .external_lex_state = 18}, - [2421] = {.lex_state = 52, .external_lex_state = 12}, - [2422] = {.lex_state = 52, .external_lex_state = 12}, - [2423] = {.lex_state = 52, .external_lex_state = 12}, - [2424] = {.lex_state = 52, .external_lex_state = 15}, - [2425] = {.lex_state = 52, .external_lex_state = 14}, - [2426] = {.lex_state = 52, .external_lex_state = 12}, - [2427] = {.lex_state = 52, .external_lex_state = 12}, - [2428] = {.lex_state = 52, .external_lex_state = 12}, - [2429] = {.lex_state = 52, .external_lex_state = 14}, - [2430] = {.lex_state = 52, .external_lex_state = 13}, - [2431] = {.lex_state = 52, .external_lex_state = 18}, - [2432] = {.lex_state = 52, .external_lex_state = 15}, - [2433] = {.lex_state = 52, .external_lex_state = 11}, - [2434] = {.lex_state = 52, .external_lex_state = 13}, - [2435] = {.lex_state = 52, .external_lex_state = 11}, - [2436] = {.lex_state = 52, .external_lex_state = 15}, - [2437] = {.lex_state = 52, .external_lex_state = 15}, - [2438] = {.lex_state = 52, .external_lex_state = 15}, - [2439] = {.lex_state = 52, .external_lex_state = 15}, - [2440] = {.lex_state = 52, .external_lex_state = 11}, - [2441] = {.lex_state = 52, .external_lex_state = 15}, - [2442] = {.lex_state = 52, .external_lex_state = 14}, - [2443] = {.lex_state = 52, .external_lex_state = 18}, - [2444] = {.lex_state = 52, .external_lex_state = 14}, - [2445] = {.lex_state = 8, .external_lex_state = 15}, - [2446] = {.lex_state = 52, .external_lex_state = 12}, - [2447] = {.lex_state = 8, .external_lex_state = 15}, - [2448] = {.lex_state = 8, .external_lex_state = 15}, - [2449] = {.lex_state = 8, .external_lex_state = 15}, - [2450] = {.lex_state = 52, .external_lex_state = 15}, - [2451] = {.lex_state = 52, .external_lex_state = 11}, - [2452] = {.lex_state = 52, .external_lex_state = 13}, - [2453] = {.lex_state = 52, .external_lex_state = 15}, - [2454] = {.lex_state = 52, .external_lex_state = 15}, - [2455] = {.lex_state = 3, .external_lex_state = 13}, - [2456] = {.lex_state = 52, .external_lex_state = 14}, - [2457] = {.lex_state = 52, .external_lex_state = 13}, - [2458] = {.lex_state = 52, .external_lex_state = 14}, - [2459] = {.lex_state = 52, .external_lex_state = 11}, - [2460] = {.lex_state = 52, .external_lex_state = 14}, - [2461] = {.lex_state = 52, .external_lex_state = 13}, - [2462] = {.lex_state = 52, .external_lex_state = 15}, - [2463] = {.lex_state = 52, .external_lex_state = 12}, - [2464] = {.lex_state = 52, .external_lex_state = 11}, - [2465] = {.lex_state = 52, .external_lex_state = 15}, - [2466] = {.lex_state = 52, .external_lex_state = 14}, - [2467] = {.lex_state = 52, .external_lex_state = 14}, - [2468] = {.lex_state = 52, .external_lex_state = 14}, - [2469] = {.lex_state = 52, .external_lex_state = 18}, - [2470] = {.lex_state = 52, .external_lex_state = 15}, - [2471] = {.lex_state = 52, .external_lex_state = 12}, - [2472] = {.lex_state = 52, .external_lex_state = 12}, - [2473] = {.lex_state = 52, .external_lex_state = 13}, - [2474] = {.lex_state = 52, .external_lex_state = 14}, - [2475] = {.lex_state = 52, .external_lex_state = 15}, - [2476] = {.lex_state = 52, .external_lex_state = 14}, - [2477] = {.lex_state = 52, .external_lex_state = 15}, - [2478] = {.lex_state = 52, .external_lex_state = 15}, - [2479] = {.lex_state = 52, .external_lex_state = 14}, - [2480] = {.lex_state = 52, .external_lex_state = 12}, - [2481] = {.lex_state = 52, .external_lex_state = 11}, - [2482] = {.lex_state = 52, .external_lex_state = 14}, - [2483] = {.lex_state = 52, .external_lex_state = 14}, - [2484] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2485] = {.lex_state = 52, .external_lex_state = 11}, - [2486] = {.lex_state = 52, .external_lex_state = 15}, - [2487] = {.lex_state = 52, .external_lex_state = 12}, - [2488] = {.lex_state = 52, .external_lex_state = 17}, - [2489] = {.lex_state = 52, .external_lex_state = 15}, - [2490] = {.lex_state = 52, .external_lex_state = 11}, - [2491] = {.lex_state = 52, .external_lex_state = 17}, - [2492] = {.lex_state = 52, .external_lex_state = 17}, - [2493] = {.lex_state = 52, .external_lex_state = 17}, - [2494] = {.lex_state = 9, .external_lex_state = 15}, - [2495] = {.lex_state = 52, .external_lex_state = 17}, - [2496] = {.lex_state = 52, .external_lex_state = 15}, - [2497] = {.lex_state = 52, .external_lex_state = 15}, - [2498] = {.lex_state = 52, .external_lex_state = 13}, - [2499] = {.lex_state = 52, .external_lex_state = 17}, - [2500] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2501] = {.lex_state = 52, .external_lex_state = 17}, - [2502] = {.lex_state = 52, .external_lex_state = 15}, - [2503] = {.lex_state = 52, .external_lex_state = 15}, - [2504] = {.lex_state = 52, .external_lex_state = 17}, - [2505] = {.lex_state = 52, .external_lex_state = 11}, - [2506] = {.lex_state = 52, .external_lex_state = 15}, - [2507] = {.lex_state = 52, .external_lex_state = 14}, - [2508] = {.lex_state = 52, .external_lex_state = 15}, - [2509] = {.lex_state = 52, .external_lex_state = 11}, - [2510] = {.lex_state = 52, .external_lex_state = 15}, - [2511] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2512] = {.lex_state = 52, .external_lex_state = 14}, - [2513] = {.lex_state = 52, .external_lex_state = 15}, - [2514] = {.lex_state = 52, .external_lex_state = 15}, - [2515] = {.lex_state = 52, .external_lex_state = 15}, - [2516] = {.lex_state = 52, .external_lex_state = 14}, - [2517] = {.lex_state = 52, .external_lex_state = 15}, - [2518] = {.lex_state = 52, .external_lex_state = 15}, - [2519] = {.lex_state = 52, .external_lex_state = 17}, - [2520] = {.lex_state = 52, .external_lex_state = 17}, - [2521] = {.lex_state = 52, .external_lex_state = 15}, - [2522] = {.lex_state = 52, .external_lex_state = 15}, - [2523] = {.lex_state = 52, .external_lex_state = 11}, - [2524] = {.lex_state = 52, .external_lex_state = 17}, - [2525] = {.lex_state = 52, .external_lex_state = 13}, - [2526] = {.lex_state = 52, .external_lex_state = 13}, - [2527] = {.lex_state = 52, .external_lex_state = 12}, - [2528] = {.lex_state = 52, .external_lex_state = 17}, - [2529] = {.lex_state = 52, .external_lex_state = 13}, - [2530] = {.lex_state = 9, .external_lex_state = 15}, - [2531] = {.lex_state = 52, .external_lex_state = 14}, - [2532] = {.lex_state = 52, .external_lex_state = 17}, - [2533] = {.lex_state = 52, .external_lex_state = 17}, - [2534] = {.lex_state = 52, .external_lex_state = 11}, - [2535] = {.lex_state = 52, .external_lex_state = 11}, - [2536] = {.lex_state = 52, .external_lex_state = 11}, - [2537] = {.lex_state = 52, .external_lex_state = 17}, - [2538] = {.lex_state = 52, .external_lex_state = 11}, - [2539] = {.lex_state = 52, .external_lex_state = 12}, - [2540] = {.lex_state = 9, .external_lex_state = 15}, - [2541] = {.lex_state = 52, .external_lex_state = 11}, - [2542] = {.lex_state = 52, .external_lex_state = 14}, - [2543] = {.lex_state = 9, .external_lex_state = 15}, - [2544] = {.lex_state = 52, .external_lex_state = 14}, - [2545] = {.lex_state = 52, .external_lex_state = 12}, - [2546] = {.lex_state = 52, .external_lex_state = 14}, - [2547] = {.lex_state = 52, .external_lex_state = 11}, - [2548] = {.lex_state = 9, .external_lex_state = 15}, - [2549] = {.lex_state = 52, .external_lex_state = 14}, - [2550] = {.lex_state = 9, .external_lex_state = 15}, - [2551] = {.lex_state = 9, .external_lex_state = 15}, - [2552] = {.lex_state = 9, .external_lex_state = 15}, - [2553] = {.lex_state = 9, .external_lex_state = 15}, - [2554] = {.lex_state = 52, .external_lex_state = 14}, - [2555] = {.lex_state = 52, .external_lex_state = 11}, - [2556] = {.lex_state = 52, .external_lex_state = 15}, - [2557] = {.lex_state = 52, .external_lex_state = 11}, - [2558] = {.lex_state = 52, .external_lex_state = 12}, - [2559] = {.lex_state = 52, .external_lex_state = 11}, - [2560] = {.lex_state = 52, .external_lex_state = 17}, - [2561] = {.lex_state = 9, .external_lex_state = 15}, - [2562] = {.lex_state = 52, .external_lex_state = 17}, - [2563] = {.lex_state = 52, .external_lex_state = 11}, - [2564] = {.lex_state = 52, .external_lex_state = 14}, - [2565] = {.lex_state = 52, .external_lex_state = 12}, - [2566] = {.lex_state = 52, .external_lex_state = 11}, - [2567] = {.lex_state = 52, .external_lex_state = 15}, - [2568] = {.lex_state = 52, .external_lex_state = 14}, - [2569] = {.lex_state = 52, .external_lex_state = 12}, - [2570] = {.lex_state = 52, .external_lex_state = 12}, - [2571] = {.lex_state = 52, .external_lex_state = 13}, - [2572] = {.lex_state = 52, .external_lex_state = 15}, - [2573] = {.lex_state = 52, .external_lex_state = 11}, - [2574] = {.lex_state = 52, .external_lex_state = 12}, - [2575] = {.lex_state = 52, .external_lex_state = 17}, - [2576] = {.lex_state = 52, .external_lex_state = 15}, - [2577] = {.lex_state = 52, .external_lex_state = 14}, - [2578] = {.lex_state = 52, .external_lex_state = 15}, - [2579] = {.lex_state = 52, .external_lex_state = 15}, - [2580] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2581] = {.lex_state = 52, .external_lex_state = 14}, - [2582] = {.lex_state = 52, .external_lex_state = 13}, - [2583] = {.lex_state = 52, .external_lex_state = 14}, - [2584] = {.lex_state = 52, .external_lex_state = 14}, - [2585] = {.lex_state = 4, .external_lex_state = 15}, - [2586] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2587] = {.lex_state = 52, .external_lex_state = 15}, - [2588] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2589] = {.lex_state = 52, .external_lex_state = 14}, - [2590] = {.lex_state = 52, .external_lex_state = 14}, - [2591] = {.lex_state = 52, .external_lex_state = 12}, - [2592] = {.lex_state = 52, .external_lex_state = 12}, - [2593] = {.lex_state = 52, .external_lex_state = 13}, - [2594] = {.lex_state = 52, .external_lex_state = 15}, - [2595] = {.lex_state = 52, .external_lex_state = 14}, - [2596] = {.lex_state = 52, .external_lex_state = 13}, - [2597] = {.lex_state = 52, .external_lex_state = 15}, - [2598] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2599] = {.lex_state = 52, .external_lex_state = 14}, - [2600] = {.lex_state = 52, .external_lex_state = 14}, - [2601] = {.lex_state = 52, .external_lex_state = 12}, - [2602] = {.lex_state = 52, .external_lex_state = 14}, - [2603] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2604] = {.lex_state = 52, .external_lex_state = 13}, - [2605] = {.lex_state = 52, .external_lex_state = 13}, - [2606] = {.lex_state = 52, .external_lex_state = 15}, - [2607] = {.lex_state = 52, .external_lex_state = 14}, - [2608] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2609] = {.lex_state = 52, .external_lex_state = 13}, - [2610] = {.lex_state = 52, .external_lex_state = 15}, - [2611] = {.lex_state = 52, .external_lex_state = 15}, - [2612] = {.lex_state = 52, .external_lex_state = 13}, - [2613] = {.lex_state = 52, .external_lex_state = 15}, - [2614] = {.lex_state = 52, .external_lex_state = 12}, - [2615] = {.lex_state = 52, .external_lex_state = 14}, - [2616] = {.lex_state = 4, .external_lex_state = 15}, - [2617] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2618] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2619] = {.lex_state = 52, .external_lex_state = 15}, - [2620] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2621] = {.lex_state = 52, .external_lex_state = 13}, - [2622] = {.lex_state = 52, .external_lex_state = 14}, - [2623] = {.lex_state = 52, .external_lex_state = 15}, - [2624] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2625] = {.lex_state = 52, .external_lex_state = 15}, - [2626] = {.lex_state = 52, .external_lex_state = 14}, - [2627] = {.lex_state = 52, .external_lex_state = 15}, - [2628] = {.lex_state = 52, .external_lex_state = 13}, - [2629] = {.lex_state = 52, .external_lex_state = 13}, - [2630] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2631] = {.lex_state = 52, .external_lex_state = 15}, - [2632] = {.lex_state = 52, .external_lex_state = 13}, - [2633] = {.lex_state = 52, .external_lex_state = 15}, - [2634] = {.lex_state = 52, .external_lex_state = 15}, - [2635] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2636] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2637] = {.lex_state = 52, .external_lex_state = 15}, - [2638] = {.lex_state = 4, .external_lex_state = 15}, - [2639] = {.lex_state = 52, .external_lex_state = 15}, - [2640] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2641] = {.lex_state = 52, .external_lex_state = 14}, - [2642] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2643] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2644] = {.lex_state = 52, .external_lex_state = 13}, - [2645] = {.lex_state = 4, .external_lex_state = 15}, - [2646] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2647] = {.lex_state = 52, .external_lex_state = 14}, - [2648] = {.lex_state = 52, .external_lex_state = 12}, - [2649] = {.lex_state = 52, .external_lex_state = 15}, - [2650] = {.lex_state = 4, .external_lex_state = 15}, - [2651] = {.lex_state = 52, .external_lex_state = 13}, - [2652] = {.lex_state = 52, .external_lex_state = 15}, - [2653] = {.lex_state = 52, .external_lex_state = 14}, - [2654] = {.lex_state = 52, .external_lex_state = 13}, - [2655] = {.lex_state = 52, .external_lex_state = 14}, - [2656] = {.lex_state = 52, .external_lex_state = 15}, - [2657] = {.lex_state = 52, .external_lex_state = 12}, - [2658] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2659] = {.lex_state = 52, .external_lex_state = 14}, - [2660] = {.lex_state = 52, .external_lex_state = 13}, - [2661] = {.lex_state = 52, .external_lex_state = 12}, - [2662] = {.lex_state = 52, .external_lex_state = 15}, - [2663] = {.lex_state = 52, .external_lex_state = 15}, - [2664] = {.lex_state = 52, .external_lex_state = 12}, - [2665] = {.lex_state = 52, .external_lex_state = 13}, - [2666] = {.lex_state = 52, .external_lex_state = 12}, - [2667] = {.lex_state = 52, .external_lex_state = 15}, - [2668] = {.lex_state = 52, .external_lex_state = 15}, - [2669] = {.lex_state = 52, .external_lex_state = 15}, - [2670] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2671] = {.lex_state = 52, .external_lex_state = 15}, - [2672] = {.lex_state = 52, .external_lex_state = 13}, - [2673] = {.lex_state = 52, .external_lex_state = 15}, - [2674] = {.lex_state = 52, .external_lex_state = 15}, - [2675] = {.lex_state = 52, .external_lex_state = 15}, - [2676] = {.lex_state = 52, .external_lex_state = 13}, - [2677] = {.lex_state = 52, .external_lex_state = 15}, - [2678] = {.lex_state = 52, .external_lex_state = 12}, - [2679] = {.lex_state = 52, .external_lex_state = 15}, - [2680] = {.lex_state = 52, .external_lex_state = 15}, - [2681] = {.lex_state = 52, .external_lex_state = 14}, - [2682] = {.lex_state = 52, .external_lex_state = 12}, - [2683] = {.lex_state = 52, .external_lex_state = 13}, - [2684] = {.lex_state = 52, .external_lex_state = 15}, - [2685] = {.lex_state = 52, .external_lex_state = 12}, - [2686] = {.lex_state = 52, .external_lex_state = 12}, - [2687] = {.lex_state = 52, .external_lex_state = 13}, - [2688] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2689] = {.lex_state = 52, .external_lex_state = 12}, - [2690] = {.lex_state = 52, .external_lex_state = 15}, - [2691] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2692] = {.lex_state = 52, .external_lex_state = 13}, - [2693] = {.lex_state = 52, .external_lex_state = 14}, - [2694] = {.lex_state = 52, .external_lex_state = 15}, - [2695] = {.lex_state = 52, .external_lex_state = 15}, - [2696] = {.lex_state = 52, .external_lex_state = 13}, - [2697] = {.lex_state = 52, .external_lex_state = 12}, - [2698] = {.lex_state = 4, .external_lex_state = 15}, - [2699] = {.lex_state = 52, .external_lex_state = 13}, - [2700] = {.lex_state = 52, .external_lex_state = 12}, - [2701] = {.lex_state = 52, .external_lex_state = 14}, - [2702] = {.lex_state = 52, .external_lex_state = 13}, - [2703] = {.lex_state = 52, .external_lex_state = 15}, - [2704] = {.lex_state = 52, .external_lex_state = 13}, - [2705] = {.lex_state = 52, .external_lex_state = 15}, - [2706] = {.lex_state = 52, .external_lex_state = 13}, - [2707] = {.lex_state = 52, .external_lex_state = 15}, - [2708] = {.lex_state = 52, .external_lex_state = 13}, - [2709] = {.lex_state = 52, .external_lex_state = 14}, - [2710] = {.lex_state = 52, .external_lex_state = 13}, - [2711] = {.lex_state = 52, .external_lex_state = 15}, - [2712] = {.lex_state = 52, .external_lex_state = 14}, - [2713] = {.lex_state = 52, .external_lex_state = 13}, - [2714] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2715] = {.lex_state = 52, .external_lex_state = 14}, - [2716] = {.lex_state = 4, .external_lex_state = 15}, - [2717] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2718] = {.lex_state = 52, .external_lex_state = 12}, - [2719] = {.lex_state = 52, .external_lex_state = 12}, - [2720] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2721] = {.lex_state = 52, .external_lex_state = 13}, - [2722] = {.lex_state = 52, .external_lex_state = 15}, - [2723] = {.lex_state = 52, .external_lex_state = 13}, - [2724] = {.lex_state = 52, .external_lex_state = 13}, - [2725] = {.lex_state = 52, .external_lex_state = 13}, - [2726] = {.lex_state = 52, .external_lex_state = 14}, - [2727] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2728] = {.lex_state = 52, .external_lex_state = 15}, - [2729] = {.lex_state = 4, .external_lex_state = 15}, - [2730] = {.lex_state = 52, .external_lex_state = 13}, - [2731] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2732] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2733] = {.lex_state = 52, .external_lex_state = 14}, - [2734] = {.lex_state = 52, .external_lex_state = 13}, - [2735] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2736] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2737] = {.lex_state = 52, .external_lex_state = 14}, - [2738] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2739] = {.lex_state = 52, .external_lex_state = 14}, - [2740] = {.lex_state = 52, .external_lex_state = 13}, - [2741] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2742] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2743] = {.lex_state = 52, .external_lex_state = 14}, - [2744] = {.lex_state = 52, .external_lex_state = 13}, - [2745] = {.lex_state = 52, .external_lex_state = 15}, - [2746] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2747] = {.lex_state = 52, .external_lex_state = 15}, - [2748] = {.lex_state = 52, .external_lex_state = 13}, - [2749] = {.lex_state = 52, .external_lex_state = 15}, - [2750] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2751] = {.lex_state = 52, .external_lex_state = 15}, - [2752] = {.lex_state = 52, .external_lex_state = 14}, - [2753] = {.lex_state = 52, .external_lex_state = 12}, - [2754] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2755] = {.lex_state = 52, .external_lex_state = 15}, - [2756] = {.lex_state = 52, .external_lex_state = 14}, - [2757] = {.lex_state = 52, .external_lex_state = 13}, - [2758] = {.lex_state = 52, .external_lex_state = 13}, - [2759] = {.lex_state = 52, .external_lex_state = 14}, - [2760] = {.lex_state = 52, .external_lex_state = 15}, - [2761] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2762] = {.lex_state = 52, .external_lex_state = 15}, - [2763] = {.lex_state = 52, .external_lex_state = 14}, - [2764] = {.lex_state = 52, .external_lex_state = 15}, - [2765] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2766] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2767] = {.lex_state = 52, .external_lex_state = 15}, - [2768] = {.lex_state = 52, .external_lex_state = 15}, - [2769] = {.lex_state = 52, .external_lex_state = 15}, - [2770] = {.lex_state = 52, .external_lex_state = 15}, - [2771] = {.lex_state = 52, .external_lex_state = 15, .reserved_word_set_id = 1}, - [2772] = {.lex_state = 52, .external_lex_state = 15}, - [2773] = {.lex_state = 52, .external_lex_state = 15}, - [2774] = {.lex_state = 52, .external_lex_state = 12}, - [2775] = {.lex_state = 52, .external_lex_state = 12}, - [2776] = {.lex_state = 52, .external_lex_state = 15}, + [1892] = {.lex_state = 53, .external_lex_state = 14}, + [1893] = {.lex_state = 53, .external_lex_state = 14}, + [1894] = {.lex_state = 0, .external_lex_state = 16}, + [1895] = {.lex_state = 53, .external_lex_state = 14}, + [1896] = {.lex_state = 9, .external_lex_state = 9}, + [1897] = {.lex_state = 53, .external_lex_state = 13}, + [1898] = {.lex_state = 53, .external_lex_state = 12}, + [1899] = {.lex_state = 9, .external_lex_state = 9}, + [1900] = {.lex_state = 9, .external_lex_state = 9}, + [1901] = {.lex_state = 9, .external_lex_state = 9}, + [1902] = {.lex_state = 8, .external_lex_state = 12}, + [1903] = {.lex_state = 53, .external_lex_state = 14}, + [1904] = {.lex_state = 53, .external_lex_state = 14}, + [1905] = {.lex_state = 9, .external_lex_state = 14}, + [1906] = {.lex_state = 53, .external_lex_state = 12}, + [1907] = {.lex_state = 53, .external_lex_state = 13}, + [1908] = {.lex_state = 9, .external_lex_state = 9}, + [1909] = {.lex_state = 53, .external_lex_state = 15}, + [1910] = {.lex_state = 53, .external_lex_state = 15}, + [1911] = {.lex_state = 53, .external_lex_state = 12}, + [1912] = {.lex_state = 53, .external_lex_state = 13}, + [1913] = {.lex_state = 53, .external_lex_state = 14}, + [1914] = {.lex_state = 9, .external_lex_state = 15}, + [1915] = {.lex_state = 53, .external_lex_state = 13}, + [1916] = {.lex_state = 53, .external_lex_state = 14}, + [1917] = {.lex_state = 9, .external_lex_state = 9}, + [1918] = {.lex_state = 9, .external_lex_state = 12}, + [1919] = {.lex_state = 8, .external_lex_state = 13}, + [1920] = {.lex_state = 53, .external_lex_state = 15}, + [1921] = {.lex_state = 53, .external_lex_state = 12}, + [1922] = {.lex_state = 9, .external_lex_state = 12}, + [1923] = {.lex_state = 53, .external_lex_state = 15}, + [1924] = {.lex_state = 53, .external_lex_state = 14}, + [1925] = {.lex_state = 0, .external_lex_state = 16}, + [1926] = {.lex_state = 8, .external_lex_state = 9}, + [1927] = {.lex_state = 53, .external_lex_state = 9}, + [1928] = {.lex_state = 53, .external_lex_state = 13}, + [1929] = {.lex_state = 53, .external_lex_state = 13}, + [1930] = {.lex_state = 53, .external_lex_state = 15}, + [1931] = {.lex_state = 0, .external_lex_state = 16}, + [1932] = {.lex_state = 53, .external_lex_state = 13}, + [1933] = {.lex_state = 9, .external_lex_state = 9}, + [1934] = {.lex_state = 9, .external_lex_state = 14}, + [1935] = {.lex_state = 9, .external_lex_state = 12}, + [1936] = {.lex_state = 53, .external_lex_state = 12}, + [1937] = {.lex_state = 53, .external_lex_state = 12}, + [1938] = {.lex_state = 9, .external_lex_state = 14}, + [1939] = {.lex_state = 8, .external_lex_state = 9}, + [1940] = {.lex_state = 0, .external_lex_state = 16}, + [1941] = {.lex_state = 9, .external_lex_state = 14}, + [1942] = {.lex_state = 9, .external_lex_state = 14}, + [1943] = {.lex_state = 53, .external_lex_state = 15}, + [1944] = {.lex_state = 9, .external_lex_state = 14}, + [1945] = {.lex_state = 53, .external_lex_state = 14}, + [1946] = {.lex_state = 9, .external_lex_state = 15}, + [1947] = {.lex_state = 53, .external_lex_state = 13}, + [1948] = {.lex_state = 53, .external_lex_state = 15}, + [1949] = {.lex_state = 0, .external_lex_state = 16}, + [1950] = {.lex_state = 53, .external_lex_state = 15}, + [1951] = {.lex_state = 53, .external_lex_state = 9}, + [1952] = {.lex_state = 53, .external_lex_state = 14}, + [1953] = {.lex_state = 53, .external_lex_state = 15}, + [1954] = {.lex_state = 53, .external_lex_state = 12}, + [1955] = {.lex_state = 53, .external_lex_state = 14}, + [1956] = {.lex_state = 53, .external_lex_state = 15}, + [1957] = {.lex_state = 9, .external_lex_state = 14}, + [1958] = {.lex_state = 53, .external_lex_state = 12}, + [1959] = {.lex_state = 53, .external_lex_state = 12}, + [1960] = {.lex_state = 53, .external_lex_state = 13}, + [1961] = {.lex_state = 9, .external_lex_state = 14}, + [1962] = {.lex_state = 9, .external_lex_state = 9}, + [1963] = {.lex_state = 53, .external_lex_state = 13}, + [1964] = {.lex_state = 53, .external_lex_state = 15}, + [1965] = {.lex_state = 53, .external_lex_state = 13}, + [1966] = {.lex_state = 53, .external_lex_state = 12}, + [1967] = {.lex_state = 53, .external_lex_state = 9}, + [1968] = {.lex_state = 8, .external_lex_state = 9}, + [1969] = {.lex_state = 53, .external_lex_state = 14}, + [1970] = {.lex_state = 53, .external_lex_state = 15}, + [1971] = {.lex_state = 53, .external_lex_state = 12}, + [1972] = {.lex_state = 53, .external_lex_state = 13}, + [1973] = {.lex_state = 53, .external_lex_state = 12}, + [1974] = {.lex_state = 53, .external_lex_state = 14}, + [1975] = {.lex_state = 53, .external_lex_state = 12}, + [1976] = {.lex_state = 8, .external_lex_state = 14}, + [1977] = {.lex_state = 53, .external_lex_state = 15}, + [1978] = {.lex_state = 53, .external_lex_state = 14}, + [1979] = {.lex_state = 9, .external_lex_state = 14}, + [1980] = {.lex_state = 53, .external_lex_state = 12}, + [1981] = {.lex_state = 53, .external_lex_state = 13}, + [1982] = {.lex_state = 9, .external_lex_state = 12}, + [1983] = {.lex_state = 53, .external_lex_state = 15}, + [1984] = {.lex_state = 53, .external_lex_state = 13}, + [1985] = {.lex_state = 0, .external_lex_state = 16}, + [1986] = {.lex_state = 9, .external_lex_state = 9}, + [1987] = {.lex_state = 9, .external_lex_state = 9}, + [1988] = {.lex_state = 9, .external_lex_state = 9}, + [1989] = {.lex_state = 9, .external_lex_state = 14}, + [1990] = {.lex_state = 0, .external_lex_state = 16}, + [1991] = {.lex_state = 53, .external_lex_state = 15}, + [1992] = {.lex_state = 53, .external_lex_state = 14}, + [1993] = {.lex_state = 53, .external_lex_state = 13}, + [1994] = {.lex_state = 53, .external_lex_state = 15}, + [1995] = {.lex_state = 9, .external_lex_state = 14}, + [1996] = {.lex_state = 9, .external_lex_state = 9}, + [1997] = {.lex_state = 9, .external_lex_state = 15}, + [1998] = {.lex_state = 53, .external_lex_state = 12}, + [1999] = {.lex_state = 9, .external_lex_state = 15}, + [2000] = {.lex_state = 53, .external_lex_state = 12}, + [2001] = {.lex_state = 9, .external_lex_state = 15}, + [2002] = {.lex_state = 9, .external_lex_state = 12}, + [2003] = {.lex_state = 9, .external_lex_state = 12}, + [2004] = {.lex_state = 9, .external_lex_state = 12}, + [2005] = {.lex_state = 53, .external_lex_state = 9}, + [2006] = {.lex_state = 53, .external_lex_state = 14}, + [2007] = {.lex_state = 53, .external_lex_state = 14}, + [2008] = {.lex_state = 9, .external_lex_state = 12}, + [2009] = {.lex_state = 53, .external_lex_state = 14}, + [2010] = {.lex_state = 53, .external_lex_state = 12}, + [2011] = {.lex_state = 53, .external_lex_state = 12}, + [2012] = {.lex_state = 9, .external_lex_state = 12}, + [2013] = {.lex_state = 53, .external_lex_state = 12}, + [2014] = {.lex_state = 53, .external_lex_state = 12}, + [2015] = {.lex_state = 9, .external_lex_state = 12}, + [2016] = {.lex_state = 53, .external_lex_state = 13}, + [2017] = {.lex_state = 53, .external_lex_state = 15}, + [2018] = {.lex_state = 53, .external_lex_state = 13}, + [2019] = {.lex_state = 53, .external_lex_state = 13}, + [2020] = {.lex_state = 53, .external_lex_state = 15}, + [2021] = {.lex_state = 53, .external_lex_state = 12}, + [2022] = {.lex_state = 53, .external_lex_state = 14}, + [2023] = {.lex_state = 53, .external_lex_state = 14}, + [2024] = {.lex_state = 53, .external_lex_state = 12}, + [2025] = {.lex_state = 53, .external_lex_state = 12}, + [2026] = {.lex_state = 53, .external_lex_state = 15}, + [2027] = {.lex_state = 53, .external_lex_state = 15}, + [2028] = {.lex_state = 53, .external_lex_state = 13}, + [2029] = {.lex_state = 53, .external_lex_state = 15}, + [2030] = {.lex_state = 53, .external_lex_state = 15}, + [2031] = {.lex_state = 53, .external_lex_state = 15}, + [2032] = {.lex_state = 53, .external_lex_state = 15}, + [2033] = {.lex_state = 53, .external_lex_state = 13}, + [2034] = {.lex_state = 9, .external_lex_state = 12}, + [2035] = {.lex_state = 53, .external_lex_state = 13}, + [2036] = {.lex_state = 53, .external_lex_state = 15}, + [2037] = {.lex_state = 53, .external_lex_state = 15}, + [2038] = {.lex_state = 53, .external_lex_state = 9}, + [2039] = {.lex_state = 53, .external_lex_state = 15}, + [2040] = {.lex_state = 53, .external_lex_state = 14}, + [2041] = {.lex_state = 53, .external_lex_state = 15}, + [2042] = {.lex_state = 53, .external_lex_state = 15}, + [2043] = {.lex_state = 53, .external_lex_state = 15}, + [2044] = {.lex_state = 53, .external_lex_state = 15}, + [2045] = {.lex_state = 53, .external_lex_state = 15}, + [2046] = {.lex_state = 53, .external_lex_state = 15}, + [2047] = {.lex_state = 53, .external_lex_state = 15}, + [2048] = {.lex_state = 53, .external_lex_state = 15}, + [2049] = {.lex_state = 53, .external_lex_state = 15}, + [2050] = {.lex_state = 3, .external_lex_state = 13}, + [2051] = {.lex_state = 53, .external_lex_state = 13}, + [2052] = {.lex_state = 53, .external_lex_state = 13}, + [2053] = {.lex_state = 53, .external_lex_state = 13}, + [2054] = {.lex_state = 53, .external_lex_state = 15}, + [2055] = {.lex_state = 53, .external_lex_state = 15}, + [2056] = {.lex_state = 53, .external_lex_state = 9}, + [2057] = {.lex_state = 53, .external_lex_state = 14}, + [2058] = {.lex_state = 53, .external_lex_state = 15}, + [2059] = {.lex_state = 53, .external_lex_state = 15}, + [2060] = {.lex_state = 53, .external_lex_state = 15}, + [2061] = {.lex_state = 53, .external_lex_state = 15}, + [2062] = {.lex_state = 53, .external_lex_state = 15}, + [2063] = {.lex_state = 9, .external_lex_state = 15}, + [2064] = {.lex_state = 53, .external_lex_state = 13}, + [2065] = {.lex_state = 53, .external_lex_state = 13}, + [2066] = {.lex_state = 9, .external_lex_state = 14}, + [2067] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2068] = {.lex_state = 9, .external_lex_state = 12}, + [2069] = {.lex_state = 53, .external_lex_state = 13}, + [2070] = {.lex_state = 3, .external_lex_state = 13}, + [2071] = {.lex_state = 53, .external_lex_state = 15}, + [2072] = {.lex_state = 53, .external_lex_state = 13}, + [2073] = {.lex_state = 53, .external_lex_state = 15}, + [2074] = {.lex_state = 8, .external_lex_state = 9}, + [2075] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2076] = {.lex_state = 9, .external_lex_state = 15}, + [2077] = {.lex_state = 53, .external_lex_state = 15}, + [2078] = {.lex_state = 53, .external_lex_state = 15}, + [2079] = {.lex_state = 53, .external_lex_state = 15}, + [2080] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2081] = {.lex_state = 53, .external_lex_state = 9, .reserved_word_set_id = 1}, + [2082] = {.lex_state = 53, .external_lex_state = 9}, + [2083] = {.lex_state = 53, .external_lex_state = 15}, + [2084] = {.lex_state = 53, .external_lex_state = 15}, + [2085] = {.lex_state = 53, .external_lex_state = 15}, + [2086] = {.lex_state = 53, .external_lex_state = 15}, + [2087] = {.lex_state = 9, .external_lex_state = 12}, + [2088] = {.lex_state = 9, .external_lex_state = 12}, + [2089] = {.lex_state = 9, .external_lex_state = 12}, + [2090] = {.lex_state = 53, .external_lex_state = 13}, + [2091] = {.lex_state = 53, .external_lex_state = 13}, + [2092] = {.lex_state = 53, .external_lex_state = 14}, + [2093] = {.lex_state = 9, .external_lex_state = 15}, + [2094] = {.lex_state = 53, .external_lex_state = 15}, + [2095] = {.lex_state = 53, .external_lex_state = 15}, + [2096] = {.lex_state = 53, .external_lex_state = 15}, + [2097] = {.lex_state = 53, .external_lex_state = 13}, + [2098] = {.lex_state = 53, .external_lex_state = 15}, + [2099] = {.lex_state = 3, .external_lex_state = 13}, + [2100] = {.lex_state = 53, .external_lex_state = 13}, + [2101] = {.lex_state = 53, .external_lex_state = 15}, + [2102] = {.lex_state = 53, .external_lex_state = 13}, + [2103] = {.lex_state = 53, .external_lex_state = 13}, + [2104] = {.lex_state = 53, .external_lex_state = 15}, + [2105] = {.lex_state = 53, .external_lex_state = 13}, + [2106] = {.lex_state = 53, .external_lex_state = 13}, + [2107] = {.lex_state = 9, .external_lex_state = 15}, + [2108] = {.lex_state = 53, .external_lex_state = 15}, + [2109] = {.lex_state = 9, .external_lex_state = 15}, + [2110] = {.lex_state = 53, .external_lex_state = 14}, + [2111] = {.lex_state = 53, .external_lex_state = 13}, + [2112] = {.lex_state = 53, .external_lex_state = 12}, + [2113] = {.lex_state = 53, .external_lex_state = 9}, + [2114] = {.lex_state = 53, .external_lex_state = 14}, + [2115] = {.lex_state = 53, .external_lex_state = 12}, + [2116] = {.lex_state = 53, .external_lex_state = 17}, + [2117] = {.lex_state = 53, .external_lex_state = 13}, + [2118] = {.lex_state = 53, .external_lex_state = 12}, + [2119] = {.lex_state = 53, .external_lex_state = 14}, + [2120] = {.lex_state = 53, .external_lex_state = 12}, + [2121] = {.lex_state = 53, .external_lex_state = 9}, + [2122] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2123] = {.lex_state = 53, .external_lex_state = 14}, + [2124] = {.lex_state = 53, .external_lex_state = 14}, + [2125] = {.lex_state = 53, .external_lex_state = 17}, + [2126] = {.lex_state = 53, .external_lex_state = 14}, + [2127] = {.lex_state = 53, .external_lex_state = 14}, + [2128] = {.lex_state = 53, .external_lex_state = 14}, + [2129] = {.lex_state = 53, .external_lex_state = 12}, + [2130] = {.lex_state = 53, .external_lex_state = 12}, + [2131] = {.lex_state = 53, .external_lex_state = 17}, + [2132] = {.lex_state = 53, .external_lex_state = 12}, + [2133] = {.lex_state = 53, .external_lex_state = 14}, + [2134] = {.lex_state = 53, .external_lex_state = 15}, + [2135] = {.lex_state = 53, .external_lex_state = 12}, + [2136] = {.lex_state = 53, .external_lex_state = 14}, + [2137] = {.lex_state = 53, .external_lex_state = 12}, + [2138] = {.lex_state = 53, .external_lex_state = 12}, + [2139] = {.lex_state = 53, .external_lex_state = 14}, + [2140] = {.lex_state = 53, .external_lex_state = 12}, + [2141] = {.lex_state = 53, .external_lex_state = 14}, + [2142] = {.lex_state = 53, .external_lex_state = 14}, + [2143] = {.lex_state = 9, .external_lex_state = 15}, + [2144] = {.lex_state = 53, .external_lex_state = 14}, + [2145] = {.lex_state = 53, .external_lex_state = 15}, + [2146] = {.lex_state = 53, .external_lex_state = 15}, + [2147] = {.lex_state = 53, .external_lex_state = 13}, + [2148] = {.lex_state = 53, .external_lex_state = 9}, + [2149] = {.lex_state = 53, .external_lex_state = 12}, + [2150] = {.lex_state = 53, .external_lex_state = 12}, + [2151] = {.lex_state = 53, .external_lex_state = 12}, + [2152] = {.lex_state = 53, .external_lex_state = 12}, + [2153] = {.lex_state = 53, .external_lex_state = 9}, + [2154] = {.lex_state = 53, .external_lex_state = 9}, + [2155] = {.lex_state = 53, .external_lex_state = 15}, + [2156] = {.lex_state = 53, .external_lex_state = 9}, + [2157] = {.lex_state = 53, .external_lex_state = 9}, + [2158] = {.lex_state = 53, .external_lex_state = 9}, + [2159] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2160] = {.lex_state = 53, .external_lex_state = 9}, + [2161] = {.lex_state = 53, .external_lex_state = 12}, + [2162] = {.lex_state = 53, .external_lex_state = 12}, + [2163] = {.lex_state = 53, .external_lex_state = 14}, + [2164] = {.lex_state = 53, .external_lex_state = 14}, + [2165] = {.lex_state = 53, .external_lex_state = 12}, + [2166] = {.lex_state = 53, .external_lex_state = 14}, + [2167] = {.lex_state = 53, .external_lex_state = 9}, + [2168] = {.lex_state = 53, .external_lex_state = 9}, + [2169] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2170] = {.lex_state = 53, .external_lex_state = 14}, + [2171] = {.lex_state = 53, .external_lex_state = 15}, + [2172] = {.lex_state = 53, .external_lex_state = 12}, + [2173] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2174] = {.lex_state = 53, .external_lex_state = 12}, + [2175] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2176] = {.lex_state = 8, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2177] = {.lex_state = 53, .external_lex_state = 14}, + [2178] = {.lex_state = 53, .external_lex_state = 14}, + [2179] = {.lex_state = 53, .external_lex_state = 12}, + [2180] = {.lex_state = 53, .external_lex_state = 14}, + [2181] = {.lex_state = 53, .external_lex_state = 14}, + [2182] = {.lex_state = 53, .external_lex_state = 12}, + [2183] = {.lex_state = 53, .external_lex_state = 9}, + [2184] = {.lex_state = 53, .external_lex_state = 14}, + [2185] = {.lex_state = 53, .external_lex_state = 12}, + [2186] = {.lex_state = 53, .external_lex_state = 12}, + [2187] = {.lex_state = 53, .external_lex_state = 14}, + [2188] = {.lex_state = 53, .external_lex_state = 14}, + [2189] = {.lex_state = 53, .external_lex_state = 14}, + [2190] = {.lex_state = 9, .external_lex_state = 15}, + [2191] = {.lex_state = 53, .external_lex_state = 15}, + [2192] = {.lex_state = 53, .external_lex_state = 14}, + [2193] = {.lex_state = 53, .external_lex_state = 9}, + [2194] = {.lex_state = 53, .external_lex_state = 9}, + [2195] = {.lex_state = 53, .external_lex_state = 9}, + [2196] = {.lex_state = 53, .external_lex_state = 13}, + [2197] = {.lex_state = 53, .external_lex_state = 14}, + [2198] = {.lex_state = 53, .external_lex_state = 13}, + [2199] = {.lex_state = 53, .external_lex_state = 9}, + [2200] = {.lex_state = 53, .external_lex_state = 9}, + [2201] = {.lex_state = 53, .external_lex_state = 14}, + [2202] = {.lex_state = 53, .external_lex_state = 13}, + [2203] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2204] = {.lex_state = 53, .external_lex_state = 13}, + [2205] = {.lex_state = 53, .external_lex_state = 14}, + [2206] = {.lex_state = 53, .external_lex_state = 13}, + [2207] = {.lex_state = 53, .external_lex_state = 13}, + [2208] = {.lex_state = 53, .external_lex_state = 13}, + [2209] = {.lex_state = 53, .external_lex_state = 13}, + [2210] = {.lex_state = 53, .external_lex_state = 14}, + [2211] = {.lex_state = 53, .external_lex_state = 13}, + [2212] = {.lex_state = 53, .external_lex_state = 14}, + [2213] = {.lex_state = 53, .external_lex_state = 12}, + [2214] = {.lex_state = 53, .external_lex_state = 14}, + [2215] = {.lex_state = 53, .external_lex_state = 13}, + [2216] = {.lex_state = 53, .external_lex_state = 13}, + [2217] = {.lex_state = 53, .external_lex_state = 14, .reserved_word_set_id = 1}, + [2218] = {.lex_state = 53, .external_lex_state = 17}, + [2219] = {.lex_state = 53, .external_lex_state = 14}, + [2220] = {.lex_state = 53, .external_lex_state = 13}, + [2221] = {.lex_state = 53, .external_lex_state = 13}, + [2222] = {.lex_state = 53, .external_lex_state = 13}, + [2223] = {.lex_state = 53, .external_lex_state = 12}, + [2224] = {.lex_state = 53, .external_lex_state = 12}, + [2225] = {.lex_state = 53, .external_lex_state = 13}, + [2226] = {.lex_state = 53, .external_lex_state = 13}, + [2227] = {.lex_state = 53, .external_lex_state = 13}, + [2228] = {.lex_state = 53, .external_lex_state = 13}, + [2229] = {.lex_state = 53, .external_lex_state = 13}, + [2230] = {.lex_state = 53, .external_lex_state = 13}, + [2231] = {.lex_state = 53, .external_lex_state = 13}, + [2232] = {.lex_state = 53, .external_lex_state = 13}, + [2233] = {.lex_state = 53, .external_lex_state = 13}, + [2234] = {.lex_state = 53, .external_lex_state = 15}, + [2235] = {.lex_state = 53, .external_lex_state = 15}, + [2236] = {.lex_state = 53, .external_lex_state = 15}, + [2237] = {.lex_state = 53, .external_lex_state = 14}, + [2238] = {.lex_state = 53, .external_lex_state = 17}, + [2239] = {.lex_state = 53, .external_lex_state = 12}, + [2240] = {.lex_state = 9, .external_lex_state = 15}, + [2241] = {.lex_state = 53, .external_lex_state = 9}, + [2242] = {.lex_state = 53, .external_lex_state = 13}, + [2243] = {.lex_state = 9, .external_lex_state = 15}, + [2244] = {.lex_state = 53, .external_lex_state = 9}, + [2245] = {.lex_state = 53, .external_lex_state = 15}, + [2246] = {.lex_state = 53, .external_lex_state = 13}, + [2247] = {.lex_state = 53, .external_lex_state = 9}, + [2248] = {.lex_state = 53, .external_lex_state = 14}, + [2249] = {.lex_state = 53, .external_lex_state = 9}, + [2250] = {.lex_state = 9, .external_lex_state = 15}, + [2251] = {.lex_state = 53, .external_lex_state = 14}, + [2252] = {.lex_state = 53, .external_lex_state = 13}, + [2253] = {.lex_state = 53, .external_lex_state = 12}, + [2254] = {.lex_state = 53, .external_lex_state = 9}, + [2255] = {.lex_state = 53, .external_lex_state = 14}, + [2256] = {.lex_state = 53, .external_lex_state = 14}, + [2257] = {.lex_state = 53, .external_lex_state = 13}, + [2258] = {.lex_state = 53, .external_lex_state = 14}, + [2259] = {.lex_state = 53, .external_lex_state = 14}, + [2260] = {.lex_state = 53, .external_lex_state = 14}, + [2261] = {.lex_state = 53, .external_lex_state = 12}, + [2262] = {.lex_state = 53, .external_lex_state = 15}, + [2263] = {.lex_state = 53, .external_lex_state = 9}, + [2264] = {.lex_state = 53, .external_lex_state = 15}, + [2265] = {.lex_state = 53, .external_lex_state = 13}, + [2266] = {.lex_state = 53, .external_lex_state = 14}, + [2267] = {.lex_state = 53, .external_lex_state = 14}, + [2268] = {.lex_state = 53, .external_lex_state = 12}, + [2269] = {.lex_state = 53, .external_lex_state = 12}, + [2270] = {.lex_state = 53, .external_lex_state = 13}, + [2271] = {.lex_state = 53, .external_lex_state = 12}, + [2272] = {.lex_state = 53, .external_lex_state = 14}, + [2273] = {.lex_state = 53, .external_lex_state = 14}, + [2274] = {.lex_state = 53, .external_lex_state = 18}, + [2275] = {.lex_state = 53, .external_lex_state = 15}, + [2276] = {.lex_state = 53, .external_lex_state = 14}, + [2277] = {.lex_state = 53, .external_lex_state = 15}, + [2278] = {.lex_state = 53, .external_lex_state = 13}, + [2279] = {.lex_state = 53, .external_lex_state = 14}, + [2280] = {.lex_state = 53, .external_lex_state = 12}, + [2281] = {.lex_state = 53, .external_lex_state = 13}, + [2282] = {.lex_state = 53, .external_lex_state = 13}, + [2283] = {.lex_state = 53, .external_lex_state = 9}, + [2284] = {.lex_state = 3, .external_lex_state = 13}, + [2285] = {.lex_state = 3, .external_lex_state = 13}, + [2286] = {.lex_state = 53, .external_lex_state = 14}, + [2287] = {.lex_state = 3, .external_lex_state = 13}, + [2288] = {.lex_state = 53, .external_lex_state = 14}, + [2289] = {.lex_state = 53, .external_lex_state = 14}, + [2290] = {.lex_state = 53, .external_lex_state = 15}, + [2291] = {.lex_state = 53, .external_lex_state = 13}, + [2292] = {.lex_state = 53, .external_lex_state = 14}, + [2293] = {.lex_state = 53, .external_lex_state = 14}, + [2294] = {.lex_state = 53, .external_lex_state = 12}, + [2295] = {.lex_state = 53, .external_lex_state = 13}, + [2296] = {.lex_state = 53, .external_lex_state = 13}, + [2297] = {.lex_state = 53, .external_lex_state = 12}, + [2298] = {.lex_state = 53, .external_lex_state = 14}, + [2299] = {.lex_state = 53, .external_lex_state = 13}, + [2300] = {.lex_state = 53, .external_lex_state = 18}, + [2301] = {.lex_state = 53, .external_lex_state = 14}, + [2302] = {.lex_state = 53, .external_lex_state = 14}, + [2303] = {.lex_state = 53, .external_lex_state = 13}, + [2304] = {.lex_state = 53, .external_lex_state = 12}, + [2305] = {.lex_state = 53, .external_lex_state = 14}, + [2306] = {.lex_state = 53, .external_lex_state = 14}, + [2307] = {.lex_state = 53, .external_lex_state = 12}, + [2308] = {.lex_state = 53, .external_lex_state = 14}, + [2309] = {.lex_state = 53, .external_lex_state = 14}, + [2310] = {.lex_state = 53, .external_lex_state = 12}, + [2311] = {.lex_state = 53, .external_lex_state = 12}, + [2312] = {.lex_state = 53, .external_lex_state = 12}, + [2313] = {.lex_state = 53, .external_lex_state = 15}, + [2314] = {.lex_state = 53, .external_lex_state = 9}, + [2315] = {.lex_state = 53, .external_lex_state = 18}, + [2316] = {.lex_state = 53, .external_lex_state = 14}, + [2317] = {.lex_state = 53, .external_lex_state = 14}, + [2318] = {.lex_state = 53, .external_lex_state = 14}, + [2319] = {.lex_state = 53, .external_lex_state = 13}, + [2320] = {.lex_state = 53, .external_lex_state = 12}, + [2321] = {.lex_state = 53, .external_lex_state = 14}, + [2322] = {.lex_state = 53, .external_lex_state = 12}, + [2323] = {.lex_state = 53, .external_lex_state = 14}, + [2324] = {.lex_state = 53, .external_lex_state = 13}, + [2325] = {.lex_state = 53, .external_lex_state = 15}, + [2326] = {.lex_state = 53, .external_lex_state = 13}, + [2327] = {.lex_state = 53, .external_lex_state = 13}, + [2328] = {.lex_state = 53, .external_lex_state = 15}, + [2329] = {.lex_state = 53, .external_lex_state = 12}, + [2330] = {.lex_state = 53, .external_lex_state = 18}, + [2331] = {.lex_state = 53, .external_lex_state = 14}, + [2332] = {.lex_state = 53, .external_lex_state = 14}, + [2333] = {.lex_state = 53, .external_lex_state = 14}, + [2334] = {.lex_state = 53, .external_lex_state = 14}, + [2335] = {.lex_state = 53, .external_lex_state = 18}, + [2336] = {.lex_state = 53, .external_lex_state = 13}, + [2337] = {.lex_state = 53, .external_lex_state = 12}, + [2338] = {.lex_state = 53, .external_lex_state = 13}, + [2339] = {.lex_state = 53, .external_lex_state = 13}, + [2340] = {.lex_state = 53, .external_lex_state = 14}, + [2341] = {.lex_state = 53, .external_lex_state = 14}, + [2342] = {.lex_state = 53, .external_lex_state = 12}, + [2343] = {.lex_state = 53, .external_lex_state = 12}, + [2344] = {.lex_state = 53, .external_lex_state = 14}, + [2345] = {.lex_state = 53, .external_lex_state = 14}, + [2346] = {.lex_state = 53, .external_lex_state = 12}, + [2347] = {.lex_state = 53, .external_lex_state = 12}, + [2348] = {.lex_state = 53, .external_lex_state = 12}, + [2349] = {.lex_state = 9, .external_lex_state = 15}, + [2350] = {.lex_state = 53, .external_lex_state = 9}, + [2351] = {.lex_state = 53, .external_lex_state = 15}, + [2352] = {.lex_state = 53, .external_lex_state = 13}, + [2353] = {.lex_state = 53, .external_lex_state = 9}, + [2354] = {.lex_state = 53, .external_lex_state = 12}, + [2355] = {.lex_state = 53, .external_lex_state = 14}, + [2356] = {.lex_state = 53, .external_lex_state = 14}, + [2357] = {.lex_state = 53, .external_lex_state = 9}, + [2358] = {.lex_state = 53, .external_lex_state = 14}, + [2359] = {.lex_state = 53, .external_lex_state = 13}, + [2360] = {.lex_state = 53, .external_lex_state = 14}, + [2361] = {.lex_state = 53, .external_lex_state = 13}, + [2362] = {.lex_state = 53, .external_lex_state = 14}, + [2363] = {.lex_state = 53, .external_lex_state = 14}, + [2364] = {.lex_state = 53, .external_lex_state = 12}, + [2365] = {.lex_state = 53, .external_lex_state = 12}, + [2366] = {.lex_state = 53, .external_lex_state = 12}, + [2367] = {.lex_state = 53, .external_lex_state = 13}, + [2368] = {.lex_state = 53, .external_lex_state = 14}, + [2369] = {.lex_state = 53, .external_lex_state = 14}, + [2370] = {.lex_state = 53, .external_lex_state = 14}, + [2371] = {.lex_state = 53, .external_lex_state = 12}, + [2372] = {.lex_state = 53, .external_lex_state = 12}, + [2373] = {.lex_state = 53, .external_lex_state = 12}, + [2374] = {.lex_state = 53, .external_lex_state = 12}, + [2375] = {.lex_state = 53, .external_lex_state = 12}, + [2376] = {.lex_state = 53, .external_lex_state = 12}, + [2377] = {.lex_state = 53, .external_lex_state = 14}, + [2378] = {.lex_state = 53, .external_lex_state = 14}, + [2379] = {.lex_state = 53, .external_lex_state = 15}, + [2380] = {.lex_state = 3, .external_lex_state = 13}, + [2381] = {.lex_state = 53, .external_lex_state = 14}, + [2382] = {.lex_state = 53, .external_lex_state = 15}, + [2383] = {.lex_state = 53, .external_lex_state = 14}, + [2384] = {.lex_state = 53, .external_lex_state = 14}, + [2385] = {.lex_state = 53, .external_lex_state = 13}, + [2386] = {.lex_state = 53, .external_lex_state = 13}, + [2387] = {.lex_state = 3, .external_lex_state = 13}, + [2388] = {.lex_state = 53, .external_lex_state = 15}, + [2389] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2390] = {.lex_state = 53, .external_lex_state = 13}, + [2391] = {.lex_state = 53, .external_lex_state = 13}, + [2392] = {.lex_state = 53, .external_lex_state = 14}, + [2393] = {.lex_state = 53, .external_lex_state = 14}, + [2394] = {.lex_state = 3, .external_lex_state = 13}, + [2395] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2396] = {.lex_state = 53, .external_lex_state = 12}, + [2397] = {.lex_state = 53, .external_lex_state = 18}, + [2398] = {.lex_state = 53, .external_lex_state = 14}, + [2399] = {.lex_state = 3, .external_lex_state = 13}, + [2400] = {.lex_state = 53, .external_lex_state = 14}, + [2401] = {.lex_state = 53, .external_lex_state = 14}, + [2402] = {.lex_state = 53, .external_lex_state = 12}, + [2403] = {.lex_state = 53, .external_lex_state = 12}, + [2404] = {.lex_state = 3, .external_lex_state = 13}, + [2405] = {.lex_state = 53, .external_lex_state = 15}, + [2406] = {.lex_state = 53, .external_lex_state = 13}, + [2407] = {.lex_state = 53, .external_lex_state = 13}, + [2408] = {.lex_state = 53, .external_lex_state = 12}, + [2409] = {.lex_state = 53, .external_lex_state = 14}, + [2410] = {.lex_state = 53, .external_lex_state = 13}, + [2411] = {.lex_state = 53, .external_lex_state = 13}, + [2412] = {.lex_state = 53, .external_lex_state = 14}, + [2413] = {.lex_state = 53, .external_lex_state = 14}, + [2414] = {.lex_state = 53, .external_lex_state = 15}, + [2415] = {.lex_state = 53, .external_lex_state = 14}, + [2416] = {.lex_state = 53, .external_lex_state = 12}, + [2417] = {.lex_state = 53, .external_lex_state = 14}, + [2418] = {.lex_state = 53, .external_lex_state = 14}, + [2419] = {.lex_state = 53, .external_lex_state = 14}, + [2420] = {.lex_state = 53, .external_lex_state = 14}, + [2421] = {.lex_state = 53, .external_lex_state = 12}, + [2422] = {.lex_state = 53, .external_lex_state = 12}, + [2423] = {.lex_state = 53, .external_lex_state = 14}, + [2424] = {.lex_state = 53, .external_lex_state = 15}, + [2425] = {.lex_state = 53, .external_lex_state = 12}, + [2426] = {.lex_state = 53, .external_lex_state = 12}, + [2427] = {.lex_state = 53, .external_lex_state = 12}, + [2428] = {.lex_state = 53, .external_lex_state = 13}, + [2429] = {.lex_state = 53, .external_lex_state = 14}, + [2430] = {.lex_state = 53, .external_lex_state = 15}, + [2431] = {.lex_state = 53, .external_lex_state = 12}, + [2432] = {.lex_state = 53, .external_lex_state = 12}, + [2433] = {.lex_state = 53, .external_lex_state = 12}, + [2434] = {.lex_state = 53, .external_lex_state = 15}, + [2435] = {.lex_state = 53, .external_lex_state = 12}, + [2436] = {.lex_state = 53, .external_lex_state = 12}, + [2437] = {.lex_state = 3, .external_lex_state = 13}, + [2438] = {.lex_state = 53, .external_lex_state = 15}, + [2439] = {.lex_state = 53, .external_lex_state = 9}, + [2440] = {.lex_state = 53, .external_lex_state = 9}, + [2441] = {.lex_state = 53, .external_lex_state = 15}, + [2442] = {.lex_state = 53, .external_lex_state = 15}, + [2443] = {.lex_state = 53, .external_lex_state = 18}, + [2444] = {.lex_state = 53, .external_lex_state = 15}, + [2445] = {.lex_state = 53, .external_lex_state = 13}, + [2446] = {.lex_state = 53, .external_lex_state = 13}, + [2447] = {.lex_state = 9, .external_lex_state = 15}, + [2448] = {.lex_state = 9, .external_lex_state = 15}, + [2449] = {.lex_state = 53, .external_lex_state = 15}, + [2450] = {.lex_state = 9, .external_lex_state = 15}, + [2451] = {.lex_state = 9, .external_lex_state = 15}, + [2452] = {.lex_state = 53, .external_lex_state = 15}, + [2453] = {.lex_state = 53, .external_lex_state = 15}, + [2454] = {.lex_state = 53, .external_lex_state = 15}, + [2455] = {.lex_state = 53, .external_lex_state = 13}, + [2456] = {.lex_state = 53, .external_lex_state = 14}, + [2457] = {.lex_state = 53, .external_lex_state = 15}, + [2458] = {.lex_state = 53, .external_lex_state = 15}, + [2459] = {.lex_state = 53, .external_lex_state = 14}, + [2460] = {.lex_state = 53, .external_lex_state = 14}, + [2461] = {.lex_state = 53, .external_lex_state = 12}, + [2462] = {.lex_state = 53, .external_lex_state = 14}, + [2463] = {.lex_state = 53, .external_lex_state = 14}, + [2464] = {.lex_state = 53, .external_lex_state = 15}, + [2465] = {.lex_state = 53, .external_lex_state = 13}, + [2466] = {.lex_state = 53, .external_lex_state = 13}, + [2467] = {.lex_state = 53, .external_lex_state = 14}, + [2468] = {.lex_state = 53, .external_lex_state = 13}, + [2469] = {.lex_state = 53, .external_lex_state = 14}, + [2470] = {.lex_state = 53, .external_lex_state = 14}, + [2471] = {.lex_state = 53, .external_lex_state = 12}, + [2472] = {.lex_state = 53, .external_lex_state = 14}, + [2473] = {.lex_state = 53, .external_lex_state = 14}, + [2474] = {.lex_state = 53, .external_lex_state = 12}, + [2475] = {.lex_state = 53, .external_lex_state = 12}, + [2476] = {.lex_state = 53, .external_lex_state = 14}, + [2477] = {.lex_state = 53, .external_lex_state = 12}, + [2478] = {.lex_state = 53, .external_lex_state = 9}, + [2479] = {.lex_state = 53, .external_lex_state = 18}, + [2480] = {.lex_state = 53, .external_lex_state = 14}, + [2481] = {.lex_state = 53, .external_lex_state = 14}, + [2482] = {.lex_state = 53, .external_lex_state = 15}, + [2483] = {.lex_state = 53, .external_lex_state = 14}, + [2484] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2485] = {.lex_state = 53, .external_lex_state = 15}, + [2486] = {.lex_state = 53, .external_lex_state = 15}, + [2487] = {.lex_state = 53, .external_lex_state = 15}, + [2488] = {.lex_state = 53, .external_lex_state = 14}, + [2489] = {.lex_state = 53, .external_lex_state = 15}, + [2490] = {.lex_state = 53, .external_lex_state = 9}, + [2491] = {.lex_state = 53, .external_lex_state = 12}, + [2492] = {.lex_state = 53, .external_lex_state = 17}, + [2493] = {.lex_state = 53, .external_lex_state = 14}, + [2494] = {.lex_state = 53, .external_lex_state = 15}, + [2495] = {.lex_state = 53, .external_lex_state = 13}, + [2496] = {.lex_state = 53, .external_lex_state = 13}, + [2497] = {.lex_state = 53, .external_lex_state = 15}, + [2498] = {.lex_state = 53, .external_lex_state = 9}, + [2499] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2500] = {.lex_state = 53, .external_lex_state = 13}, + [2501] = {.lex_state = 53, .external_lex_state = 14}, + [2502] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2503] = {.lex_state = 53, .external_lex_state = 17}, + [2504] = {.lex_state = 53, .external_lex_state = 15}, + [2505] = {.lex_state = 53, .external_lex_state = 9}, + [2506] = {.lex_state = 53, .external_lex_state = 17}, + [2507] = {.lex_state = 53, .external_lex_state = 15}, + [2508] = {.lex_state = 53, .external_lex_state = 14}, + [2509] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2510] = {.lex_state = 53, .external_lex_state = 12}, + [2511] = {.lex_state = 53, .external_lex_state = 9}, + [2512] = {.lex_state = 53, .external_lex_state = 15}, + [2513] = {.lex_state = 53, .external_lex_state = 9}, + [2514] = {.lex_state = 10, .external_lex_state = 15}, + [2515] = {.lex_state = 10, .external_lex_state = 15}, + [2516] = {.lex_state = 53, .external_lex_state = 9}, + [2517] = {.lex_state = 53, .external_lex_state = 14}, + [2518] = {.lex_state = 53, .external_lex_state = 9}, + [2519] = {.lex_state = 53, .external_lex_state = 14}, + [2520] = {.lex_state = 53, .external_lex_state = 14}, + [2521] = {.lex_state = 53, .external_lex_state = 15}, + [2522] = {.lex_state = 53, .external_lex_state = 17}, + [2523] = {.lex_state = 53, .external_lex_state = 15}, + [2524] = {.lex_state = 53, .external_lex_state = 9}, + [2525] = {.lex_state = 53, .external_lex_state = 15}, + [2526] = {.lex_state = 53, .external_lex_state = 14}, + [2527] = {.lex_state = 53, .external_lex_state = 15}, + [2528] = {.lex_state = 53, .external_lex_state = 9}, + [2529] = {.lex_state = 53, .external_lex_state = 14}, + [2530] = {.lex_state = 53, .external_lex_state = 14}, + [2531] = {.lex_state = 53, .external_lex_state = 14}, + [2532] = {.lex_state = 53, .external_lex_state = 14}, + [2533] = {.lex_state = 53, .external_lex_state = 12}, + [2534] = {.lex_state = 53, .external_lex_state = 14}, + [2535] = {.lex_state = 53, .external_lex_state = 15}, + [2536] = {.lex_state = 10, .external_lex_state = 15}, + [2537] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2538] = {.lex_state = 53, .external_lex_state = 15}, + [2539] = {.lex_state = 53, .external_lex_state = 12}, + [2540] = {.lex_state = 53, .external_lex_state = 12}, + [2541] = {.lex_state = 53, .external_lex_state = 9}, + [2542] = {.lex_state = 53, .external_lex_state = 9}, + [2543] = {.lex_state = 53, .external_lex_state = 15}, + [2544] = {.lex_state = 53, .external_lex_state = 17}, + [2545] = {.lex_state = 53, .external_lex_state = 17}, + [2546] = {.lex_state = 53, .external_lex_state = 17}, + [2547] = {.lex_state = 53, .external_lex_state = 9}, + [2548] = {.lex_state = 53, .external_lex_state = 9}, + [2549] = {.lex_state = 53, .external_lex_state = 17}, + [2550] = {.lex_state = 53, .external_lex_state = 9}, + [2551] = {.lex_state = 53, .external_lex_state = 17}, + [2552] = {.lex_state = 53, .external_lex_state = 17}, + [2553] = {.lex_state = 10, .external_lex_state = 15}, + [2554] = {.lex_state = 10, .external_lex_state = 15}, + [2555] = {.lex_state = 53, .external_lex_state = 17}, + [2556] = {.lex_state = 10, .external_lex_state = 15}, + [2557] = {.lex_state = 53, .external_lex_state = 9}, + [2558] = {.lex_state = 53, .external_lex_state = 17}, + [2559] = {.lex_state = 10, .external_lex_state = 15}, + [2560] = {.lex_state = 53, .external_lex_state = 15}, + [2561] = {.lex_state = 53, .external_lex_state = 15}, + [2562] = {.lex_state = 53, .external_lex_state = 13}, + [2563] = {.lex_state = 53, .external_lex_state = 9}, + [2564] = {.lex_state = 53, .external_lex_state = 12}, + [2565] = {.lex_state = 53, .external_lex_state = 15}, + [2566] = {.lex_state = 53, .external_lex_state = 15}, + [2567] = {.lex_state = 53, .external_lex_state = 9}, + [2568] = {.lex_state = 53, .external_lex_state = 9}, + [2569] = {.lex_state = 53, .external_lex_state = 14}, + [2570] = {.lex_state = 53, .external_lex_state = 17}, + [2571] = {.lex_state = 10, .external_lex_state = 15}, + [2572] = {.lex_state = 53, .external_lex_state = 12}, + [2573] = {.lex_state = 53, .external_lex_state = 17}, + [2574] = {.lex_state = 53, .external_lex_state = 14}, + [2575] = {.lex_state = 53, .external_lex_state = 12}, + [2576] = {.lex_state = 53, .external_lex_state = 12}, + [2577] = {.lex_state = 53, .external_lex_state = 17}, + [2578] = {.lex_state = 53, .external_lex_state = 17}, + [2579] = {.lex_state = 53, .external_lex_state = 13}, + [2580] = {.lex_state = 53, .external_lex_state = 15}, + [2581] = {.lex_state = 53, .external_lex_state = 15}, + [2582] = {.lex_state = 53, .external_lex_state = 17}, + [2583] = {.lex_state = 53, .external_lex_state = 15}, + [2584] = {.lex_state = 10, .external_lex_state = 15}, + [2585] = {.lex_state = 53, .external_lex_state = 14}, + [2586] = {.lex_state = 10, .external_lex_state = 15}, + [2587] = {.lex_state = 53, .external_lex_state = 15}, + [2588] = {.lex_state = 53, .external_lex_state = 17}, + [2589] = {.lex_state = 53, .external_lex_state = 15}, + [2590] = {.lex_state = 53, .external_lex_state = 15}, + [2591] = {.lex_state = 53, .external_lex_state = 15}, + [2592] = {.lex_state = 53, .external_lex_state = 12}, + [2593] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2594] = {.lex_state = 4, .external_lex_state = 15}, + [2595] = {.lex_state = 53, .external_lex_state = 15}, + [2596] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2597] = {.lex_state = 53, .external_lex_state = 15}, + [2598] = {.lex_state = 53, .external_lex_state = 14}, + [2599] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2600] = {.lex_state = 53, .external_lex_state = 13}, + [2601] = {.lex_state = 53, .external_lex_state = 12}, + [2602] = {.lex_state = 53, .external_lex_state = 13}, + [2603] = {.lex_state = 53, .external_lex_state = 13}, + [2604] = {.lex_state = 53, .external_lex_state = 13}, + [2605] = {.lex_state = 53, .external_lex_state = 13}, + [2606] = {.lex_state = 53, .external_lex_state = 15}, + [2607] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2608] = {.lex_state = 53, .external_lex_state = 15}, + [2609] = {.lex_state = 53, .external_lex_state = 14}, + [2610] = {.lex_state = 53, .external_lex_state = 12}, + [2611] = {.lex_state = 53, .external_lex_state = 14}, + [2612] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2613] = {.lex_state = 53, .external_lex_state = 13}, + [2614] = {.lex_state = 53, .external_lex_state = 13}, + [2615] = {.lex_state = 53, .external_lex_state = 12}, + [2616] = {.lex_state = 53, .external_lex_state = 14}, + [2617] = {.lex_state = 53, .external_lex_state = 12}, + [2618] = {.lex_state = 53, .external_lex_state = 15}, + [2619] = {.lex_state = 53, .external_lex_state = 13}, + [2620] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2621] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2622] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2623] = {.lex_state = 53, .external_lex_state = 15}, + [2624] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2625] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2626] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2627] = {.lex_state = 53, .external_lex_state = 13}, + [2628] = {.lex_state = 53, .external_lex_state = 15}, + [2629] = {.lex_state = 53, .external_lex_state = 13}, + [2630] = {.lex_state = 53, .external_lex_state = 12}, + [2631] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2632] = {.lex_state = 53, .external_lex_state = 13}, + [2633] = {.lex_state = 53, .external_lex_state = 14}, + [2634] = {.lex_state = 53, .external_lex_state = 15}, + [2635] = {.lex_state = 53, .external_lex_state = 13}, + [2636] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2637] = {.lex_state = 53, .external_lex_state = 14}, + [2638] = {.lex_state = 53, .external_lex_state = 13}, + [2639] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2640] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2641] = {.lex_state = 53, .external_lex_state = 13}, + [2642] = {.lex_state = 53, .external_lex_state = 15}, + [2643] = {.lex_state = 53, .external_lex_state = 12}, + [2644] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2645] = {.lex_state = 53, .external_lex_state = 15}, + [2646] = {.lex_state = 53, .external_lex_state = 14}, + [2647] = {.lex_state = 53, .external_lex_state = 13}, + [2648] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2649] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2650] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2651] = {.lex_state = 53, .external_lex_state = 13}, + [2652] = {.lex_state = 53, .external_lex_state = 15}, + [2653] = {.lex_state = 4, .external_lex_state = 15}, + [2654] = {.lex_state = 53, .external_lex_state = 13}, + [2655] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2656] = {.lex_state = 53, .external_lex_state = 15}, + [2657] = {.lex_state = 53, .external_lex_state = 14}, + [2658] = {.lex_state = 53, .external_lex_state = 15}, + [2659] = {.lex_state = 53, .external_lex_state = 12}, + [2660] = {.lex_state = 53, .external_lex_state = 13}, + [2661] = {.lex_state = 4, .external_lex_state = 15}, + [2662] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2663] = {.lex_state = 53, .external_lex_state = 13}, + [2664] = {.lex_state = 53, .external_lex_state = 15}, + [2665] = {.lex_state = 53, .external_lex_state = 12}, + [2666] = {.lex_state = 53, .external_lex_state = 15}, + [2667] = {.lex_state = 53, .external_lex_state = 14}, + [2668] = {.lex_state = 53, .external_lex_state = 14}, + [2669] = {.lex_state = 53, .external_lex_state = 15}, + [2670] = {.lex_state = 53, .external_lex_state = 12}, + [2671] = {.lex_state = 53, .external_lex_state = 12}, + [2672] = {.lex_state = 53, .external_lex_state = 15}, + [2673] = {.lex_state = 4, .external_lex_state = 15}, + [2674] = {.lex_state = 53, .external_lex_state = 13}, + [2675] = {.lex_state = 53, .external_lex_state = 13}, + [2676] = {.lex_state = 53, .external_lex_state = 15}, + [2677] = {.lex_state = 4, .external_lex_state = 15}, + [2678] = {.lex_state = 53, .external_lex_state = 15}, + [2679] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2680] = {.lex_state = 53, .external_lex_state = 15}, + [2681] = {.lex_state = 53, .external_lex_state = 14}, + [2682] = {.lex_state = 53, .external_lex_state = 15}, + [2683] = {.lex_state = 53, .external_lex_state = 15}, + [2684] = {.lex_state = 53, .external_lex_state = 15}, + [2685] = {.lex_state = 53, .external_lex_state = 13}, + [2686] = {.lex_state = 53, .external_lex_state = 15}, + [2687] = {.lex_state = 53, .external_lex_state = 15}, + [2688] = {.lex_state = 53, .external_lex_state = 15}, + [2689] = {.lex_state = 53, .external_lex_state = 15}, + [2690] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2691] = {.lex_state = 53, .external_lex_state = 13}, + [2692] = {.lex_state = 53, .external_lex_state = 14}, + [2693] = {.lex_state = 53, .external_lex_state = 13}, + [2694] = {.lex_state = 53, .external_lex_state = 14}, + [2695] = {.lex_state = 53, .external_lex_state = 15}, + [2696] = {.lex_state = 53, .external_lex_state = 12}, + [2697] = {.lex_state = 53, .external_lex_state = 14}, + [2698] = {.lex_state = 53, .external_lex_state = 14}, + [2699] = {.lex_state = 53, .external_lex_state = 14}, + [2700] = {.lex_state = 53, .external_lex_state = 13}, + [2701] = {.lex_state = 53, .external_lex_state = 15}, + [2702] = {.lex_state = 53, .external_lex_state = 12}, + [2703] = {.lex_state = 53, .external_lex_state = 12}, + [2704] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2705] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2706] = {.lex_state = 53, .external_lex_state = 13}, + [2707] = {.lex_state = 53, .external_lex_state = 13}, + [2708] = {.lex_state = 53, .external_lex_state = 14}, + [2709] = {.lex_state = 4, .external_lex_state = 15}, + [2710] = {.lex_state = 53, .external_lex_state = 12}, + [2711] = {.lex_state = 53, .external_lex_state = 13}, + [2712] = {.lex_state = 53, .external_lex_state = 15}, + [2713] = {.lex_state = 53, .external_lex_state = 13}, + [2714] = {.lex_state = 53, .external_lex_state = 15}, + [2715] = {.lex_state = 53, .external_lex_state = 15}, + [2716] = {.lex_state = 53, .external_lex_state = 15}, + [2717] = {.lex_state = 53, .external_lex_state = 14}, + [2718] = {.lex_state = 53, .external_lex_state = 15}, + [2719] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2720] = {.lex_state = 53, .external_lex_state = 13}, + [2721] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2722] = {.lex_state = 53, .external_lex_state = 13}, + [2723] = {.lex_state = 53, .external_lex_state = 14}, + [2724] = {.lex_state = 53, .external_lex_state = 12}, + [2725] = {.lex_state = 53, .external_lex_state = 13}, + [2726] = {.lex_state = 53, .external_lex_state = 15}, + [2727] = {.lex_state = 53, .external_lex_state = 14}, + [2728] = {.lex_state = 53, .external_lex_state = 13}, + [2729] = {.lex_state = 53, .external_lex_state = 14}, + [2730] = {.lex_state = 53, .external_lex_state = 13}, + [2731] = {.lex_state = 53, .external_lex_state = 15}, + [2732] = {.lex_state = 53, .external_lex_state = 14}, + [2733] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2734] = {.lex_state = 53, .external_lex_state = 14}, + [2735] = {.lex_state = 53, .external_lex_state = 15}, + [2736] = {.lex_state = 53, .external_lex_state = 14}, + [2737] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2738] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2739] = {.lex_state = 53, .external_lex_state = 15}, + [2740] = {.lex_state = 53, .external_lex_state = 15}, + [2741] = {.lex_state = 53, .external_lex_state = 15}, + [2742] = {.lex_state = 53, .external_lex_state = 15}, + [2743] = {.lex_state = 53, .external_lex_state = 12}, + [2744] = {.lex_state = 53, .external_lex_state = 14}, + [2745] = {.lex_state = 53, .external_lex_state = 12}, + [2746] = {.lex_state = 53, .external_lex_state = 12}, + [2747] = {.lex_state = 53, .external_lex_state = 14}, + [2748] = {.lex_state = 53, .external_lex_state = 13}, + [2749] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2750] = {.lex_state = 53, .external_lex_state = 14}, + [2751] = {.lex_state = 53, .external_lex_state = 15}, + [2752] = {.lex_state = 53, .external_lex_state = 12}, + [2753] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2754] = {.lex_state = 53, .external_lex_state = 13}, + [2755] = {.lex_state = 53, .external_lex_state = 13}, + [2756] = {.lex_state = 4, .external_lex_state = 15}, + [2757] = {.lex_state = 53, .external_lex_state = 15}, + [2758] = {.lex_state = 53, .external_lex_state = 14}, + [2759] = {.lex_state = 53, .external_lex_state = 15}, + [2760] = {.lex_state = 53, .external_lex_state = 15}, + [2761] = {.lex_state = 53, .external_lex_state = 13}, + [2762] = {.lex_state = 53, .external_lex_state = 15}, + [2763] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2764] = {.lex_state = 53, .external_lex_state = 13}, + [2765] = {.lex_state = 53, .external_lex_state = 15}, + [2766] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2767] = {.lex_state = 53, .external_lex_state = 12}, + [2768] = {.lex_state = 53, .external_lex_state = 15}, + [2769] = {.lex_state = 53, .external_lex_state = 15}, + [2770] = {.lex_state = 53, .external_lex_state = 14}, + [2771] = {.lex_state = 53, .external_lex_state = 14}, + [2772] = {.lex_state = 53, .external_lex_state = 13}, + [2773] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2774] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2775] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, + [2776] = {.lex_state = 53, .external_lex_state = 14}, + [2777] = {.lex_state = 53, .external_lex_state = 15}, + [2778] = {.lex_state = 53, .external_lex_state = 15}, + [2779] = {.lex_state = 53, .external_lex_state = 15}, + [2780] = {.lex_state = 53, .external_lex_state = 14}, + [2781] = {.lex_state = 53, .external_lex_state = 15}, + [2782] = {.lex_state = 53, .external_lex_state = 15}, + [2783] = {.lex_state = 53, .external_lex_state = 15}, + [2784] = {.lex_state = 4, .external_lex_state = 15}, + [2785] = {.lex_state = 53, .external_lex_state = 15, .reserved_word_set_id = 1}, }; static const TSSymbol ts_reserved_words[16][MAX_RESERVED_WORD_SET_SIZE] = { @@ -10497,7 +10513,6 @@ static const TSSymbol ts_reserved_words[16][MAX_RESERVED_WORD_SET_SIZE] = { [11] = { anon_sym_as, anon_sym_in, - anon_sym_except, anon_sym_and, anon_sym_or, anon_sym_is, @@ -10647,7 +10662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), [anon_sym_except] = ACTIONS(1), - [anon_sym_except_STAR] = ACTIONS(1), + [anon_sym_STAR2] = ACTIONS(1), [anon_sym_finally] = ACTIONS(1), [anon_sym_with] = ACTIONS(1), [anon_sym_def] = ACTIONS(1), @@ -10722,72 +10737,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_end] = ACTIONS(1), }, [STATE(1)] = { - [sym_module] = STATE(2755), - [sym__statement] = STATE(63), - [sym__simple_statements] = STATE(63), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_if_statement] = STATE(63), - [sym_match_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_try_statement] = STATE(63), - [sym_with_statement] = STATE(63), - [sym_function_definition] = STATE(63), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_class_definition] = STATE(63), - [sym_decorated_definition] = STATE(63), - [sym_decorator] = STATE(1817), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(63), - [aux_sym_decorated_definition_repeat1] = STATE(1817), + [sym_module] = STATE(2739), + [sym__statement] = STATE(69), + [sym__simple_statements] = STATE(69), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_if_statement] = STATE(69), + [sym_match_statement] = STATE(69), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_try_statement] = STATE(69), + [sym_with_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_class_definition] = STATE(69), + [sym_decorated_definition] = STATE(69), + [sym_decorator] = STATE(1824), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(69), + [aux_sym_decorated_definition_repeat1] = STATE(1824), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), @@ -10836,72 +10851,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(2)] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(2495), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(2577), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -10950,72 +10965,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(3)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(696), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(576), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11064,72 +11079,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(4)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(819), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(606), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11178,72 +11193,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(5)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(725), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(710), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11292,72 +11307,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(6)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(740), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(776), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11406,72 +11421,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(7)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(724), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(792), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11520,72 +11535,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(8)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(729), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(807), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11634,72 +11649,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(9)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(731), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(724), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11748,72 +11763,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(10)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(736), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(728), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11862,72 +11877,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(11)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(697), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(731), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -11976,72 +11991,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(12)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(710), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(745), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12090,72 +12105,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(13)] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(634), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(708), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12200,76 +12215,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(14)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(744), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(717), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12318,72 +12333,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(15)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(750), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(669), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12432,72 +12447,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(16)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(751), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(754), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12546,72 +12561,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(17)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(683), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(758), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12660,72 +12675,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(18)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(756), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(760), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12774,72 +12789,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(19)] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(641), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(692), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12884,76 +12899,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(20)] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(668), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(770), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -12998,76 +13013,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(21)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(758), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(682), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13116,72 +13131,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(22)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(689), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(685), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13230,72 +13245,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(23)] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(2499), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(777), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13340,76 +13355,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(24)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(763), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(691), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13458,72 +13473,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(25)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(766), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(2570), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13568,76 +13583,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [STATE(26)] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(2492), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(784), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13682,76 +13697,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(27)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(768), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(656), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13796,76 +13811,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(28)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(767), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(661), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -13914,72 +13929,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(29)] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(648), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(790), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14024,76 +14039,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(30)] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(426), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(2544), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14138,76 +14153,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(105), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [STATE(31)] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(2520), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(2551), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14256,72 +14271,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(32)] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(2524), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(793), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14366,76 +14381,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(33)] = { - [sym__statement] = STATE(69), - [sym__simple_statements] = STATE(69), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(69), - [sym_match_statement] = STATE(69), - [sym_for_statement] = STATE(69), - [sym_while_statement] = STATE(69), - [sym_try_statement] = STATE(69), - [sym_with_statement] = STATE(69), - [sym_function_definition] = STATE(69), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(69), - [sym_decorated_definition] = STATE(69), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(2532), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(69), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(664), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14480,76 +14495,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(101), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(34)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(666), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(665), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14594,76 +14609,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(35)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(620), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(2578), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14708,76 +14723,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, [STATE(36)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(622), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(71), + [sym__simple_statements] = STATE(71), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(71), + [sym_match_statement] = STATE(71), + [sym_for_statement] = STATE(71), + [sym_while_statement] = STATE(71), + [sym_try_statement] = STATE(71), + [sym_with_statement] = STATE(71), + [sym_function_definition] = STATE(71), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(71), + [sym_decorated_definition] = STATE(71), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(667), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(71), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14822,76 +14837,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(103), [sym_string_start] = ACTIONS(81), }, [STATE(37)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(653), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(732), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -14936,76 +14951,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(38)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(654), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(736), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15050,76 +15065,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(39)] = { - [sym__statement] = STATE(64), - [sym__simple_statements] = STATE(64), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(64), - [sym_match_statement] = STATE(64), - [sym_for_statement] = STATE(64), - [sym_while_statement] = STATE(64), - [sym_try_statement] = STATE(64), - [sym_with_statement] = STATE(64), - [sym_function_definition] = STATE(64), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(64), - [sym_decorated_definition] = STATE(64), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(606), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(64), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(766), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15164,76 +15179,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(103), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(40)] = { - [sym__statement] = STATE(68), - [sym__simple_statements] = STATE(68), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(68), - [sym_match_statement] = STATE(68), - [sym_for_statement] = STATE(68), - [sym_while_statement] = STATE(68), - [sym_try_statement] = STATE(68), - [sym_with_statement] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(68), - [sym_decorated_definition] = STATE(68), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(417), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(68), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(817), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15278,76 +15293,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(109), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(41)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(614), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(819), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15392,76 +15407,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(42)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(693), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(824), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15506,76 +15521,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(43)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(797), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(830), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15620,76 +15635,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(44)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(799), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(715), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15734,76 +15749,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(45)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(806), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(719), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15848,76 +15863,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(46)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(812), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(660), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -15962,76 +15977,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(47)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(814), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(787), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16076,76 +16091,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(48)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(816), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(730), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16190,76 +16205,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(49)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(820), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(738), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16304,76 +16319,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(50)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(702), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(711), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16418,76 +16433,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(51)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(711), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(814), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16532,76 +16547,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(52)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(830), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(653), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16646,76 +16661,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(53)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(714), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(675), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16760,76 +16775,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(54)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(718), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(739), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16874,76 +16889,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(55)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(706), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(696), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -16988,76 +17003,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(56)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(717), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(772), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17102,76 +17117,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(57)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(825), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(671), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17216,76 +17231,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(58)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(682), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(668), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17330,76 +17345,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(59)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(742), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(810), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17444,76 +17459,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(60)] = { - [sym__statement] = STATE(67), - [sym__simple_statements] = STATE(67), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(67), - [sym_match_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_try_statement] = STATE(67), - [sym_with_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(67), - [sym_decorated_definition] = STATE(67), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(765), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(67), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(812), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17558,76 +17573,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(107), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(61)] = { - [sym__statement] = STATE(62), - [sym__simple_statements] = STATE(62), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(62), - [sym_match_statement] = STATE(62), - [sym_for_statement] = STATE(62), - [sym_while_statement] = STATE(62), - [sym_try_statement] = STATE(62), - [sym_with_statement] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(62), - [sym_decorated_definition] = STATE(62), - [sym_decorator] = STATE(1819), - [sym_block] = STATE(649), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(62), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(666), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17676,71 +17691,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(81), }, [STATE(62)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1819), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(689), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17785,76 +17801,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(111), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(63)] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1817), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1817), - [ts_builtin_sym_end] = ACTIONS(113), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(670), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -17868,19 +17884,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_if] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_for] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), - [anon_sym_def] = ACTIONS(49), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), [anon_sym_type] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), + [anon_sym_class] = ACTIONS(99), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), @@ -17899,74 +17915,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(64)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1819), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(549), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18011,301 +18029,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(115), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, [STATE(65)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1819), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1819), - [sym_identifier] = ACTIONS(117), - [anon_sym_import] = ACTIONS(120), - [anon_sym_from] = ACTIONS(123), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_STAR] = ACTIONS(129), - [anon_sym_print] = ACTIONS(132), - [anon_sym_assert] = ACTIONS(135), - [anon_sym_return] = ACTIONS(138), - [anon_sym_del] = ACTIONS(141), - [anon_sym_raise] = ACTIONS(144), - [anon_sym_pass] = ACTIONS(147), - [anon_sym_break] = ACTIONS(150), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_if] = ACTIONS(156), - [anon_sym_match] = ACTIONS(159), - [anon_sym_async] = ACTIONS(162), - [anon_sym_for] = ACTIONS(165), - [anon_sym_while] = ACTIONS(168), - [anon_sym_try] = ACTIONS(171), - [anon_sym_with] = ACTIONS(174), - [anon_sym_def] = ACTIONS(177), - [anon_sym_global] = ACTIONS(180), - [anon_sym_nonlocal] = ACTIONS(183), - [anon_sym_exec] = ACTIONS(186), - [anon_sym_type] = ACTIONS(189), - [anon_sym_class] = ACTIONS(192), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AT] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_not] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_lambda] = ACTIONS(210), - [anon_sym_yield] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(216), - [sym_integer] = ACTIONS(219), - [sym_float] = ACTIONS(216), - [anon_sym_await] = ACTIONS(222), - [sym_true] = ACTIONS(219), - [sym_false] = ACTIONS(219), - [sym_none] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(225), - [sym_string_start] = ACTIONS(227), - }, - [STATE(66)] = { - [sym__statement] = STATE(66), - [sym__simple_statements] = STATE(66), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_if_statement] = STATE(66), - [sym_match_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_try_statement] = STATE(66), - [sym_with_statement] = STATE(66), - [sym_function_definition] = STATE(66), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_class_definition] = STATE(66), - [sym_decorated_definition] = STATE(66), - [sym_decorator] = STATE(1817), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(66), - [aux_sym_decorated_definition_repeat1] = STATE(1817), - [ts_builtin_sym_end] = ACTIONS(225), - [sym_identifier] = ACTIONS(117), - [anon_sym_import] = ACTIONS(120), - [anon_sym_from] = ACTIONS(123), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_STAR] = ACTIONS(129), - [anon_sym_print] = ACTIONS(132), - [anon_sym_assert] = ACTIONS(135), - [anon_sym_return] = ACTIONS(138), - [anon_sym_del] = ACTIONS(141), - [anon_sym_raise] = ACTIONS(144), - [anon_sym_pass] = ACTIONS(147), - [anon_sym_break] = ACTIONS(150), - [anon_sym_continue] = ACTIONS(153), - [anon_sym_if] = ACTIONS(230), - [anon_sym_match] = ACTIONS(233), - [anon_sym_async] = ACTIONS(236), - [anon_sym_for] = ACTIONS(239), - [anon_sym_while] = ACTIONS(242), - [anon_sym_try] = ACTIONS(245), - [anon_sym_with] = ACTIONS(248), - [anon_sym_def] = ACTIONS(251), - [anon_sym_global] = ACTIONS(180), - [anon_sym_nonlocal] = ACTIONS(183), - [anon_sym_exec] = ACTIONS(186), - [anon_sym_type] = ACTIONS(189), - [anon_sym_class] = ACTIONS(254), - [anon_sym_LBRACK] = ACTIONS(195), - [anon_sym_AT] = ACTIONS(198), - [anon_sym_DASH] = ACTIONS(201), - [anon_sym_LBRACE] = ACTIONS(204), - [anon_sym_PLUS] = ACTIONS(201), - [anon_sym_not] = ACTIONS(207), - [anon_sym_TILDE] = ACTIONS(201), - [anon_sym_lambda] = ACTIONS(210), - [anon_sym_yield] = ACTIONS(213), - [sym_ellipsis] = ACTIONS(216), - [sym_integer] = ACTIONS(219), - [sym_float] = ACTIONS(216), - [anon_sym_await] = ACTIONS(222), - [sym_true] = ACTIONS(219), - [sym_false] = ACTIONS(219), - [sym_none] = ACTIONS(219), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(227), - }, - [STATE(67)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1819), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(613), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18350,75 +18143,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(257), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [STATE(68)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1819), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [STATE(66)] = { + [sym__statement] = STATE(73), + [sym__simple_statements] = STATE(73), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(73), + [sym_match_statement] = STATE(73), + [sym_for_statement] = STATE(73), + [sym_while_statement] = STATE(73), + [sym_try_statement] = STATE(73), + [sym_with_statement] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(73), + [sym_decorated_definition] = STATE(73), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(697), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(73), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18463,75 +18257,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(259), + [sym__dedent] = ACTIONS(105), [sym_string_start] = ACTIONS(81), }, - [STATE(69)] = { - [sym__statement] = STATE(65), - [sym__simple_statements] = STATE(65), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_if_statement] = STATE(65), - [sym_match_statement] = STATE(65), - [sym_for_statement] = STATE(65), - [sym_while_statement] = STATE(65), - [sym_try_statement] = STATE(65), - [sym_with_statement] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_class_definition] = STATE(65), - [sym_decorated_definition] = STATE(65), - [sym_decorator] = STATE(1819), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [aux_sym_module_repeat1] = STATE(65), - [aux_sym_decorated_definition_repeat1] = STATE(1819), + [STATE(67)] = { + [sym__statement] = STATE(72), + [sym__simple_statements] = STATE(72), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(72), + [sym_match_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_try_statement] = STATE(72), + [sym_with_statement] = STATE(72), + [sym_function_definition] = STATE(72), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(72), + [sym_decorated_definition] = STATE(72), + [sym_decorator] = STATE(1831), + [sym_block] = STATE(2588), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(72), + [aux_sym_decorated_definition_repeat1] = STATE(1831), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -18576,283 +18371,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__dedent] = ACTIONS(261), + [sym__dedent] = ACTIONS(101), [sym_string_start] = ACTIONS(81), }, - [STATE(70)] = { - [sym_named_expression] = STATE(1723), - [sym__named_expression_lhs] = STATE(2729), - [sym_type_parameter] = STATE(2081), - [sym_list_splat_pattern] = STATE(1372), - [sym_as_pattern] = STATE(1723), - [sym_expression] = STATE(1762), - [sym_primary_expression] = STATE(952), - [sym_not_operator] = STATE(1723), - [sym_boolean_operator] = STATE(1723), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_comparison_operator] = STATE(1723), - [sym_lambda] = STATE(1723), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_type] = STATE(2124), - [sym_splat_type] = STATE(2074), - [sym_generic_type] = STATE(2074), - [sym_union_type] = STATE(2074), - [sym_constrained_type] = STATE(2074), - [sym_member_type] = STATE(2074), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_conditional_expression] = STATE(1723), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(263), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(275), - [anon_sym_print] = ACTIONS(278), - [anon_sym_GT_GT] = ACTIONS(267), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(282), - [anon_sym_match] = ACTIONS(285), - [anon_sym_async] = ACTIONS(278), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_exec] = ACTIONS(278), - [anon_sym_type] = ACTIONS(290), - [anon_sym_EQ] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(294), - [anon_sym_AT] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(301), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PERCENT] = ACTIONS(267), - [anon_sym_SLASH_SLASH] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_LT_LT] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [anon_sym_lambda] = ACTIONS(306), - [anon_sym_PLUS_EQ] = ACTIONS(308), - [anon_sym_DASH_EQ] = ACTIONS(308), - [anon_sym_STAR_EQ] = ACTIONS(308), - [anon_sym_SLASH_EQ] = ACTIONS(308), - [anon_sym_AT_EQ] = ACTIONS(308), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), - [anon_sym_PERCENT_EQ] = ACTIONS(308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(308), - [anon_sym_GT_GT_EQ] = ACTIONS(308), - [anon_sym_LT_LT_EQ] = ACTIONS(308), - [anon_sym_AMP_EQ] = ACTIONS(308), - [anon_sym_CARET_EQ] = ACTIONS(308), - [anon_sym_PIPE_EQ] = ACTIONS(308), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), - [anon_sym_await] = ACTIONS(314), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(265), - [sym_string_start] = ACTIONS(316), - }, - [STATE(71)] = { - [sym_named_expression] = STATE(1723), - [sym__named_expression_lhs] = STATE(2729), - [sym_list_splat_pattern] = STATE(1372), - [sym_as_pattern] = STATE(1723), - [sym_expression] = STATE(1762), - [sym_primary_expression] = STATE(952), - [sym_not_operator] = STATE(1723), - [sym_boolean_operator] = STATE(1723), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_comparison_operator] = STATE(1723), - [sym_lambda] = STATE(1723), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_type] = STATE(2124), - [sym_splat_type] = STATE(2074), - [sym_generic_type] = STATE(2074), - [sym_union_type] = STATE(2074), - [sym_constrained_type] = STATE(2074), - [sym_member_type] = STATE(2074), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_conditional_expression] = STATE(1723), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(263), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(275), - [anon_sym_print] = ACTIONS(278), - [anon_sym_GT_GT] = ACTIONS(267), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(292), - [anon_sym_match] = ACTIONS(285), - [anon_sym_async] = ACTIONS(278), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(287), - [anon_sym_exec] = ACTIONS(278), - [anon_sym_type] = ACTIONS(290), - [anon_sym_EQ] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(318), - [anon_sym_AT] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(301), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PERCENT] = ACTIONS(267), - [anon_sym_SLASH_SLASH] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_LT_LT] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [anon_sym_lambda] = ACTIONS(306), - [anon_sym_PLUS_EQ] = ACTIONS(308), - [anon_sym_DASH_EQ] = ACTIONS(308), - [anon_sym_STAR_EQ] = ACTIONS(308), - [anon_sym_SLASH_EQ] = ACTIONS(308), - [anon_sym_AT_EQ] = ACTIONS(308), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), - [anon_sym_PERCENT_EQ] = ACTIONS(308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(308), - [anon_sym_GT_GT_EQ] = ACTIONS(308), - [anon_sym_LT_LT_EQ] = ACTIONS(308), - [anon_sym_AMP_EQ] = ACTIONS(308), - [anon_sym_CARET_EQ] = ACTIONS(308), - [anon_sym_PIPE_EQ] = ACTIONS(308), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), - [anon_sym_await] = ACTIONS(314), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), + [STATE(68)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1824), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1824), + [ts_builtin_sym_end] = ACTIONS(107), + [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_match] = ACTIONS(151), + [anon_sym_async] = ACTIONS(154), + [anon_sym_for] = ACTIONS(157), + [anon_sym_while] = ACTIONS(160), + [anon_sym_try] = ACTIONS(163), + [anon_sym_with] = ACTIONS(166), + [anon_sym_def] = ACTIONS(169), + [anon_sym_global] = ACTIONS(172), + [anon_sym_nonlocal] = ACTIONS(175), + [anon_sym_exec] = ACTIONS(178), + [anon_sym_type] = ACTIONS(181), + [anon_sym_class] = ACTIONS(184), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(193), + [anon_sym_not] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_lambda] = ACTIONS(202), + [anon_sym_yield] = ACTIONS(205), + [sym_ellipsis] = ACTIONS(208), + [sym_integer] = ACTIONS(211), + [sym_float] = ACTIONS(208), + [anon_sym_await] = ACTIONS(214), + [sym_true] = ACTIONS(211), + [sym_false] = ACTIONS(211), + [sym_none] = ACTIONS(211), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(265), - [sym_string_start] = ACTIONS(316), + [sym_string_start] = ACTIONS(217), }, - [STATE(72)] = { - [sym__simple_statements] = STATE(832), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(624), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1685), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(625), - [sym_subscript] = STATE(625), - [sym_call] = STATE(1099), - [sym_type] = STATE(1987), - [sym_splat_type] = STATE(2074), - [sym_generic_type] = STATE(2074), - [sym_union_type] = STATE(2074), - [sym_constrained_type] = STATE(2074), - [sym_member_type] = STATE(2074), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(321), + [STATE(69)] = { + [sym__statement] = STATE(68), + [sym__simple_statements] = STATE(68), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_if_statement] = STATE(68), + [sym_match_statement] = STATE(68), + [sym_for_statement] = STATE(68), + [sym_while_statement] = STATE(68), + [sym_try_statement] = STATE(68), + [sym_with_statement] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_class_definition] = STATE(68), + [sym_decorated_definition] = STATE(68), + [sym_decorator] = STATE(1824), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(68), + [aux_sym_decorated_definition_repeat1] = STATE(1824), + [ts_builtin_sym_end] = ACTIONS(220), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_print] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -18860,14 +18567,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(329), - [anon_sym_async] = ACTIONS(331), - [anon_sym_STAR_STAR] = ACTIONS(333), + [anon_sym_if] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_for] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_def] = ACTIONS(49), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(335), - [anon_sym_type] = ACTIONS(337), - [anon_sym_LBRACK] = ACTIONS(339), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -18878,81 +18592,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(341), + [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(343), - [sym__indent] = ACTIONS(345), [sym_string_start] = ACTIONS(81), }, - [STATE(73)] = { - [sym__simple_statements] = STATE(759), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(624), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1685), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(625), - [sym_subscript] = STATE(625), - [sym_call] = STATE(1099), - [sym_type] = STATE(1987), - [sym_splat_type] = STATE(2074), - [sym_generic_type] = STATE(2074), - [sym_union_type] = STATE(2074), - [sym_constrained_type] = STATE(2074), - [sym_member_type] = STATE(2074), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(321), + [STATE(70)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1831), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1831), + [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(222), + [anon_sym_match] = ACTIONS(225), + [anon_sym_async] = ACTIONS(228), + [anon_sym_for] = ACTIONS(231), + [anon_sym_while] = ACTIONS(234), + [anon_sym_try] = ACTIONS(237), + [anon_sym_with] = ACTIONS(240), + [anon_sym_def] = ACTIONS(243), + [anon_sym_global] = ACTIONS(172), + [anon_sym_nonlocal] = ACTIONS(175), + [anon_sym_exec] = ACTIONS(178), + [anon_sym_type] = ACTIONS(181), + [anon_sym_class] = ACTIONS(246), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_AT] = ACTIONS(190), + [anon_sym_DASH] = ACTIONS(193), + [anon_sym_LBRACE] = ACTIONS(196), + [anon_sym_PLUS] = ACTIONS(193), + [anon_sym_not] = ACTIONS(199), + [anon_sym_TILDE] = ACTIONS(193), + [anon_sym_lambda] = ACTIONS(202), + [anon_sym_yield] = ACTIONS(205), + [sym_ellipsis] = ACTIONS(208), + [sym_integer] = ACTIONS(211), + [sym_float] = ACTIONS(208), + [anon_sym_await] = ACTIONS(214), + [sym_true] = ACTIONS(211), + [sym_false] = ACTIONS(211), + [sym_none] = ACTIONS(211), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(107), + [sym_string_start] = ACTIONS(217), + }, + [STATE(71)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1831), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1831), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_print] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -18960,14 +18792,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(329), - [anon_sym_async] = ACTIONS(331), - [anon_sym_STAR_STAR] = ACTIONS(333), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(335), - [anon_sym_type] = ACTIONS(337), - [anon_sym_LBRACK] = ACTIONS(339), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -18978,81 +18817,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(341), + [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(347), - [sym__indent] = ACTIONS(349), + [sym__dedent] = ACTIONS(249), [sym_string_start] = ACTIONS(81), }, - [STATE(74)] = { - [sym__simple_statements] = STATE(833), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(624), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1685), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(625), - [sym_subscript] = STATE(625), - [sym_call] = STATE(1099), - [sym_type] = STATE(1987), - [sym_splat_type] = STATE(2074), - [sym_generic_type] = STATE(2074), - [sym_union_type] = STATE(2074), - [sym_constrained_type] = STATE(2074), - [sym_member_type] = STATE(2074), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(321), + [STATE(72)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1831), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1831), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_print] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19060,14 +18905,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(329), - [anon_sym_async] = ACTIONS(331), - [anon_sym_STAR_STAR] = ACTIONS(333), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(335), - [anon_sym_type] = ACTIONS(337), - [anon_sym_LBRACK] = ACTIONS(339), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19078,81 +18930,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(341), + [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(351), - [sym__indent] = ACTIONS(353), + [sym__dedent] = ACTIONS(251), [sym_string_start] = ACTIONS(81), }, - [STATE(75)] = { - [sym__simple_statements] = STATE(743), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(624), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1685), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(625), - [sym_subscript] = STATE(625), - [sym_call] = STATE(1099), - [sym_type] = STATE(1987), - [sym_splat_type] = STATE(2074), - [sym_generic_type] = STATE(2074), - [sym_union_type] = STATE(2074), - [sym_constrained_type] = STATE(2074), - [sym_member_type] = STATE(2074), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(321), + [STATE(73)] = { + [sym__statement] = STATE(70), + [sym__simple_statements] = STATE(70), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_if_statement] = STATE(70), + [sym_match_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_try_statement] = STATE(70), + [sym_with_statement] = STATE(70), + [sym_function_definition] = STATE(70), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_class_definition] = STATE(70), + [sym_decorated_definition] = STATE(70), + [sym_decorator] = STATE(1831), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [aux_sym_module_repeat1] = STATE(70), + [aux_sym_decorated_definition_repeat1] = STATE(1831), + [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_print] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19160,14 +19018,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(329), - [anon_sym_async] = ACTIONS(331), - [anon_sym_STAR_STAR] = ACTIONS(333), + [anon_sym_if] = ACTIONS(83), + [anon_sym_match] = ACTIONS(85), + [anon_sym_async] = ACTIONS(87), + [anon_sym_for] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [anon_sym_with] = ACTIONS(95), + [anon_sym_def] = ACTIONS(97), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(335), - [anon_sym_type] = ACTIONS(337), - [anon_sym_LBRACK] = ACTIONS(339), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_class] = ACTIONS(99), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_AT] = ACTIONS(63), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19178,81 +19043,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(341), + [anon_sym_await] = ACTIONS(79), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(355), - [sym__indent] = ACTIONS(357), + [sym__dedent] = ACTIONS(253), [sym_string_start] = ACTIONS(81), }, + [STATE(74)] = { + [sym_named_expression] = STATE(1734), + [sym__named_expression_lhs] = STATE(2653), + [sym_type_parameter] = STATE(2107), + [sym_list_splat_pattern] = STATE(1402), + [sym_as_pattern] = STATE(1734), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(962), + [sym_not_operator] = STATE(1734), + [sym_boolean_operator] = STATE(1734), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_comparison_operator] = STATE(1734), + [sym_lambda] = STATE(1734), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_type] = STATE(2190), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_conditional_expression] = STATE(1734), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_print] = ACTIONS(270), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_match] = ACTIONS(277), + [anon_sym_async] = ACTIONS(270), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_exec] = ACTIONS(270), + [anon_sym_type] = ACTIONS(282), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(286), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(288), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(288), + [anon_sym_not] = ACTIONS(293), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_SLASH_SLASH] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_lambda] = ACTIONS(298), + [anon_sym_PLUS_EQ] = ACTIONS(300), + [anon_sym_DASH_EQ] = ACTIONS(300), + [anon_sym_STAR_EQ] = ACTIONS(300), + [anon_sym_SLASH_EQ] = ACTIONS(300), + [anon_sym_AT_EQ] = ACTIONS(300), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), + [anon_sym_PERCENT_EQ] = ACTIONS(300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(300), + [anon_sym_GT_GT_EQ] = ACTIONS(300), + [anon_sym_LT_LT_EQ] = ACTIONS(300), + [anon_sym_AMP_EQ] = ACTIONS(300), + [anon_sym_CARET_EQ] = ACTIONS(300), + [anon_sym_PIPE_EQ] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), + [anon_sym_await] = ACTIONS(306), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(257), + [sym_string_start] = ACTIONS(308), + }, + [STATE(75)] = { + [sym_named_expression] = STATE(1734), + [sym__named_expression_lhs] = STATE(2653), + [sym_list_splat_pattern] = STATE(1402), + [sym_as_pattern] = STATE(1734), + [sym_expression] = STATE(1772), + [sym_primary_expression] = STATE(962), + [sym_not_operator] = STATE(1734), + [sym_boolean_operator] = STATE(1734), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_comparison_operator] = STATE(1734), + [sym_lambda] = STATE(1734), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_type] = STATE(2190), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_conditional_expression] = STATE(1734), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(255), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(267), + [anon_sym_print] = ACTIONS(270), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_match] = ACTIONS(277), + [anon_sym_async] = ACTIONS(270), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(279), + [anon_sym_exec] = ACTIONS(270), + [anon_sym_type] = ACTIONS(282), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(288), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(288), + [anon_sym_not] = ACTIONS(293), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_SLASH_SLASH] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_lambda] = ACTIONS(298), + [anon_sym_PLUS_EQ] = ACTIONS(300), + [anon_sym_DASH_EQ] = ACTIONS(300), + [anon_sym_STAR_EQ] = ACTIONS(300), + [anon_sym_SLASH_EQ] = ACTIONS(300), + [anon_sym_AT_EQ] = ACTIONS(300), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), + [anon_sym_PERCENT_EQ] = ACTIONS(300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(300), + [anon_sym_GT_GT_EQ] = ACTIONS(300), + [anon_sym_LT_LT_EQ] = ACTIONS(300), + [anon_sym_AMP_EQ] = ACTIONS(300), + [anon_sym_CARET_EQ] = ACTIONS(300), + [anon_sym_PIPE_EQ] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), + [anon_sym_await] = ACTIONS(306), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(257), + [sym_string_start] = ACTIONS(308), + }, [STATE(76)] = { - [sym__simple_statements] = STATE(747), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), + [sym__simple_statements] = STATE(779), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), [sym_list_splat_pattern] = STATE(624), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1685), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(625), - [sym_subscript] = STATE(625), - [sym_call] = STATE(1099), - [sym_type] = STATE(1987), - [sym_splat_type] = STATE(2074), - [sym_generic_type] = STATE(2074), - [sym_union_type] = STATE(2074), - [sym_constrained_type] = STATE(2074), - [sym_member_type] = STATE(2074), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(321), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1707), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(621), + [sym_subscript] = STATE(621), + [sym_call] = STATE(1091), + [sym_type] = STATE(1999), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(313), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_print] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_print] = ACTIONS(319), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19260,14 +19333,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(329), - [anon_sym_async] = ACTIONS(331), - [anon_sym_STAR_STAR] = ACTIONS(333), + [anon_sym_match] = ACTIONS(321), + [anon_sym_async] = ACTIONS(323), + [anon_sym_STAR_STAR] = ACTIONS(325), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(335), - [anon_sym_type] = ACTIONS(337), - [anon_sym_LBRACK] = ACTIONS(339), + [anon_sym_exec] = ACTIONS(327), + [anon_sym_type] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19278,81 +19351,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(341), + [anon_sym_await] = ACTIONS(333), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(359), - [sym__indent] = ACTIONS(361), + [sym__newline] = ACTIONS(335), + [sym__indent] = ACTIONS(337), [sym_string_start] = ACTIONS(81), }, [STATE(77)] = { - [sym__simple_statements] = STATE(764), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), + [sym__simple_statements] = STATE(756), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), [sym_list_splat_pattern] = STATE(624), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1685), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(625), - [sym_subscript] = STATE(625), - [sym_call] = STATE(1099), - [sym_type] = STATE(1987), - [sym_splat_type] = STATE(2074), - [sym_generic_type] = STATE(2074), - [sym_union_type] = STATE(2074), - [sym_constrained_type] = STATE(2074), - [sym_member_type] = STATE(2074), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(321), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1707), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(621), + [sym_subscript] = STATE(621), + [sym_call] = STATE(1091), + [sym_type] = STATE(1999), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(313), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_print] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_print] = ACTIONS(319), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19360,14 +19433,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(329), - [anon_sym_async] = ACTIONS(331), - [anon_sym_STAR_STAR] = ACTIONS(333), + [anon_sym_match] = ACTIONS(321), + [anon_sym_async] = ACTIONS(323), + [anon_sym_STAR_STAR] = ACTIONS(325), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(335), - [anon_sym_type] = ACTIONS(337), - [anon_sym_LBRACK] = ACTIONS(339), + [anon_sym_exec] = ACTIONS(327), + [anon_sym_type] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19378,81 +19451,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(341), + [anon_sym_await] = ACTIONS(333), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(363), - [sym__indent] = ACTIONS(365), + [sym__newline] = ACTIONS(339), + [sym__indent] = ACTIONS(341), [sym_string_start] = ACTIONS(81), }, [STATE(78)] = { - [sym__simple_statements] = STATE(755), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), + [sym__simple_statements] = STATE(785), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), [sym_list_splat_pattern] = STATE(624), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1685), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(625), - [sym_subscript] = STATE(625), - [sym_call] = STATE(1099), - [sym_type] = STATE(1987), - [sym_splat_type] = STATE(2074), - [sym_generic_type] = STATE(2074), - [sym_union_type] = STATE(2074), - [sym_constrained_type] = STATE(2074), - [sym_member_type] = STATE(2074), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(321), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1707), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(621), + [sym_subscript] = STATE(621), + [sym_call] = STATE(1091), + [sym_type] = STATE(1999), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(313), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_print] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_print] = ACTIONS(319), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19460,14 +19533,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(329), - [anon_sym_async] = ACTIONS(331), - [anon_sym_STAR_STAR] = ACTIONS(333), + [anon_sym_match] = ACTIONS(321), + [anon_sym_async] = ACTIONS(323), + [anon_sym_STAR_STAR] = ACTIONS(325), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(335), - [anon_sym_type] = ACTIONS(337), - [anon_sym_LBRACK] = ACTIONS(339), + [anon_sym_exec] = ACTIONS(327), + [anon_sym_type] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19478,81 +19551,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(341), + [anon_sym_await] = ACTIONS(333), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(367), - [sym__indent] = ACTIONS(369), + [sym__newline] = ACTIONS(343), + [sym__indent] = ACTIONS(345), [sym_string_start] = ACTIONS(81), }, [STATE(79)] = { - [sym__simple_statements] = STATE(828), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), + [sym__simple_statements] = STATE(768), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), [sym_list_splat_pattern] = STATE(624), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1685), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(625), - [sym_subscript] = STATE(625), - [sym_call] = STATE(1099), - [sym_type] = STATE(1987), - [sym_splat_type] = STATE(2074), - [sym_generic_type] = STATE(2074), - [sym_union_type] = STATE(2074), - [sym_constrained_type] = STATE(2074), - [sym_member_type] = STATE(2074), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(321), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1707), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(621), + [sym_subscript] = STATE(621), + [sym_call] = STATE(1091), + [sym_type] = STATE(1999), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(313), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(323), - [anon_sym_STAR] = ACTIONS(325), - [anon_sym_print] = ACTIONS(327), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_print] = ACTIONS(319), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -19560,14 +19633,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(329), - [anon_sym_async] = ACTIONS(331), - [anon_sym_STAR_STAR] = ACTIONS(333), + [anon_sym_match] = ACTIONS(321), + [anon_sym_async] = ACTIONS(323), + [anon_sym_STAR_STAR] = ACTIONS(325), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(335), - [anon_sym_type] = ACTIONS(337), - [anon_sym_LBRACK] = ACTIONS(339), + [anon_sym_exec] = ACTIONS(327), + [anon_sym_type] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -19578,469 +19651,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(341), + [anon_sym_await] = ACTIONS(333), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(371), - [sym__indent] = ACTIONS(373), + [sym__newline] = ACTIONS(347), + [sym__indent] = ACTIONS(349), [sym_string_start] = ACTIONS(81), }, [STATE(80)] = { - [sym_chevron] = STATE(2147), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_list_splat_pattern] = STATE(1047), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1801), - [sym_primary_expression] = STATE(845), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_attribute] = STATE(1099), - [sym_subscript] = STATE(1099), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(375), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_print] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(282), - [anon_sym_match] = ACTIONS(387), - [anon_sym_async] = ACTIONS(383), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(267), - [anon_sym_exec] = ACTIONS(383), - [anon_sym_type] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_AT] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_PIPE] = ACTIONS(267), + [sym__simple_statements] = STATE(833), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1707), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(621), + [sym_subscript] = STATE(621), + [sym_call] = STATE(1091), + [sym_type] = STATE(1999), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(313), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_print] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(321), + [anon_sym_async] = ACTIONS(323), + [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(327), + [anon_sym_type] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_not] = ACTIONS(395), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PERCENT] = ACTIONS(267), - [anon_sym_SLASH_SLASH] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(308), - [anon_sym_DASH_EQ] = ACTIONS(308), - [anon_sym_STAR_EQ] = ACTIONS(308), - [anon_sym_SLASH_EQ] = ACTIONS(308), - [anon_sym_AT_EQ] = ACTIONS(308), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), - [anon_sym_PERCENT_EQ] = ACTIONS(308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(308), - [anon_sym_GT_GT_EQ] = ACTIONS(308), - [anon_sym_LT_LT_EQ] = ACTIONS(308), - [anon_sym_AMP_EQ] = ACTIONS(308), - [anon_sym_CARET_EQ] = ACTIONS(308), - [anon_sym_PIPE_EQ] = ACTIONS(308), + [anon_sym_yield] = ACTIONS(73), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(398), + [anon_sym_await] = ACTIONS(333), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(265), + [sym__newline] = ACTIONS(351), + [sym__indent] = ACTIONS(353), [sym_string_start] = ACTIONS(81), }, [STATE(81)] = { - [sym_chevron] = STATE(2147), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_list_splat_pattern] = STATE(1047), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1801), - [sym_primary_expression] = STATE(845), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_attribute] = STATE(1099), - [sym_subscript] = STATE(1099), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(375), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_print] = ACTIONS(383), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(292), - [anon_sym_match] = ACTIONS(387), - [anon_sym_async] = ACTIONS(383), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(267), - [anon_sym_exec] = ACTIONS(383), - [anon_sym_type] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(389), - [anon_sym_AT] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(392), - [anon_sym_PIPE] = ACTIONS(267), + [sym__simple_statements] = STATE(799), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1707), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(621), + [sym_subscript] = STATE(621), + [sym_call] = STATE(1091), + [sym_type] = STATE(1999), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(313), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_print] = ACTIONS(319), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(321), + [anon_sym_async] = ACTIONS(323), + [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(327), + [anon_sym_type] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(392), - [anon_sym_not] = ACTIONS(395), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PERCENT] = ACTIONS(267), - [anon_sym_SLASH_SLASH] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), [anon_sym_lambda] = ACTIONS(71), - [anon_sym_PLUS_EQ] = ACTIONS(308), - [anon_sym_DASH_EQ] = ACTIONS(308), - [anon_sym_STAR_EQ] = ACTIONS(308), - [anon_sym_SLASH_EQ] = ACTIONS(308), - [anon_sym_AT_EQ] = ACTIONS(308), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), - [anon_sym_PERCENT_EQ] = ACTIONS(308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(308), - [anon_sym_GT_GT_EQ] = ACTIONS(308), - [anon_sym_LT_LT_EQ] = ACTIONS(308), - [anon_sym_AMP_EQ] = ACTIONS(308), - [anon_sym_CARET_EQ] = ACTIONS(308), - [anon_sym_PIPE_EQ] = ACTIONS(308), + [anon_sym_yield] = ACTIONS(73), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(398), + [anon_sym_await] = ACTIONS(333), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(265), + [sym__newline] = ACTIONS(355), + [sym__indent] = ACTIONS(357), [sym_string_start] = ACTIONS(81), }, [STATE(82)] = { - [sym_named_expression] = STATE(1723), - [sym__named_expression_lhs] = STATE(2729), - [sym_list_splat_pattern] = STATE(1372), - [sym_as_pattern] = STATE(1723), - [sym_expression] = STATE(1842), - [sym_primary_expression] = STATE(952), - [sym_not_operator] = STATE(1723), - [sym_boolean_operator] = STATE(1723), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_comparison_operator] = STATE(1723), - [sym_lambda] = STATE(1723), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_conditional_expression] = STATE(1723), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(400), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(402), - [anon_sym_print] = ACTIONS(278), - [anon_sym_GT_GT] = ACTIONS(267), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(292), - [anon_sym_match] = ACTIONS(285), - [anon_sym_async] = ACTIONS(278), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(267), - [anon_sym_exec] = ACTIONS(278), - [anon_sym_type] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(318), - [anon_sym_AT] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(301), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PERCENT] = ACTIONS(267), - [anon_sym_SLASH_SLASH] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_LT_LT] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [anon_sym_lambda] = ACTIONS(306), - [anon_sym_PLUS_EQ] = ACTIONS(308), - [anon_sym_DASH_EQ] = ACTIONS(308), - [anon_sym_STAR_EQ] = ACTIONS(308), - [anon_sym_SLASH_EQ] = ACTIONS(308), - [anon_sym_AT_EQ] = ACTIONS(308), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), - [anon_sym_PERCENT_EQ] = ACTIONS(308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(308), - [anon_sym_GT_GT_EQ] = ACTIONS(308), - [anon_sym_LT_LT_EQ] = ACTIONS(308), - [anon_sym_AMP_EQ] = ACTIONS(308), - [anon_sym_CARET_EQ] = ACTIONS(308), - [anon_sym_PIPE_EQ] = ACTIONS(308), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), - [anon_sym_await] = ACTIONS(314), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(265), - [sym_string_start] = ACTIONS(316), - }, - [STATE(83)] = { - [sym_named_expression] = STATE(1723), - [sym__named_expression_lhs] = STATE(2729), - [sym_list_splat_pattern] = STATE(1372), - [sym_as_pattern] = STATE(1723), - [sym_expression] = STATE(1846), - [sym_primary_expression] = STATE(952), - [sym_not_operator] = STATE(1723), - [sym_boolean_operator] = STATE(1723), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_comparison_operator] = STATE(1723), - [sym_lambda] = STATE(1723), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_conditional_expression] = STATE(1723), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(400), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(269), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(402), - [anon_sym_print] = ACTIONS(278), - [anon_sym_GT_GT] = ACTIONS(267), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(292), - [anon_sym_match] = ACTIONS(285), - [anon_sym_async] = ACTIONS(278), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(267), - [anon_sym_exec] = ACTIONS(278), - [anon_sym_type] = ACTIONS(285), - [anon_sym_EQ] = ACTIONS(292), - [anon_sym_LBRACK] = ACTIONS(318), - [anon_sym_AT] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(296), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(296), - [anon_sym_not] = ACTIONS(301), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PERCENT] = ACTIONS(267), - [anon_sym_SLASH_SLASH] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_LT_LT] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [anon_sym_lambda] = ACTIONS(306), - [anon_sym_PLUS_EQ] = ACTIONS(308), - [anon_sym_DASH_EQ] = ACTIONS(308), - [anon_sym_STAR_EQ] = ACTIONS(308), - [anon_sym_SLASH_EQ] = ACTIONS(308), - [anon_sym_AT_EQ] = ACTIONS(308), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), - [anon_sym_PERCENT_EQ] = ACTIONS(308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(308), - [anon_sym_GT_GT_EQ] = ACTIONS(308), - [anon_sym_LT_LT_EQ] = ACTIONS(308), - [anon_sym_AMP_EQ] = ACTIONS(308), - [anon_sym_CARET_EQ] = ACTIONS(308), - [anon_sym_PIPE_EQ] = ACTIONS(308), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), - [anon_sym_await] = ACTIONS(314), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(265), - [sym_string_start] = ACTIONS(316), - }, - [STATE(84)] = { - [sym__simple_statements] = STATE(700), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(9), + [sym__simple_statements] = STATE(741), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1707), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(621), + [sym_subscript] = STATE(621), + [sym_call] = STATE(1091), + [sym_type] = STATE(1999), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(313), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_print] = ACTIONS(319), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -20048,13 +19933,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(321), + [anon_sym_async] = ACTIONS(323), + [anon_sym_STAR_STAR] = ACTIONS(325), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(327), + [anon_sym_type] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -20065,75 +19951,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(333), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(409), - [sym__indent] = ACTIONS(411), + [sym__newline] = ACTIONS(359), + [sym__indent] = ACTIONS(361), [sym_string_start] = ACTIONS(81), }, - [STATE(85)] = { - [sym__simple_statements] = STATE(635), - [sym_import_statement] = STATE(2451), - [sym_future_import_statement] = STATE(2451), - [sym_import_from_statement] = STATE(2451), - [sym_print_statement] = STATE(2451), - [sym_assert_statement] = STATE(2451), - [sym_expression_statement] = STATE(2451), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2451), - [sym_delete_statement] = STATE(2451), - [sym_raise_statement] = STATE(2451), - [sym_pass_statement] = STATE(2451), - [sym_break_statement] = STATE(2451), - [sym_continue_statement] = STATE(2451), - [sym_global_statement] = STATE(2451), - [sym_nonlocal_statement] = STATE(2451), - [sym_exec_statement] = STATE(2451), - [sym_type_alias_statement] = STATE(2451), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(9), + [STATE(83)] = { + [sym__simple_statements] = STATE(773), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(624), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1707), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(621), + [sym_subscript] = STATE(621), + [sym_call] = STATE(1091), + [sym_type] = STATE(1999), + [sym_splat_type] = STATE(2093), + [sym_generic_type] = STATE(2093), + [sym_union_type] = STATE(2093), + [sym_constrained_type] = STATE(2093), + [sym_member_type] = STATE(2093), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(313), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(315), + [anon_sym_STAR] = ACTIONS(317), + [anon_sym_print] = ACTIONS(319), [anon_sym_assert] = ACTIONS(21), [anon_sym_return] = ACTIONS(23), [anon_sym_del] = ACTIONS(25), @@ -20141,13 +20033,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(321), + [anon_sym_async] = ACTIONS(323), + [anon_sym_STAR_STAR] = ACTIONS(325), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(327), + [anon_sym_type] = ACTIONS(329), + [anon_sym_LBRACK] = ACTIONS(331), [anon_sym_DASH] = ACTIONS(65), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), @@ -20158,69 +20051,463 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), + [anon_sym_await] = ACTIONS(333), [sym_true] = ACTIONS(77), [sym_false] = ACTIONS(77), [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(413), - [sym__indent] = ACTIONS(415), + [sym__newline] = ACTIONS(363), + [sym__indent] = ACTIONS(365), + [sym_string_start] = ACTIONS(81), + }, + [STATE(84)] = { + [sym_chevron] = STATE(2121), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_list_splat_pattern] = STATE(1128), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1826), + [sym_primary_expression] = STATE(859), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_attribute] = STATE(1091), + [sym_subscript] = STATE(1091), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(372), + [anon_sym_print] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_match] = ACTIONS(379), + [anon_sym_async] = ACTIONS(375), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(259), + [anon_sym_exec] = ACTIONS(375), + [anon_sym_type] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_not] = ACTIONS(387), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_SLASH_SLASH] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(300), + [anon_sym_DASH_EQ] = ACTIONS(300), + [anon_sym_STAR_EQ] = ACTIONS(300), + [anon_sym_SLASH_EQ] = ACTIONS(300), + [anon_sym_AT_EQ] = ACTIONS(300), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), + [anon_sym_PERCENT_EQ] = ACTIONS(300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(300), + [anon_sym_GT_GT_EQ] = ACTIONS(300), + [anon_sym_LT_LT_EQ] = ACTIONS(300), + [anon_sym_AMP_EQ] = ACTIONS(300), + [anon_sym_CARET_EQ] = ACTIONS(300), + [anon_sym_PIPE_EQ] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(390), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(257), + [sym_string_start] = ACTIONS(81), + }, + [STATE(85)] = { + [sym_chevron] = STATE(2121), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_list_splat_pattern] = STATE(1128), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1826), + [sym_primary_expression] = STATE(859), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_attribute] = STATE(1091), + [sym_subscript] = STATE(1091), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(367), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(372), + [anon_sym_print] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(274), + [anon_sym_match] = ACTIONS(379), + [anon_sym_async] = ACTIONS(375), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(259), + [anon_sym_exec] = ACTIONS(375), + [anon_sym_type] = ACTIONS(379), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_not] = ACTIONS(387), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_SLASH_SLASH] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_PLUS_EQ] = ACTIONS(300), + [anon_sym_DASH_EQ] = ACTIONS(300), + [anon_sym_STAR_EQ] = ACTIONS(300), + [anon_sym_SLASH_EQ] = ACTIONS(300), + [anon_sym_AT_EQ] = ACTIONS(300), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), + [anon_sym_PERCENT_EQ] = ACTIONS(300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(300), + [anon_sym_GT_GT_EQ] = ACTIONS(300), + [anon_sym_LT_LT_EQ] = ACTIONS(300), + [anon_sym_AMP_EQ] = ACTIONS(300), + [anon_sym_CARET_EQ] = ACTIONS(300), + [anon_sym_PIPE_EQ] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(390), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(257), [sym_string_start] = ACTIONS(81), }, [STATE(86)] = { - [sym__simple_statements] = STATE(686), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [sym_named_expression] = STATE(1734), + [sym__named_expression_lhs] = STATE(2653), + [sym_list_splat_pattern] = STATE(1402), + [sym_as_pattern] = STATE(1734), + [sym_expression] = STATE(1866), + [sym_primary_expression] = STATE(962), + [sym_not_operator] = STATE(1734), + [sym_boolean_operator] = STATE(1734), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_comparison_operator] = STATE(1734), + [sym_lambda] = STATE(1734), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_conditional_expression] = STATE(1734), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(392), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_print] = ACTIONS(270), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_match] = ACTIONS(277), + [anon_sym_async] = ACTIONS(270), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(259), + [anon_sym_exec] = ACTIONS(270), + [anon_sym_type] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(288), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(288), + [anon_sym_not] = ACTIONS(293), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_SLASH_SLASH] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_lambda] = ACTIONS(298), + [anon_sym_PLUS_EQ] = ACTIONS(300), + [anon_sym_DASH_EQ] = ACTIONS(300), + [anon_sym_STAR_EQ] = ACTIONS(300), + [anon_sym_SLASH_EQ] = ACTIONS(300), + [anon_sym_AT_EQ] = ACTIONS(300), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), + [anon_sym_PERCENT_EQ] = ACTIONS(300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(300), + [anon_sym_GT_GT_EQ] = ACTIONS(300), + [anon_sym_LT_LT_EQ] = ACTIONS(300), + [anon_sym_AMP_EQ] = ACTIONS(300), + [anon_sym_CARET_EQ] = ACTIONS(300), + [anon_sym_PIPE_EQ] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), + [anon_sym_await] = ACTIONS(306), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(257), + [sym_string_start] = ACTIONS(308), + }, + [STATE(87)] = { + [sym_named_expression] = STATE(1734), + [sym__named_expression_lhs] = STATE(2653), + [sym_list_splat_pattern] = STATE(1402), + [sym_as_pattern] = STATE(1734), + [sym_expression] = STATE(1854), + [sym_primary_expression] = STATE(962), + [sym_not_operator] = STATE(1734), + [sym_boolean_operator] = STATE(1734), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_comparison_operator] = STATE(1734), + [sym_lambda] = STATE(1734), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_conditional_expression] = STATE(1734), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(392), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(261), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_print] = ACTIONS(270), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(284), + [anon_sym_match] = ACTIONS(277), + [anon_sym_async] = ACTIONS(270), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(259), + [anon_sym_exec] = ACTIONS(270), + [anon_sym_type] = ACTIONS(277), + [anon_sym_EQ] = ACTIONS(284), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(288), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(288), + [anon_sym_not] = ACTIONS(293), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_SLASH_SLASH] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_lambda] = ACTIONS(298), + [anon_sym_PLUS_EQ] = ACTIONS(300), + [anon_sym_DASH_EQ] = ACTIONS(300), + [anon_sym_STAR_EQ] = ACTIONS(300), + [anon_sym_SLASH_EQ] = ACTIONS(300), + [anon_sym_AT_EQ] = ACTIONS(300), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), + [anon_sym_PERCENT_EQ] = ACTIONS(300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(300), + [anon_sym_GT_GT_EQ] = ACTIONS(300), + [anon_sym_LT_LT_EQ] = ACTIONS(300), + [anon_sym_AMP_EQ] = ACTIONS(300), + [anon_sym_CARET_EQ] = ACTIONS(300), + [anon_sym_PIPE_EQ] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), + [anon_sym_await] = ACTIONS(306), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(257), + [sym_string_start] = ACTIONS(308), + }, + [STATE(88)] = { + [sym__simple_statements] = STATE(706), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20234,8 +20521,380 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(401), + [sym__indent] = ACTIONS(403), + [sym_string_start] = ACTIONS(81), + }, + [STATE(89)] = { + [sym__simple_statements] = STATE(688), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(405), + [sym__indent] = ACTIONS(407), + [sym_string_start] = ACTIONS(81), + }, + [STATE(90)] = { + [sym__simple_statements] = STATE(2582), + [sym_import_statement] = STATE(2244), + [sym_future_import_statement] = STATE(2244), + [sym_import_from_statement] = STATE(2244), + [sym_print_statement] = STATE(2244), + [sym_assert_statement] = STATE(2244), + [sym_expression_statement] = STATE(2244), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2244), + [sym_delete_statement] = STATE(2244), + [sym_raise_statement] = STATE(2244), + [sym_pass_statement] = STATE(2244), + [sym_break_statement] = STATE(2244), + [sym_continue_statement] = STATE(2244), + [sym_global_statement] = STATE(2244), + [sym_nonlocal_statement] = STATE(2244), + [sym_exec_statement] = STATE(2244), + [sym_type_alias_statement] = STATE(2244), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(409), + [sym__indent] = ACTIONS(411), + [sym_string_start] = ACTIONS(81), + }, + [STATE(91)] = { + [sym__simple_statements] = STATE(752), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), + [anon_sym_global] = ACTIONS(51), + [anon_sym_nonlocal] = ACTIONS(53), + [anon_sym_exec] = ACTIONS(55), + [anon_sym_type] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_DASH] = ACTIONS(65), + [anon_sym_LBRACE] = ACTIONS(67), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_not] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(65), + [anon_sym_lambda] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [sym_ellipsis] = ACTIONS(75), + [sym_integer] = ACTIONS(77), + [sym_float] = ACTIONS(75), + [anon_sym_await] = ACTIONS(79), + [sym_true] = ACTIONS(77), + [sym_false] = ACTIONS(77), + [sym_none] = ACTIONS(77), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(413), + [sym__indent] = ACTIONS(415), + [sym_string_start] = ACTIONS(81), + }, + [STATE(92)] = { + [sym__simple_statements] = STATE(704), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), + [sym_identifier] = ACTIONS(9), + [anon_sym_import] = ACTIONS(11), + [anon_sym_from] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_STAR] = ACTIONS(17), + [anon_sym_print] = ACTIONS(19), + [anon_sym_assert] = ACTIONS(21), + [anon_sym_return] = ACTIONS(23), + [anon_sym_del] = ACTIONS(25), + [anon_sym_raise] = ACTIONS(27), + [anon_sym_pass] = ACTIONS(29), + [anon_sym_break] = ACTIONS(31), + [anon_sym_continue] = ACTIONS(33), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20261,59 +20920,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(419), [sym_string_start] = ACTIONS(81), }, - [STATE(87)] = { - [sym__simple_statements] = STATE(2575), - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(93)] = { + [sym__simple_statements] = STATE(2546), + [sym_import_statement] = STATE(2244), + [sym_future_import_statement] = STATE(2244), + [sym_import_from_statement] = STATE(2244), + [sym_print_statement] = STATE(2244), + [sym_assert_statement] = STATE(2244), + [sym_expression_statement] = STATE(2244), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2244), + [sym_delete_statement] = STATE(2244), + [sym_raise_statement] = STATE(2244), + [sym_pass_statement] = STATE(2244), + [sym_break_statement] = STATE(2244), + [sym_continue_statement] = STATE(2244), + [sym_global_statement] = STATE(2244), + [sym_nonlocal_statement] = STATE(2244), + [sym_exec_statement] = STATE(2244), + [sym_type_alias_statement] = STATE(2244), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20327,8 +20986,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20354,59 +21013,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(423), [sym_string_start] = ACTIONS(81), }, - [STATE(88)] = { - [sym__simple_statements] = STATE(440), - [sym_import_statement] = STATE(2270), - [sym_future_import_statement] = STATE(2270), - [sym_import_from_statement] = STATE(2270), - [sym_print_statement] = STATE(2270), - [sym_assert_statement] = STATE(2270), - [sym_expression_statement] = STATE(2270), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2270), - [sym_delete_statement] = STATE(2270), - [sym_raise_statement] = STATE(2270), - [sym_pass_statement] = STATE(2270), - [sym_break_statement] = STATE(2270), - [sym_continue_statement] = STATE(2270), - [sym_global_statement] = STATE(2270), - [sym_nonlocal_statement] = STATE(2270), - [sym_exec_statement] = STATE(2270), - [sym_type_alias_statement] = STATE(2270), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(94)] = { + [sym__simple_statements] = STATE(788), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20420,8 +21079,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20447,59 +21106,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(427), [sym_string_start] = ACTIONS(81), }, - [STATE(89)] = { - [sym__simple_statements] = STATE(609), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(95)] = { + [sym__simple_statements] = STATE(611), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20513,8 +21172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20540,59 +21199,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(431), [sym_string_start] = ACTIONS(81), }, - [STATE(90)] = { - [sym__simple_statements] = STATE(684), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(96)] = { + [sym__simple_statements] = STATE(794), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20606,8 +21265,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20633,59 +21292,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(435), [sym_string_start] = ACTIONS(81), }, - [STATE(91)] = { - [sym__simple_statements] = STATE(715), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(97)] = { + [sym__simple_statements] = STATE(683), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20699,8 +21358,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20726,59 +21385,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(439), [sym_string_start] = ACTIONS(81), }, - [STATE(92)] = { - [sym__simple_statements] = STATE(785), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(98)] = { + [sym__simple_statements] = STATE(813), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20792,8 +21451,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20819,59 +21478,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(443), [sym_string_start] = ACTIONS(81), }, - [STATE(93)] = { - [sym__simple_statements] = STATE(786), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(99)] = { + [sym__simple_statements] = STATE(687), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20885,8 +21544,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -20912,59 +21571,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(447), [sym_string_start] = ACTIONS(81), }, - [STATE(94)] = { - [sym__simple_statements] = STATE(611), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(100)] = { + [sym__simple_statements] = STATE(701), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -20978,8 +21637,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21005,59 +21664,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(451), [sym_string_start] = ACTIONS(81), }, - [STATE(95)] = { - [sym__simple_statements] = STATE(791), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(101)] = { + [sym__simple_statements] = STATE(809), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21071,8 +21730,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21098,59 +21757,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(455), [sym_string_start] = ACTIONS(81), }, - [STATE(96)] = { - [sym__simple_statements] = STATE(726), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(102)] = { + [sym__simple_statements] = STATE(699), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21164,8 +21823,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21191,59 +21850,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(459), [sym_string_start] = ACTIONS(81), }, - [STATE(97)] = { - [sym__simple_statements] = STATE(749), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(103)] = { + [sym__simple_statements] = STATE(2506), + [sym_import_statement] = STATE(2244), + [sym_future_import_statement] = STATE(2244), + [sym_import_from_statement] = STATE(2244), + [sym_print_statement] = STATE(2244), + [sym_assert_statement] = STATE(2244), + [sym_expression_statement] = STATE(2244), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2244), + [sym_delete_statement] = STATE(2244), + [sym_raise_statement] = STATE(2244), + [sym_pass_statement] = STATE(2244), + [sym_break_statement] = STATE(2244), + [sym_continue_statement] = STATE(2244), + [sym_global_statement] = STATE(2244), + [sym_nonlocal_statement] = STATE(2244), + [sym_exec_statement] = STATE(2244), + [sym_type_alias_statement] = STATE(2244), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21257,8 +21916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21284,59 +21943,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(463), [sym_string_start] = ACTIONS(81), }, - [STATE(98)] = { - [sym__simple_statements] = STATE(798), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(104)] = { + [sym__simple_statements] = STATE(720), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21350,8 +22009,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21377,59 +22036,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(467), [sym_string_start] = ACTIONS(81), }, - [STATE(99)] = { - [sym__simple_statements] = STATE(705), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(105)] = { + [sym__simple_statements] = STATE(2573), + [sym_import_statement] = STATE(2244), + [sym_future_import_statement] = STATE(2244), + [sym_import_from_statement] = STATE(2244), + [sym_print_statement] = STATE(2244), + [sym_assert_statement] = STATE(2244), + [sym_expression_statement] = STATE(2244), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2244), + [sym_delete_statement] = STATE(2244), + [sym_raise_statement] = STATE(2244), + [sym_pass_statement] = STATE(2244), + [sym_break_statement] = STATE(2244), + [sym_continue_statement] = STATE(2244), + [sym_global_statement] = STATE(2244), + [sym_nonlocal_statement] = STATE(2244), + [sym_exec_statement] = STATE(2244), + [sym_type_alias_statement] = STATE(2244), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21443,8 +22102,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21470,59 +22129,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(471), [sym_string_start] = ACTIONS(81), }, - [STATE(100)] = { - [sym__simple_statements] = STATE(800), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(106)] = { + [sym__simple_statements] = STATE(673), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21536,8 +22195,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21563,59 +22222,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(475), [sym_string_start] = ACTIONS(81), }, - [STATE(101)] = { - [sym__simple_statements] = STATE(801), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(107)] = { + [sym__simple_statements] = STATE(832), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21629,8 +22288,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21656,59 +22315,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(479), [sym_string_start] = ACTIONS(81), }, - [STATE(102)] = { - [sym__simple_statements] = STATE(741), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(108)] = { + [sym__simple_statements] = STATE(658), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21722,8 +22381,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21749,59 +22408,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(483), [sym_string_start] = ACTIONS(81), }, - [STATE(103)] = { - [sym__simple_statements] = STATE(807), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(109)] = { + [sym__simple_statements] = STATE(726), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21815,8 +22474,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21842,59 +22501,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(487), [sym_string_start] = ACTIONS(81), }, - [STATE(104)] = { - [sym__simple_statements] = STATE(698), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(110)] = { + [sym__simple_statements] = STATE(797), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -21908,8 +22567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -21935,59 +22594,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(491), [sym_string_start] = ACTIONS(81), }, - [STATE(105)] = { - [sym__simple_statements] = STATE(709), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(111)] = { + [sym__simple_statements] = STATE(590), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22001,8 +22660,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22028,59 +22687,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(495), [sym_string_start] = ACTIONS(81), }, - [STATE(106)] = { - [sym__simple_statements] = STATE(664), - [sym_import_statement] = STATE(2270), - [sym_future_import_statement] = STATE(2270), - [sym_import_from_statement] = STATE(2270), - [sym_print_statement] = STATE(2270), - [sym_assert_statement] = STATE(2270), - [sym_expression_statement] = STATE(2270), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2270), - [sym_delete_statement] = STATE(2270), - [sym_raise_statement] = STATE(2270), - [sym_pass_statement] = STATE(2270), - [sym_break_statement] = STATE(2270), - [sym_continue_statement] = STATE(2270), - [sym_global_statement] = STATE(2270), - [sym_nonlocal_statement] = STATE(2270), - [sym_exec_statement] = STATE(2270), - [sym_type_alias_statement] = STATE(2270), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(112)] = { + [sym__simple_statements] = STATE(620), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22094,8 +22753,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22121,59 +22780,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(499), [sym_string_start] = ACTIONS(81), }, - [STATE(107)] = { - [sym__simple_statements] = STATE(809), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(113)] = { + [sym__simple_statements] = STATE(713), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22187,8 +22846,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22214,59 +22873,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(503), [sym_string_start] = ACTIONS(81), }, - [STATE(108)] = { - [sym__simple_statements] = STATE(688), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(114)] = { + [sym__simple_statements] = STATE(729), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22280,8 +22939,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22307,59 +22966,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(507), [sym_string_start] = ACTIONS(81), }, - [STATE(109)] = { - [sym__simple_statements] = STATE(813), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(115)] = { + [sym__simple_statements] = STATE(795), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22373,8 +23032,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22400,59 +23059,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(511), [sym_string_start] = ACTIONS(81), }, - [STATE(110)] = { - [sym__simple_statements] = STATE(707), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(116)] = { + [sym__simple_statements] = STATE(801), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22466,8 +23125,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22493,59 +23152,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(515), [sym_string_start] = ACTIONS(81), }, - [STATE(111)] = { - [sym__simple_statements] = STATE(815), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(117)] = { + [sym__simple_statements] = STATE(2545), + [sym_import_statement] = STATE(2244), + [sym_future_import_statement] = STATE(2244), + [sym_import_from_statement] = STATE(2244), + [sym_print_statement] = STATE(2244), + [sym_assert_statement] = STATE(2244), + [sym_expression_statement] = STATE(2244), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2244), + [sym_delete_statement] = STATE(2244), + [sym_raise_statement] = STATE(2244), + [sym_pass_statement] = STATE(2244), + [sym_break_statement] = STATE(2244), + [sym_continue_statement] = STATE(2244), + [sym_global_statement] = STATE(2244), + [sym_nonlocal_statement] = STATE(2244), + [sym_exec_statement] = STATE(2244), + [sym_type_alias_statement] = STATE(2244), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22559,8 +23218,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22586,59 +23245,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(519), [sym_string_start] = ACTIONS(81), }, - [STATE(112)] = { - [sym__simple_statements] = STATE(2491), - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(118)] = { + [sym__simple_statements] = STATE(753), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22652,8 +23311,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22679,59 +23338,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(523), [sym_string_start] = ACTIONS(81), }, - [STATE(113)] = { - [sym__simple_statements] = STATE(703), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(119)] = { + [sym__simple_statements] = STATE(806), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22745,8 +23404,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22772,59 +23431,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(527), [sym_string_start] = ACTIONS(81), }, - [STATE(114)] = { - [sym__simple_statements] = STATE(629), - [sym_import_statement] = STATE(2451), - [sym_future_import_statement] = STATE(2451), - [sym_import_from_statement] = STATE(2451), - [sym_print_statement] = STATE(2451), - [sym_assert_statement] = STATE(2451), - [sym_expression_statement] = STATE(2451), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2451), - [sym_delete_statement] = STATE(2451), - [sym_raise_statement] = STATE(2451), - [sym_pass_statement] = STATE(2451), - [sym_break_statement] = STATE(2451), - [sym_continue_statement] = STATE(2451), - [sym_global_statement] = STATE(2451), - [sym_nonlocal_statement] = STATE(2451), - [sym_exec_statement] = STATE(2451), - [sym_type_alias_statement] = STATE(2451), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(120)] = { + [sym__simple_statements] = STATE(2552), + [sym_import_statement] = STATE(2244), + [sym_future_import_statement] = STATE(2244), + [sym_import_from_statement] = STATE(2244), + [sym_print_statement] = STATE(2244), + [sym_assert_statement] = STATE(2244), + [sym_expression_statement] = STATE(2244), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2244), + [sym_delete_statement] = STATE(2244), + [sym_raise_statement] = STATE(2244), + [sym_pass_statement] = STATE(2244), + [sym_break_statement] = STATE(2244), + [sym_continue_statement] = STATE(2244), + [sym_global_statement] = STATE(2244), + [sym_nonlocal_statement] = STATE(2244), + [sym_exec_statement] = STATE(2244), + [sym_type_alias_statement] = STATE(2244), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22838,8 +23497,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22865,59 +23524,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(531), [sym_string_start] = ACTIONS(81), }, - [STATE(115)] = { - [sym__simple_statements] = STATE(822), - [sym_import_statement] = STATE(2459), - [sym_future_import_statement] = STATE(2459), - [sym_import_from_statement] = STATE(2459), - [sym_print_statement] = STATE(2459), - [sym_assert_statement] = STATE(2459), - [sym_expression_statement] = STATE(2459), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2459), - [sym_delete_statement] = STATE(2459), - [sym_raise_statement] = STATE(2459), - [sym_pass_statement] = STATE(2459), - [sym_break_statement] = STATE(2459), - [sym_continue_statement] = STATE(2459), - [sym_global_statement] = STATE(2459), - [sym_nonlocal_statement] = STATE(2459), - [sym_exec_statement] = STATE(2459), - [sym_type_alias_statement] = STATE(2459), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(121)] = { + [sym__simple_statements] = STATE(734), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -22931,8 +23590,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -22958,59 +23617,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(535), [sym_string_start] = ACTIONS(81), }, - [STATE(116)] = { - [sym__simple_statements] = STATE(2504), - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(122)] = { + [sym__simple_statements] = STATE(743), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23024,8 +23683,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23051,59 +23710,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(539), [sym_string_start] = ACTIONS(81), }, - [STATE(117)] = { - [sym__simple_statements] = STATE(720), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(123)] = { + [sym__simple_statements] = STATE(749), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23117,8 +23776,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23144,59 +23803,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(543), [sym_string_start] = ACTIONS(81), }, - [STATE(118)] = { - [sym__simple_statements] = STATE(667), - [sym_import_statement] = STATE(2270), - [sym_future_import_statement] = STATE(2270), - [sym_import_from_statement] = STATE(2270), - [sym_print_statement] = STATE(2270), - [sym_assert_statement] = STATE(2270), - [sym_expression_statement] = STATE(2270), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2270), - [sym_delete_statement] = STATE(2270), - [sym_raise_statement] = STATE(2270), - [sym_pass_statement] = STATE(2270), - [sym_break_statement] = STATE(2270), - [sym_continue_statement] = STATE(2270), - [sym_global_statement] = STATE(2270), - [sym_nonlocal_statement] = STATE(2270), - [sym_exec_statement] = STATE(2270), - [sym_type_alias_statement] = STATE(2270), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(124)] = { + [sym__simple_statements] = STATE(767), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23210,8 +23869,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23237,59 +23896,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(547), [sym_string_start] = ACTIONS(81), }, - [STATE(119)] = { - [sym__simple_statements] = STATE(642), - [sym_import_statement] = STATE(2270), - [sym_future_import_statement] = STATE(2270), - [sym_import_from_statement] = STATE(2270), - [sym_print_statement] = STATE(2270), - [sym_assert_statement] = STATE(2270), - [sym_expression_statement] = STATE(2270), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2270), - [sym_delete_statement] = STATE(2270), - [sym_raise_statement] = STATE(2270), - [sym_pass_statement] = STATE(2270), - [sym_break_statement] = STATE(2270), - [sym_continue_statement] = STATE(2270), - [sym_global_statement] = STATE(2270), - [sym_nonlocal_statement] = STATE(2270), - [sym_exec_statement] = STATE(2270), - [sym_type_alias_statement] = STATE(2270), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(125)] = { + [sym__simple_statements] = STATE(707), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23303,8 +23962,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23330,59 +23989,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(551), [sym_string_start] = ACTIONS(81), }, - [STATE(120)] = { - [sym__simple_statements] = STATE(646), - [sym_import_statement] = STATE(2451), - [sym_future_import_statement] = STATE(2451), - [sym_import_from_statement] = STATE(2451), - [sym_print_statement] = STATE(2451), - [sym_assert_statement] = STATE(2451), - [sym_expression_statement] = STATE(2451), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2451), - [sym_delete_statement] = STATE(2451), - [sym_raise_statement] = STATE(2451), - [sym_pass_statement] = STATE(2451), - [sym_break_statement] = STATE(2451), - [sym_continue_statement] = STATE(2451), - [sym_global_statement] = STATE(2451), - [sym_nonlocal_statement] = STATE(2451), - [sym_exec_statement] = STATE(2451), - [sym_type_alias_statement] = STATE(2451), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(126)] = { + [sym__simple_statements] = STATE(718), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23396,8 +24055,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23423,59 +24082,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(555), [sym_string_start] = ACTIONS(81), }, - [STATE(121)] = { - [sym__simple_statements] = STATE(728), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(127)] = { + [sym__simple_statements] = STATE(652), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23489,8 +24148,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23516,59 +24175,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(559), [sym_string_start] = ACTIONS(81), }, - [STATE(122)] = { - [sym__simple_statements] = STATE(760), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(128)] = { + [sym__simple_statements] = STATE(796), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23582,8 +24241,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23609,59 +24268,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(563), [sym_string_start] = ACTIONS(81), }, - [STATE(123)] = { - [sym__simple_statements] = STATE(2493), - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(129)] = { + [sym__simple_statements] = STATE(818), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23675,8 +24334,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23702,59 +24361,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(567), [sym_string_start] = ACTIONS(81), }, - [STATE(124)] = { - [sym__simple_statements] = STATE(730), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(130)] = { + [sym__simple_statements] = STATE(821), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23768,8 +24427,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23795,59 +24454,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(571), [sym_string_start] = ACTIONS(81), }, - [STATE(125)] = { - [sym__simple_statements] = STATE(2501), - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(131)] = { + [sym__simple_statements] = STATE(709), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23861,8 +24520,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23888,59 +24547,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(575), [sym_string_start] = ACTIONS(81), }, - [STATE(126)] = { - [sym__simple_statements] = STATE(761), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(132)] = { + [sym__simple_statements] = STATE(831), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -23954,8 +24613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -23981,59 +24640,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(579), [sym_string_start] = ACTIONS(81), }, - [STATE(127)] = { - [sym__simple_statements] = STATE(694), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(133)] = { + [sym__simple_statements] = STATE(681), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24047,8 +24706,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24074,59 +24733,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(583), [sym_string_start] = ACTIONS(81), }, - [STATE(128)] = { - [sym__simple_statements] = STATE(737), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(134)] = { + [sym__simple_statements] = STATE(679), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24140,8 +24799,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24167,59 +24826,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(587), [sym_string_start] = ACTIONS(81), }, - [STATE(129)] = { - [sym__simple_statements] = STATE(2528), - [sym_import_statement] = STATE(2319), - [sym_future_import_statement] = STATE(2319), - [sym_import_from_statement] = STATE(2319), - [sym_print_statement] = STATE(2319), - [sym_assert_statement] = STATE(2319), - [sym_expression_statement] = STATE(2319), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2319), - [sym_delete_statement] = STATE(2319), - [sym_raise_statement] = STATE(2319), - [sym_pass_statement] = STATE(2319), - [sym_break_statement] = STATE(2319), - [sym_continue_statement] = STATE(2319), - [sym_global_statement] = STATE(2319), - [sym_nonlocal_statement] = STATE(2319), - [sym_exec_statement] = STATE(2319), - [sym_type_alias_statement] = STATE(2319), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(135)] = { + [sym__simple_statements] = STATE(712), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24233,8 +24892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24260,59 +24919,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(591), [sym_string_start] = ACTIONS(81), }, - [STATE(130)] = { - [sym__simple_statements] = STATE(639), - [sym_import_statement] = STATE(2270), - [sym_future_import_statement] = STATE(2270), - [sym_import_from_statement] = STATE(2270), - [sym_print_statement] = STATE(2270), - [sym_assert_statement] = STATE(2270), - [sym_expression_statement] = STATE(2270), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2270), - [sym_delete_statement] = STATE(2270), - [sym_raise_statement] = STATE(2270), - [sym_pass_statement] = STATE(2270), - [sym_break_statement] = STATE(2270), - [sym_continue_statement] = STATE(2270), - [sym_global_statement] = STATE(2270), - [sym_nonlocal_statement] = STATE(2270), - [sym_exec_statement] = STATE(2270), - [sym_type_alias_statement] = STATE(2270), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(136)] = { + [sym__simple_statements] = STATE(672), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24326,8 +24985,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24353,59 +25012,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(595), [sym_string_start] = ACTIONS(81), }, - [STATE(131)] = { - [sym__simple_statements] = STATE(410), - [sym_import_statement] = STATE(2451), - [sym_future_import_statement] = STATE(2451), - [sym_import_from_statement] = STATE(2451), - [sym_print_statement] = STATE(2451), - [sym_assert_statement] = STATE(2451), - [sym_expression_statement] = STATE(2451), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2451), - [sym_delete_statement] = STATE(2451), - [sym_raise_statement] = STATE(2451), - [sym_pass_statement] = STATE(2451), - [sym_break_statement] = STATE(2451), - [sym_continue_statement] = STATE(2451), - [sym_global_statement] = STATE(2451), - [sym_nonlocal_statement] = STATE(2451), - [sym_exec_statement] = STATE(2451), - [sym_type_alias_statement] = STATE(2451), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(137)] = { + [sym__simple_statements] = STATE(655), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24419,8 +25078,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24446,59 +25105,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(599), [sym_string_start] = ACTIONS(81), }, - [STATE(132)] = { - [sym__simple_statements] = STATE(796), - [sym_import_statement] = STATE(2406), - [sym_future_import_statement] = STATE(2406), - [sym_import_from_statement] = STATE(2406), - [sym_print_statement] = STATE(2406), - [sym_assert_statement] = STATE(2406), - [sym_expression_statement] = STATE(2406), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2406), - [sym_delete_statement] = STATE(2406), - [sym_raise_statement] = STATE(2406), - [sym_pass_statement] = STATE(2406), - [sym_break_statement] = STATE(2406), - [sym_continue_statement] = STATE(2406), - [sym_global_statement] = STATE(2406), - [sym_nonlocal_statement] = STATE(2406), - [sym_exec_statement] = STATE(2406), - [sym_type_alias_statement] = STATE(2406), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(138)] = { + [sym__simple_statements] = STATE(677), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24512,8 +25171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24539,59 +25198,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(603), [sym_string_start] = ACTIONS(81), }, - [STATE(133)] = { - [sym__simple_statements] = STATE(636), - [sym_import_statement] = STATE(2451), - [sym_future_import_statement] = STATE(2451), - [sym_import_from_statement] = STATE(2451), - [sym_print_statement] = STATE(2451), - [sym_assert_statement] = STATE(2451), - [sym_expression_statement] = STATE(2451), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2451), - [sym_delete_statement] = STATE(2451), - [sym_raise_statement] = STATE(2451), - [sym_pass_statement] = STATE(2451), - [sym_break_statement] = STATE(2451), - [sym_continue_statement] = STATE(2451), - [sym_global_statement] = STATE(2451), - [sym_nonlocal_statement] = STATE(2451), - [sym_exec_statement] = STATE(2451), - [sym_type_alias_statement] = STATE(2451), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(139)] = { + [sym__simple_statements] = STATE(747), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24605,8 +25264,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24632,58 +25291,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__indent] = ACTIONS(607), [sym_string_start] = ACTIONS(81), }, - [STATE(134)] = { - [sym_import_statement] = STATE(2509), - [sym_future_import_statement] = STATE(2509), - [sym_import_from_statement] = STATE(2509), - [sym_print_statement] = STATE(2509), - [sym_assert_statement] = STATE(2509), - [sym_expression_statement] = STATE(2509), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2509), - [sym_delete_statement] = STATE(2509), - [sym_raise_statement] = STATE(2509), - [sym_pass_statement] = STATE(2509), - [sym_break_statement] = STATE(2509), - [sym_continue_statement] = STATE(2509), - [sym_global_statement] = STATE(2509), - [sym_nonlocal_statement] = STATE(2509), - [sym_exec_statement] = STATE(2509), - [sym_type_alias_statement] = STATE(2509), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(140)] = { + [sym__simple_statements] = STATE(680), + [sym_import_statement] = STATE(2439), + [sym_future_import_statement] = STATE(2439), + [sym_import_from_statement] = STATE(2439), + [sym_print_statement] = STATE(2439), + [sym_assert_statement] = STATE(2439), + [sym_expression_statement] = STATE(2439), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2439), + [sym_delete_statement] = STATE(2439), + [sym_raise_statement] = STATE(2439), + [sym_pass_statement] = STATE(2439), + [sym_break_statement] = STATE(2439), + [sym_continue_statement] = STATE(2439), + [sym_global_statement] = STATE(2439), + [sym_nonlocal_statement] = STATE(2439), + [sym_exec_statement] = STATE(2439), + [sym_type_alias_statement] = STATE(2439), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24697,8 +25357,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24721,151 +25381,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(609), + [sym__indent] = ACTIONS(611), [sym_string_start] = ACTIONS(81), }, - [STATE(135)] = { - [sym_import_statement] = STATE(2509), - [sym_future_import_statement] = STATE(2509), - [sym_import_from_statement] = STATE(2509), - [sym_print_statement] = STATE(2509), - [sym_assert_statement] = STATE(2509), - [sym_expression_statement] = STATE(2509), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2509), - [sym_delete_statement] = STATE(2509), - [sym_raise_statement] = STATE(2509), - [sym_pass_statement] = STATE(2509), - [sym_break_statement] = STATE(2509), - [sym_continue_statement] = STATE(2509), - [sym_global_statement] = STATE(2509), - [sym_nonlocal_statement] = STATE(2509), - [sym_exec_statement] = STATE(2509), - [sym_type_alias_statement] = STATE(2509), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(611), - [sym_string_start] = ACTIONS(81), - }, - [STATE(136)] = { - [sym_import_statement] = STATE(2509), - [sym_future_import_statement] = STATE(2509), - [sym_import_from_statement] = STATE(2509), - [sym_print_statement] = STATE(2509), - [sym_assert_statement] = STATE(2509), - [sym_expression_statement] = STATE(2509), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2509), - [sym_delete_statement] = STATE(2509), - [sym_raise_statement] = STATE(2509), - [sym_pass_statement] = STATE(2509), - [sym_break_statement] = STATE(2509), - [sym_continue_statement] = STATE(2509), - [sym_global_statement] = STATE(2509), - [sym_nonlocal_statement] = STATE(2509), - [sym_exec_statement] = STATE(2509), - [sym_type_alias_statement] = STATE(2509), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(141)] = { + [sym__simple_statements] = STATE(539), + [sym_import_statement] = STATE(2247), + [sym_future_import_statement] = STATE(2247), + [sym_import_from_statement] = STATE(2247), + [sym_print_statement] = STATE(2247), + [sym_assert_statement] = STATE(2247), + [sym_expression_statement] = STATE(2247), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2247), + [sym_delete_statement] = STATE(2247), + [sym_raise_statement] = STATE(2247), + [sym_pass_statement] = STATE(2247), + [sym_break_statement] = STATE(2247), + [sym_continue_statement] = STATE(2247), + [sym_global_statement] = STATE(2247), + [sym_nonlocal_statement] = STATE(2247), + [sym_exec_statement] = STATE(2247), + [sym_type_alias_statement] = STATE(2247), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -24879,8 +25450,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -24903,151 +25474,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(613), + [sym__indent] = ACTIONS(615), [sym_string_start] = ACTIONS(81), }, - [STATE(137)] = { - [sym_import_statement] = STATE(2509), - [sym_future_import_statement] = STATE(2509), - [sym_import_from_statement] = STATE(2509), - [sym_print_statement] = STATE(2509), - [sym_assert_statement] = STATE(2509), - [sym_expression_statement] = STATE(2509), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2509), - [sym_delete_statement] = STATE(2509), - [sym_raise_statement] = STATE(2509), - [sym_pass_statement] = STATE(2509), - [sym_break_statement] = STATE(2509), - [sym_continue_statement] = STATE(2509), - [sym_global_statement] = STATE(2509), - [sym_nonlocal_statement] = STATE(2509), - [sym_exec_statement] = STATE(2509), - [sym_type_alias_statement] = STATE(2509), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), - [sym_identifier] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_from] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_STAR] = ACTIONS(17), - [anon_sym_print] = ACTIONS(19), - [anon_sym_assert] = ACTIONS(21), - [anon_sym_return] = ACTIONS(23), - [anon_sym_del] = ACTIONS(25), - [anon_sym_raise] = ACTIONS(27), - [anon_sym_pass] = ACTIONS(29), - [anon_sym_break] = ACTIONS(31), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), - [anon_sym_global] = ACTIONS(51), - [anon_sym_nonlocal] = ACTIONS(53), - [anon_sym_exec] = ACTIONS(55), - [anon_sym_type] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_DASH] = ACTIONS(65), - [anon_sym_LBRACE] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_lambda] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [sym_ellipsis] = ACTIONS(75), - [sym_integer] = ACTIONS(77), - [sym_float] = ACTIONS(75), - [anon_sym_await] = ACTIONS(79), - [sym_true] = ACTIONS(77), - [sym_false] = ACTIONS(77), - [sym_none] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(615), - [sym_string_start] = ACTIONS(81), - }, - [STATE(138)] = { - [sym_import_statement] = STATE(2509), - [sym_future_import_statement] = STATE(2509), - [sym_import_from_statement] = STATE(2509), - [sym_print_statement] = STATE(2509), - [sym_assert_statement] = STATE(2509), - [sym_expression_statement] = STATE(2509), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2509), - [sym_delete_statement] = STATE(2509), - [sym_raise_statement] = STATE(2509), - [sym_pass_statement] = STATE(2509), - [sym_break_statement] = STATE(2509), - [sym_continue_statement] = STATE(2509), - [sym_global_statement] = STATE(2509), - [sym_nonlocal_statement] = STATE(2509), - [sym_exec_statement] = STATE(2509), - [sym_type_alias_statement] = STATE(2509), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(142)] = { + [sym_import_statement] = STATE(2548), + [sym_future_import_statement] = STATE(2548), + [sym_import_from_statement] = STATE(2548), + [sym_print_statement] = STATE(2548), + [sym_assert_statement] = STATE(2548), + [sym_expression_statement] = STATE(2548), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2548), + [sym_delete_statement] = STATE(2548), + [sym_raise_statement] = STATE(2548), + [sym_pass_statement] = STATE(2548), + [sym_break_statement] = STATE(2548), + [sym_continue_statement] = STATE(2548), + [sym_global_statement] = STATE(2548), + [sym_nonlocal_statement] = STATE(2548), + [sym_exec_statement] = STATE(2548), + [sym_type_alias_statement] = STATE(2548), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25061,8 +25542,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25087,58 +25568,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(617), [sym_string_start] = ACTIONS(81), }, - [STATE(139)] = { - [sym_import_statement] = STATE(2509), - [sym_future_import_statement] = STATE(2509), - [sym_import_from_statement] = STATE(2509), - [sym_print_statement] = STATE(2509), - [sym_assert_statement] = STATE(2509), - [sym_expression_statement] = STATE(2509), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2509), - [sym_delete_statement] = STATE(2509), - [sym_raise_statement] = STATE(2509), - [sym_pass_statement] = STATE(2509), - [sym_break_statement] = STATE(2509), - [sym_continue_statement] = STATE(2509), - [sym_global_statement] = STATE(2509), - [sym_nonlocal_statement] = STATE(2509), - [sym_exec_statement] = STATE(2509), - [sym_type_alias_statement] = STATE(2509), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(143)] = { + [sym_import_statement] = STATE(2548), + [sym_future_import_statement] = STATE(2548), + [sym_import_from_statement] = STATE(2548), + [sym_print_statement] = STATE(2548), + [sym_assert_statement] = STATE(2548), + [sym_expression_statement] = STATE(2548), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2548), + [sym_delete_statement] = STATE(2548), + [sym_raise_statement] = STATE(2548), + [sym_pass_statement] = STATE(2548), + [sym_break_statement] = STATE(2548), + [sym_continue_statement] = STATE(2548), + [sym_global_statement] = STATE(2548), + [sym_nonlocal_statement] = STATE(2548), + [sym_exec_statement] = STATE(2548), + [sym_type_alias_statement] = STATE(2548), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25152,8 +25633,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25178,58 +25659,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(619), [sym_string_start] = ACTIONS(81), }, - [STATE(140)] = { - [sym_import_statement] = STATE(2509), - [sym_future_import_statement] = STATE(2509), - [sym_import_from_statement] = STATE(2509), - [sym_print_statement] = STATE(2509), - [sym_assert_statement] = STATE(2509), - [sym_expression_statement] = STATE(2509), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2509), - [sym_delete_statement] = STATE(2509), - [sym_raise_statement] = STATE(2509), - [sym_pass_statement] = STATE(2509), - [sym_break_statement] = STATE(2509), - [sym_continue_statement] = STATE(2509), - [sym_global_statement] = STATE(2509), - [sym_nonlocal_statement] = STATE(2509), - [sym_exec_statement] = STATE(2509), - [sym_type_alias_statement] = STATE(2509), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(144)] = { + [sym_import_statement] = STATE(2548), + [sym_future_import_statement] = STATE(2548), + [sym_import_from_statement] = STATE(2548), + [sym_print_statement] = STATE(2548), + [sym_assert_statement] = STATE(2548), + [sym_expression_statement] = STATE(2548), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2548), + [sym_delete_statement] = STATE(2548), + [sym_raise_statement] = STATE(2548), + [sym_pass_statement] = STATE(2548), + [sym_break_statement] = STATE(2548), + [sym_continue_statement] = STATE(2548), + [sym_global_statement] = STATE(2548), + [sym_nonlocal_statement] = STATE(2548), + [sym_exec_statement] = STATE(2548), + [sym_type_alias_statement] = STATE(2548), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25243,8 +25724,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25269,58 +25750,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(621), [sym_string_start] = ACTIONS(81), }, - [STATE(141)] = { - [sym_import_statement] = STATE(2509), - [sym_future_import_statement] = STATE(2509), - [sym_import_from_statement] = STATE(2509), - [sym_print_statement] = STATE(2509), - [sym_assert_statement] = STATE(2509), - [sym_expression_statement] = STATE(2509), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2509), - [sym_delete_statement] = STATE(2509), - [sym_raise_statement] = STATE(2509), - [sym_pass_statement] = STATE(2509), - [sym_break_statement] = STATE(2509), - [sym_continue_statement] = STATE(2509), - [sym_global_statement] = STATE(2509), - [sym_nonlocal_statement] = STATE(2509), - [sym_exec_statement] = STATE(2509), - [sym_type_alias_statement] = STATE(2509), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(145)] = { + [sym_import_statement] = STATE(2548), + [sym_future_import_statement] = STATE(2548), + [sym_import_from_statement] = STATE(2548), + [sym_print_statement] = STATE(2548), + [sym_assert_statement] = STATE(2548), + [sym_expression_statement] = STATE(2548), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2548), + [sym_delete_statement] = STATE(2548), + [sym_raise_statement] = STATE(2548), + [sym_pass_statement] = STATE(2548), + [sym_break_statement] = STATE(2548), + [sym_continue_statement] = STATE(2548), + [sym_global_statement] = STATE(2548), + [sym_nonlocal_statement] = STATE(2548), + [sym_exec_statement] = STATE(2548), + [sym_type_alias_statement] = STATE(2548), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25334,8 +25815,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25360,58 +25841,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(623), [sym_string_start] = ACTIONS(81), }, - [STATE(142)] = { - [sym_import_statement] = STATE(2509), - [sym_future_import_statement] = STATE(2509), - [sym_import_from_statement] = STATE(2509), - [sym_print_statement] = STATE(2509), - [sym_assert_statement] = STATE(2509), - [sym_expression_statement] = STATE(2509), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2509), - [sym_delete_statement] = STATE(2509), - [sym_raise_statement] = STATE(2509), - [sym_pass_statement] = STATE(2509), - [sym_break_statement] = STATE(2509), - [sym_continue_statement] = STATE(2509), - [sym_global_statement] = STATE(2509), - [sym_nonlocal_statement] = STATE(2509), - [sym_exec_statement] = STATE(2509), - [sym_type_alias_statement] = STATE(2509), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(146)] = { + [sym_import_statement] = STATE(2548), + [sym_future_import_statement] = STATE(2548), + [sym_import_from_statement] = STATE(2548), + [sym_print_statement] = STATE(2548), + [sym_assert_statement] = STATE(2548), + [sym_expression_statement] = STATE(2548), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2548), + [sym_delete_statement] = STATE(2548), + [sym_raise_statement] = STATE(2548), + [sym_pass_statement] = STATE(2548), + [sym_break_statement] = STATE(2548), + [sym_continue_statement] = STATE(2548), + [sym_global_statement] = STATE(2548), + [sym_nonlocal_statement] = STATE(2548), + [sym_exec_statement] = STATE(2548), + [sym_type_alias_statement] = STATE(2548), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25425,8 +25906,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25451,58 +25932,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(625), [sym_string_start] = ACTIONS(81), }, - [STATE(143)] = { - [sym_import_statement] = STATE(2509), - [sym_future_import_statement] = STATE(2509), - [sym_import_from_statement] = STATE(2509), - [sym_print_statement] = STATE(2509), - [sym_assert_statement] = STATE(2509), - [sym_expression_statement] = STATE(2509), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2509), - [sym_delete_statement] = STATE(2509), - [sym_raise_statement] = STATE(2509), - [sym_pass_statement] = STATE(2509), - [sym_break_statement] = STATE(2509), - [sym_continue_statement] = STATE(2509), - [sym_global_statement] = STATE(2509), - [sym_nonlocal_statement] = STATE(2509), - [sym_exec_statement] = STATE(2509), - [sym_type_alias_statement] = STATE(2509), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(147)] = { + [sym_import_statement] = STATE(2548), + [sym_future_import_statement] = STATE(2548), + [sym_import_from_statement] = STATE(2548), + [sym_print_statement] = STATE(2548), + [sym_assert_statement] = STATE(2548), + [sym_expression_statement] = STATE(2548), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2548), + [sym_delete_statement] = STATE(2548), + [sym_raise_statement] = STATE(2548), + [sym_pass_statement] = STATE(2548), + [sym_break_statement] = STATE(2548), + [sym_continue_statement] = STATE(2548), + [sym_global_statement] = STATE(2548), + [sym_nonlocal_statement] = STATE(2548), + [sym_exec_statement] = STATE(2548), + [sym_type_alias_statement] = STATE(2548), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25516,8 +25997,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25542,58 +26023,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(627), [sym_string_start] = ACTIONS(81), }, - [STATE(144)] = { - [sym_import_statement] = STATE(2509), - [sym_future_import_statement] = STATE(2509), - [sym_import_from_statement] = STATE(2509), - [sym_print_statement] = STATE(2509), - [sym_assert_statement] = STATE(2509), - [sym_expression_statement] = STATE(2509), - [sym_named_expression] = STATE(1649), - [sym__named_expression_lhs] = STATE(2616), - [sym_return_statement] = STATE(2509), - [sym_delete_statement] = STATE(2509), - [sym_raise_statement] = STATE(2509), - [sym_pass_statement] = STATE(2509), - [sym_break_statement] = STATE(2509), - [sym_continue_statement] = STATE(2509), - [sym_global_statement] = STATE(2509), - [sym_nonlocal_statement] = STATE(2509), - [sym_exec_statement] = STATE(2509), - [sym_type_alias_statement] = STATE(2509), - [sym_pattern] = STATE(1624), - [sym_tuple_pattern] = STATE(1626), - [sym_list_pattern] = STATE(1626), - [sym_list_splat_pattern] = STATE(628), - [sym_as_pattern] = STATE(1649), - [sym_expression] = STATE(1799), - [sym_primary_expression] = STATE(949), - [sym_not_operator] = STATE(1649), - [sym_boolean_operator] = STATE(1649), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_comparison_operator] = STATE(1649), - [sym_lambda] = STATE(1649), - [sym_assignment] = STATE(2566), - [sym_augmented_assignment] = STATE(2566), - [sym_pattern_list] = STATE(1644), - [sym_yield] = STATE(2566), - [sym_attribute] = STATE(638), - [sym_subscript] = STATE(638), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_conditional_expression] = STATE(1649), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(148)] = { + [sym_import_statement] = STATE(2548), + [sym_future_import_statement] = STATE(2548), + [sym_import_from_statement] = STATE(2548), + [sym_print_statement] = STATE(2548), + [sym_assert_statement] = STATE(2548), + [sym_expression_statement] = STATE(2548), + [sym_named_expression] = STATE(1659), + [sym__named_expression_lhs] = STATE(2709), + [sym_return_statement] = STATE(2548), + [sym_delete_statement] = STATE(2548), + [sym_raise_statement] = STATE(2548), + [sym_pass_statement] = STATE(2548), + [sym_break_statement] = STATE(2548), + [sym_continue_statement] = STATE(2548), + [sym_global_statement] = STATE(2548), + [sym_nonlocal_statement] = STATE(2548), + [sym_exec_statement] = STATE(2548), + [sym_type_alias_statement] = STATE(2548), + [sym_pattern] = STATE(1643), + [sym_tuple_pattern] = STATE(1631), + [sym_list_pattern] = STATE(1631), + [sym_list_splat_pattern] = STATE(638), + [sym_as_pattern] = STATE(1659), + [sym_expression] = STATE(1818), + [sym_primary_expression] = STATE(958), + [sym_not_operator] = STATE(1659), + [sym_boolean_operator] = STATE(1659), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_comparison_operator] = STATE(1659), + [sym_lambda] = STATE(1659), + [sym_assignment] = STATE(2513), + [sym_augmented_assignment] = STATE(2513), + [sym_pattern_list] = STATE(1650), + [sym_yield] = STATE(2513), + [sym_attribute] = STATE(641), + [sym_subscript] = STATE(641), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_conditional_expression] = STATE(1659), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(9), [anon_sym_import] = ACTIONS(11), [anon_sym_from] = ACTIONS(13), @@ -25607,8 +26088,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_pass] = ACTIONS(29), [anon_sym_break] = ACTIONS(31), [anon_sym_continue] = ACTIONS(33), - [anon_sym_match] = ACTIONS(405), - [anon_sym_async] = ACTIONS(407), + [anon_sym_match] = ACTIONS(397), + [anon_sym_async] = ACTIONS(399), [anon_sym_global] = ACTIONS(51), [anon_sym_nonlocal] = ACTIONS(53), [anon_sym_exec] = ACTIONS(55), @@ -25632,82 +26113,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(81), }, - [STATE(145)] = { - [sym_list_splat_pattern] = STATE(1047), - [sym_primary_expression] = STATE(974), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_attribute] = STATE(1099), - [sym_subscript] = STATE(1099), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(149)] = { + [sym_list_splat_pattern] = STATE(1128), + [sym_primary_expression] = STATE(967), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_attribute] = STATE(1091), + [sym_subscript] = STATE(1091), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(631), [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(267), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(282), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(284), [anon_sym_match] = ACTIONS(635), [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(267), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(259), [anon_sym_exec] = ACTIONS(633), [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(292), + [anon_sym_EQ] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(259), [anon_sym_DASH] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(259), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PERCENT] = ACTIONS(267), - [anon_sym_SLASH_SLASH] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_SLASH_SLASH] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [anon_sym_PLUS_EQ] = ACTIONS(308), - [anon_sym_DASH_EQ] = ACTIONS(308), - [anon_sym_STAR_EQ] = ACTIONS(308), - [anon_sym_SLASH_EQ] = ACTIONS(308), - [anon_sym_AT_EQ] = ACTIONS(308), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), - [anon_sym_PERCENT_EQ] = ACTIONS(308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(308), - [anon_sym_GT_GT_EQ] = ACTIONS(308), - [anon_sym_LT_LT_EQ] = ACTIONS(308), - [anon_sym_AMP_EQ] = ACTIONS(308), - [anon_sym_CARET_EQ] = ACTIONS(308), - [anon_sym_PIPE_EQ] = ACTIONS(308), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(300), + [anon_sym_DASH_EQ] = ACTIONS(300), + [anon_sym_STAR_EQ] = ACTIONS(300), + [anon_sym_SLASH_EQ] = ACTIONS(300), + [anon_sym_AT_EQ] = ACTIONS(300), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), + [anon_sym_PERCENT_EQ] = ACTIONS(300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(300), + [anon_sym_GT_GT_EQ] = ACTIONS(300), + [anon_sym_LT_LT_EQ] = ACTIONS(300), + [anon_sym_AMP_EQ] = ACTIONS(300), + [anon_sym_CARET_EQ] = ACTIONS(300), + [anon_sym_PIPE_EQ] = ACTIONS(300), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -25717,85 +26198,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(265), + [sym__newline] = ACTIONS(257), [sym_string_start] = ACTIONS(81), }, - [STATE(146)] = { - [sym_list_splat_pattern] = STATE(1047), - [sym_primary_expression] = STATE(974), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_attribute] = STATE(1099), - [sym_subscript] = STATE(1099), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(150)] = { + [sym_list_splat_pattern] = STATE(1128), + [sym_primary_expression] = STATE(967), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_attribute] = STATE(1091), + [sym_subscript] = STATE(1091), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(631), [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(267), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(292), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(274), [anon_sym_match] = ACTIONS(635), [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(267), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(259), [anon_sym_exec] = ACTIONS(633), [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(292), + [anon_sym_EQ] = ACTIONS(284), [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(259), [anon_sym_DASH] = ACTIONS(639), - [anon_sym_PIPE] = ACTIONS(267), + [anon_sym_PIPE] = ACTIONS(259), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PERCENT] = ACTIONS(267), - [anon_sym_SLASH_SLASH] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_LT_LT] = ACTIONS(267), + [anon_sym_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_SLASH_SLASH] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [anon_sym_PLUS_EQ] = ACTIONS(308), - [anon_sym_DASH_EQ] = ACTIONS(308), - [anon_sym_STAR_EQ] = ACTIONS(308), - [anon_sym_SLASH_EQ] = ACTIONS(308), - [anon_sym_AT_EQ] = ACTIONS(308), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), - [anon_sym_PERCENT_EQ] = ACTIONS(308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(308), - [anon_sym_GT_GT_EQ] = ACTIONS(308), - [anon_sym_LT_LT_EQ] = ACTIONS(308), - [anon_sym_AMP_EQ] = ACTIONS(308), - [anon_sym_CARET_EQ] = ACTIONS(308), - [anon_sym_PIPE_EQ] = ACTIONS(308), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [anon_sym_PLUS_EQ] = ACTIONS(300), + [anon_sym_DASH_EQ] = ACTIONS(300), + [anon_sym_STAR_EQ] = ACTIONS(300), + [anon_sym_SLASH_EQ] = ACTIONS(300), + [anon_sym_AT_EQ] = ACTIONS(300), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), + [anon_sym_PERCENT_EQ] = ACTIONS(300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(300), + [anon_sym_GT_GT_EQ] = ACTIONS(300), + [anon_sym_LT_LT_EQ] = ACTIONS(300), + [anon_sym_AMP_EQ] = ACTIONS(300), + [anon_sym_CARET_EQ] = ACTIONS(300), + [anon_sym_PIPE_EQ] = ACTIONS(300), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -25805,30 +26286,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(265), + [sym__newline] = ACTIONS(257), [sym_string_start] = ACTIONS(81), }, - [STATE(147)] = { - [sym_list_splat_pattern] = STATE(1372), - [sym_primary_expression] = STATE(1116), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(312), + [STATE(151)] = { + [sym_list_splat_pattern] = STATE(1402), + [sym_primary_expression] = STATE(1048), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(304), [anon_sym_SEMI] = ACTIONS(643), [anon_sym_DOT] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(648), @@ -25850,7 +26331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(645), [anon_sym_DASH] = ACTIONS(660), [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_PLUS] = ACTIONS(660), [anon_sym_not] = ACTIONS(650), [anon_sym_and] = ACTIONS(650), @@ -25861,7 +26342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(645), [anon_sym_CARET] = ACTIONS(645), [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(296), [anon_sym_is] = ACTIONS(650), [anon_sym_LT] = ACTIONS(650), [anon_sym_LT_EQ] = ACTIONS(643), @@ -25883,82 +26364,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(643), [anon_sym_CARET_EQ] = ACTIONS(643), [anon_sym_PIPE_EQ] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(643), - [sym_string_start] = ACTIONS(316), + [sym_string_start] = ACTIONS(308), }, - [STATE(148)] = { - [sym_list_splat_pattern] = STATE(1047), - [sym_primary_expression] = STATE(974), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_attribute] = STATE(1099), - [sym_subscript] = STATE(1099), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(152)] = { + [sym_list_splat_pattern] = STATE(1128), + [sym_primary_expression] = STATE(967), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_attribute] = STATE(1091), + [sym_subscript] = STATE(1091), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_from] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_from] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(631), [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(259), [anon_sym_match] = ACTIONS(635), [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(633), [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(267), + [anon_sym_EQ] = ACTIONS(259), [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -25968,147 +26449,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(265), + [sym__newline] = ACTIONS(257), [sym_string_start] = ACTIONS(81), }, - [STATE(149)] = { - [sym_list_splat_pattern] = STATE(1197), - [sym_primary_expression] = STATE(1020), - [sym_binary_operator] = STATE(1279), - [sym_unary_operator] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_subscript] = STATE(1279), - [sym_call] = STATE(1279), - [sym_list] = STATE(1279), - [sym_set] = STATE(1279), - [sym_tuple] = STATE(1279), - [sym_dictionary] = STATE(1279), - [sym_list_comprehension] = STATE(1279), - [sym_dictionary_comprehension] = STATE(1279), - [sym_set_comprehension] = STATE(1279), - [sym_generator_expression] = STATE(1279), - [sym_parenthesized_expression] = STATE(1279), - [sym_concatenated_string] = STATE(1279), - [sym_string] = STATE(975), - [sym_await] = STATE(1279), - [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(267), - [anon_sym_match] = ACTIONS(672), - [anon_sym_async] = ACTIONS(670), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), - [anon_sym_exec] = ACTIONS(670), - [anon_sym_type] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(265), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(265), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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(676), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [sym_ellipsis] = ACTIONS(680), - [sym_type_conversion] = ACTIONS(265), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(680), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_none] = ACTIONS(664), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), - }, - [STATE(150)] = { - [sym_list_splat_pattern] = STATE(1047), - [sym_primary_expression] = STATE(974), - [sym_binary_operator] = STATE(1099), - [sym_unary_operator] = STATE(1099), - [sym_attribute] = STATE(1099), - [sym_subscript] = STATE(1099), - [sym_call] = STATE(1099), - [sym_list] = STATE(1099), - [sym_set] = STATE(1099), - [sym_tuple] = STATE(1099), - [sym_dictionary] = STATE(1099), - [sym_list_comprehension] = STATE(1099), - [sym_dictionary_comprehension] = STATE(1099), - [sym_set_comprehension] = STATE(1099), - [sym_generator_expression] = STATE(1099), - [sym_parenthesized_expression] = STATE(1099), - [sym_concatenated_string] = STATE(1099), - [sym_string] = STATE(954), - [sym_await] = STATE(1099), + [STATE(153)] = { + [sym_list_splat_pattern] = STATE(1128), + [sym_primary_expression] = STATE(967), + [sym_binary_operator] = STATE(1091), + [sym_unary_operator] = STATE(1091), + [sym_attribute] = STATE(1091), + [sym_subscript] = STATE(1091), + [sym_call] = STATE(1091), + [sym_list] = STATE(1091), + [sym_set] = STATE(1091), + [sym_tuple] = STATE(1091), + [sym_dictionary] = STATE(1091), + [sym_list_comprehension] = STATE(1091), + [sym_dictionary_comprehension] = STATE(1091), + [sym_set_comprehension] = STATE(1091), + [sym_generator_expression] = STATE(1091), + [sym_parenthesized_expression] = STATE(1091), + [sym_concatenated_string] = STATE(1091), + [sym_string] = STATE(960), + [sym_await] = STATE(1091), [sym_identifier] = ACTIONS(77), - [anon_sym_SEMI] = ACTIONS(265), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_from] = ACTIONS(267), + [anon_sym_SEMI] = ACTIONS(257), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_from] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(631), [anon_sym_print] = ACTIONS(633), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(257), [anon_sym_match] = ACTIONS(635), [anon_sym_async] = ACTIONS(633), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(633), [anon_sym_type] = ACTIONS(635), - [anon_sym_EQ] = ACTIONS(267), + [anon_sym_EQ] = ACTIONS(259), [anon_sym_LBRACK] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(65), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(67), [anon_sym_PLUS] = ACTIONS(65), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(65), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(75), [sym_integer] = ACTIONS(77), [sym_float] = ACTIONS(75), @@ -26118,30 +26524,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_none] = ACTIONS(77), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(265), + [sym__newline] = ACTIONS(257), [sym_string_start] = ACTIONS(81), }, - [STATE(151)] = { - [sym_list_splat_pattern] = STATE(1372), - [sym_primary_expression] = STATE(1116), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_concatenated_string] = STATE(1377), + [STATE(154)] = { + [sym_list_splat_pattern] = STATE(1232), + [sym_primary_expression] = STATE(1007), + [sym_binary_operator] = STATE(1162), + [sym_unary_operator] = STATE(1162), + [sym_attribute] = STATE(1162), + [sym_subscript] = STATE(1162), + [sym_call] = STATE(1162), + [sym_list] = STATE(1162), + [sym_set] = STATE(1162), + [sym_tuple] = STATE(1162), + [sym_dictionary] = STATE(1162), + [sym_list_comprehension] = STATE(1162), + [sym_dictionary_comprehension] = STATE(1162), + [sym_set_comprehension] = STATE(1162), + [sym_generator_expression] = STATE(1162), + [sym_parenthesized_expression] = STATE(1162), + [sym_concatenated_string] = STATE(1162), [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(312), + [sym_await] = STATE(1162), + [sym_identifier] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(668), + [anon_sym_print] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_match] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), + [anon_sym_exec] = ACTIONS(670), + [anon_sym_type] = ACTIONS(672), + [anon_sym_EQ] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_AT] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(676), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [sym_ellipsis] = ACTIONS(680), + [sym_type_conversion] = ACTIONS(257), + [sym_integer] = ACTIONS(664), + [sym_float] = ACTIONS(680), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(664), + [sym_false] = ACTIONS(664), + [sym_none] = ACTIONS(664), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(684), + }, + [STATE(155)] = { + [sym_list_splat_pattern] = STATE(1402), + [sym_primary_expression] = STATE(1048), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(304), [anon_sym_DOT] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(648), [anon_sym_COMMA] = ACTIONS(643), @@ -26161,11 +26642,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(658), [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(304), + [anon_sym_DASH] = ACTIONS(296), [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_RBRACE] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_PLUS] = ACTIONS(296), [anon_sym_not] = ACTIONS(650), [anon_sym_and] = ACTIONS(650), [anon_sym_or] = ACTIONS(650), @@ -26175,7 +26656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(686), [anon_sym_CARET] = ACTIONS(686), [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(296), [anon_sym_is] = ACTIONS(650), [anon_sym_LT] = ACTIONS(650), [anon_sym_LT_EQ] = ACTIONS(643), @@ -26184,83 +26665,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(643), [anon_sym_GT] = ACTIONS(650), [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(310), + [sym_ellipsis] = ACTIONS(302), [sym_type_conversion] = ACTIONS(643), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(316), + [sym_string_start] = ACTIONS(308), }, - [STATE(152)] = { - [sym_list_splat_pattern] = STATE(1197), - [sym_primary_expression] = STATE(1020), - [sym_binary_operator] = STATE(1279), - [sym_unary_operator] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_subscript] = STATE(1279), - [sym_call] = STATE(1279), - [sym_list] = STATE(1279), - [sym_set] = STATE(1279), - [sym_tuple] = STATE(1279), - [sym_dictionary] = STATE(1279), - [sym_list_comprehension] = STATE(1279), - [sym_dictionary_comprehension] = STATE(1279), - [sym_set_comprehension] = STATE(1279), - [sym_generator_expression] = STATE(1279), - [sym_parenthesized_expression] = STATE(1279), - [sym_concatenated_string] = STATE(1279), - [sym_string] = STATE(975), - [sym_await] = STATE(1279), + [STATE(156)] = { + [sym_list_splat_pattern] = STATE(1232), + [sym_primary_expression] = STATE(1007), + [sym_binary_operator] = STATE(1162), + [sym_unary_operator] = STATE(1162), + [sym_attribute] = STATE(1162), + [sym_subscript] = STATE(1162), + [sym_call] = STATE(1162), + [sym_list] = STATE(1162), + [sym_set] = STATE(1162), + [sym_tuple] = STATE(1162), + [sym_dictionary] = STATE(1162), + [sym_list_comprehension] = STATE(1162), + [sym_dictionary_comprehension] = STATE(1162), + [sym_set_comprehension] = STATE(1162), + [sym_generator_expression] = STATE(1162), + [sym_parenthesized_expression] = STATE(1162), + [sym_concatenated_string] = STATE(1162), + [sym_string] = STATE(984), + [sym_await] = STATE(1162), [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(668), [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(259), [anon_sym_match] = ACTIONS(672), [anon_sym_async] = ACTIONS(670), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(670), [anon_sym_type] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(267), + [anon_sym_EQ] = ACTIONS(259), [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(257), [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(680), - [sym_type_conversion] = ACTIONS(265), + [sym_type_conversion] = ACTIONS(257), [sym_integer] = ACTIONS(664), [sym_float] = ACTIONS(680), [anon_sym_await] = ACTIONS(682), @@ -26271,27 +26752,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(684), }, - [STATE(153)] = { - [sym_list_splat_pattern] = STATE(1372), - [sym_primary_expression] = STATE(1116), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(312), + [STATE(157)] = { + [sym_list_splat_pattern] = STATE(1402), + [sym_primary_expression] = STATE(1048), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(304), [anon_sym_SEMI] = ACTIONS(643), [anon_sym_DOT] = ACTIONS(645), [anon_sym_from] = ACTIONS(650), @@ -26312,10 +26793,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(658), [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(304), + [anon_sym_DASH] = ACTIONS(296), [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(296), [anon_sym_not] = ACTIONS(650), [anon_sym_and] = ACTIONS(650), [anon_sym_or] = ACTIONS(650), @@ -26325,7 +26806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(686), [anon_sym_CARET] = ACTIONS(686), [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(296), [anon_sym_is] = ACTIONS(650), [anon_sym_LT] = ACTIONS(650), [anon_sym_LT_EQ] = ACTIONS(643), @@ -26334,81 +26815,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(643), [anon_sym_GT] = ACTIONS(650), [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), [sym__newline] = ACTIONS(643), - [sym_string_start] = ACTIONS(316), + [sym_string_start] = ACTIONS(308), }, - [STATE(154)] = { - [sym_list_splat_pattern] = STATE(1283), - [sym_primary_expression] = STATE(991), - [sym_binary_operator] = STATE(1280), - [sym_unary_operator] = STATE(1280), - [sym_attribute] = STATE(1280), - [sym_subscript] = STATE(1280), - [sym_call] = STATE(1280), - [sym_list] = STATE(1280), - [sym_set] = STATE(1280), - [sym_tuple] = STATE(1280), - [sym_dictionary] = STATE(1280), - [sym_list_comprehension] = STATE(1280), - [sym_dictionary_comprehension] = STATE(1280), - [sym_set_comprehension] = STATE(1280), - [sym_generator_expression] = STATE(1280), - [sym_parenthesized_expression] = STATE(1280), - [sym_concatenated_string] = STATE(1280), - [sym_string] = STATE(969), - [sym_await] = STATE(1280), + [STATE(158)] = { + [sym_list_splat_pattern] = STATE(1165), + [sym_primary_expression] = STATE(1031), + [sym_binary_operator] = STATE(1143), + [sym_unary_operator] = STATE(1143), + [sym_attribute] = STATE(1143), + [sym_subscript] = STATE(1143), + [sym_call] = STATE(1143), + [sym_list] = STATE(1143), + [sym_set] = STATE(1143), + [sym_tuple] = STATE(1143), + [sym_dictionary] = STATE(1143), + [sym_list_comprehension] = STATE(1143), + [sym_dictionary_comprehension] = STATE(1143), + [sym_set_comprehension] = STATE(1143), + [sym_generator_expression] = STATE(1143), + [sym_parenthesized_expression] = STATE(1143), + [sym_concatenated_string] = STATE(1143), + [sym_string] = STATE(968), + [sym_await] = STATE(1143), [sym_identifier] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(693), [anon_sym_print] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(259), [anon_sym_match] = ACTIONS(697), [anon_sym_async] = ACTIONS(695), - [anon_sym_for] = ACTIONS(267), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_for] = ACTIONS(259), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(695), [anon_sym_type] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_RBRACK] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_RBRACK] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(703), [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(705), [sym_integer] = ACTIONS(689), [sym_float] = ACTIONS(705), @@ -26420,143 +26901,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(709), }, - [STATE(155)] = { - [sym_list_splat_pattern] = STATE(1372), - [sym_primary_expression] = STATE(1116), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_concatenated_string] = STATE(1377), + [STATE(159)] = { + [sym_list_splat_pattern] = STATE(1232), + [sym_primary_expression] = STATE(1007), + [sym_binary_operator] = STATE(1162), + [sym_unary_operator] = STATE(1162), + [sym_attribute] = STATE(1162), + [sym_subscript] = STATE(1162), + [sym_call] = STATE(1162), + [sym_list] = STATE(1162), + [sym_set] = STATE(1162), + [sym_tuple] = STATE(1162), + [sym_dictionary] = STATE(1162), + [sym_list_comprehension] = STATE(1162), + [sym_dictionary_comprehension] = STATE(1162), + [sym_set_comprehension] = STATE(1162), + [sym_generator_expression] = STATE(1162), + [sym_parenthesized_expression] = STATE(1162), + [sym_concatenated_string] = STATE(1162), [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(312), - [anon_sym_DOT] = ACTIONS(267), + [sym_await] = STATE(1162), + [sym_identifier] = ACTIONS(664), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(666), + [anon_sym_COMMA] = ACTIONS(686), + [anon_sym_as] = ACTIONS(645), + [anon_sym_STAR] = ACTIONS(668), + [anon_sym_print] = ACTIONS(670), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(645), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_match] = ACTIONS(672), + [anon_sym_async] = ACTIONS(670), + [anon_sym_for] = ACTIONS(650), + [anon_sym_in] = ACTIONS(645), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_exec] = ACTIONS(670), + [anon_sym_type] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(674), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_PLUS] = ACTIONS(676), + [anon_sym_not] = ACTIONS(645), + [anon_sym_and] = ACTIONS(645), + [anon_sym_or] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_SLASH_SLASH] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(676), + [anon_sym_is] = ACTIONS(645), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_LT_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(686), + [anon_sym_BANG_EQ] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(686), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_LT_GT] = ACTIONS(686), + [sym_ellipsis] = ACTIONS(680), + [sym_integer] = ACTIONS(664), + [sym_float] = ACTIONS(680), + [anon_sym_await] = ACTIONS(682), + [sym_true] = ACTIONS(664), + [sym_false] = ACTIONS(664), + [sym_none] = ACTIONS(664), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(684), + }, + [STATE(160)] = { + [sym_list_splat_pattern] = STATE(1402), + [sym_primary_expression] = STATE(1048), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(304), + [anon_sym_DOT] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_RPAREN] = ACTIONS(643), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_as] = ACTIONS(650), [anon_sym_STAR] = ACTIONS(652), [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(267), - [anon_sym_else] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_if] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(643), [anon_sym_match] = ACTIONS(656), [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_for] = ACTIONS(650), + [anon_sym_in] = ACTIONS(650), + [anon_sym_STAR_STAR] = ACTIONS(686), [anon_sym_exec] = ACTIONS(654), [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(267), + [anon_sym_EQ] = ACTIONS(650), [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(304), - [anon_sym_PIPE] = ACTIONS(265), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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(304), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(650), + [anon_sym_or] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_SLASH_SLASH] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_is] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(643), + [anon_sym_BANG_EQ] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(643), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT_GT] = ACTIONS(643), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(316), + [sym_string_start] = ACTIONS(308), }, - [STATE(156)] = { - [sym_list_splat_pattern] = STATE(1301), - [sym_primary_expression] = STATE(1071), - [sym_binary_operator] = STATE(1381), - [sym_unary_operator] = STATE(1381), - [sym_attribute] = STATE(1381), - [sym_subscript] = STATE(1381), - [sym_call] = STATE(1381), - [sym_list] = STATE(1381), - [sym_set] = STATE(1381), - [sym_tuple] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_set_comprehension] = STATE(1381), - [sym_generator_expression] = STATE(1381), - [sym_parenthesized_expression] = STATE(1381), - [sym_concatenated_string] = STATE(1381), - [sym_string] = STATE(995), - [sym_await] = STATE(1381), + [STATE(161)] = { + [sym_list_splat_pattern] = STATE(1348), + [sym_primary_expression] = STATE(1099), + [sym_binary_operator] = STATE(1299), + [sym_unary_operator] = STATE(1299), + [sym_attribute] = STATE(1299), + [sym_subscript] = STATE(1299), + [sym_call] = STATE(1299), + [sym_list] = STATE(1299), + [sym_set] = STATE(1299), + [sym_tuple] = STATE(1299), + [sym_dictionary] = STATE(1299), + [sym_list_comprehension] = STATE(1299), + [sym_dictionary_comprehension] = STATE(1299), + [sym_set_comprehension] = STATE(1299), + [sym_generator_expression] = STATE(1299), + [sym_parenthesized_expression] = STATE(1299), + [sym_concatenated_string] = STATE(1299), + [sym_string] = STATE(1026), + [sym_await] = STATE(1299), [sym_identifier] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(265), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_RPAREN] = ACTIONS(257), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(715), [anon_sym_print] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(259), [anon_sym_match] = ACTIONS(719), [anon_sym_async] = ACTIONS(717), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(717), [anon_sym_type] = ACTIONS(719), - [anon_sym_EQ] = ACTIONS(267), + [anon_sym_EQ] = ACTIONS(259), [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(725), [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(727), [sym_integer] = ACTIONS(711), [sym_float] = ACTIONS(727), @@ -26568,144 +27123,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(731), }, - [STATE(157)] = { - [sym_list_splat_pattern] = STATE(1372), - [sym_primary_expression] = STATE(1116), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_concatenated_string] = STATE(1377), + [STATE(162)] = { + [sym_list_splat_pattern] = STATE(1232), + [sym_primary_expression] = STATE(1007), + [sym_binary_operator] = STATE(1162), + [sym_unary_operator] = STATE(1162), + [sym_attribute] = STATE(1162), + [sym_subscript] = STATE(1162), + [sym_call] = STATE(1162), + [sym_list] = STATE(1162), + [sym_set] = STATE(1162), + [sym_tuple] = STATE(1162), + [sym_dictionary] = STATE(1162), + [sym_list_comprehension] = STATE(1162), + [sym_dictionary_comprehension] = STATE(1162), + [sym_set_comprehension] = STATE(1162), + [sym_generator_expression] = STATE(1162), + [sym_parenthesized_expression] = STATE(1162), + [sym_concatenated_string] = STATE(1162), [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(312), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_RPAREN] = ACTIONS(643), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(304), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(316), - }, - [STATE(158)] = { - [sym_list_splat_pattern] = STATE(1197), - [sym_primary_expression] = STATE(1020), - [sym_binary_operator] = STATE(1279), - [sym_unary_operator] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_subscript] = STATE(1279), - [sym_call] = STATE(1279), - [sym_list] = STATE(1279), - [sym_set] = STATE(1279), - [sym_tuple] = STATE(1279), - [sym_dictionary] = STATE(1279), - [sym_list_comprehension] = STATE(1279), - [sym_dictionary_comprehension] = STATE(1279), - [sym_set_comprehension] = STATE(1279), - [sym_generator_expression] = STATE(1279), - [sym_parenthesized_expression] = STATE(1279), - [sym_concatenated_string] = STATE(1279), - [sym_string] = STATE(975), - [sym_await] = STATE(1279), + [sym_await] = STATE(1162), [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(668), [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(257), [anon_sym_match] = ACTIONS(672), [anon_sym_async] = ACTIONS(670), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(670), [anon_sym_type] = ACTIONS(672), - [anon_sym_EQ] = ACTIONS(267), + [anon_sym_EQ] = ACTIONS(259), [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(257), [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(680), - [sym_type_conversion] = ACTIONS(265), + [sym_type_conversion] = ACTIONS(257), [sym_integer] = ACTIONS(664), [sym_float] = ACTIONS(680), [anon_sym_await] = ACTIONS(682), @@ -26716,69 +27197,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(684), }, - [STATE(159)] = { - [sym_list_splat_pattern] = STATE(1259), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1180), - [sym_unary_operator] = STATE(1180), - [sym_attribute] = STATE(1180), - [sym_subscript] = STATE(1180), - [sym_call] = STATE(1180), - [sym_list] = STATE(1180), - [sym_set] = STATE(1180), - [sym_tuple] = STATE(1180), - [sym_dictionary] = STATE(1180), - [sym_list_comprehension] = STATE(1180), - [sym_dictionary_comprehension] = STATE(1180), - [sym_set_comprehension] = STATE(1180), - [sym_generator_expression] = STATE(1180), - [sym_parenthesized_expression] = STATE(1180), - [sym_concatenated_string] = STATE(1180), - [sym_string] = STATE(958), - [sym_await] = STATE(1180), + [STATE(163)] = { + [sym_list_splat_pattern] = STATE(1228), + [sym_primary_expression] = STATE(994), + [sym_binary_operator] = STATE(1221), + [sym_unary_operator] = STATE(1221), + [sym_attribute] = STATE(1221), + [sym_subscript] = STATE(1221), + [sym_call] = STATE(1221), + [sym_list] = STATE(1221), + [sym_set] = STATE(1221), + [sym_tuple] = STATE(1221), + [sym_dictionary] = STATE(1221), + [sym_list_comprehension] = STATE(1221), + [sym_dictionary_comprehension] = STATE(1221), + [sym_set_comprehension] = STATE(1221), + [sym_generator_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1221), + [sym_concatenated_string] = STATE(1221), + [sym_string] = STATE(971), + [sym_await] = STATE(1221), [sym_identifier] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(737), [anon_sym_print] = ACTIONS(739), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(259), [anon_sym_match] = ACTIONS(741), [anon_sym_async] = ACTIONS(739), - [anon_sym_for] = ACTIONS(267), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_for] = ACTIONS(259), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(739), [anon_sym_type] = ACTIONS(741), [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(257), [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(745), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(749), [sym_integer] = ACTIONS(733), [sym_float] = ACTIONS(749), @@ -26790,100 +27271,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(753), }, - [STATE(160)] = { - [sym_list_splat_pattern] = STATE(1197), - [sym_primary_expression] = STATE(1020), - [sym_binary_operator] = STATE(1279), - [sym_unary_operator] = STATE(1279), - [sym_attribute] = STATE(1279), - [sym_subscript] = STATE(1279), - [sym_call] = STATE(1279), - [sym_list] = STATE(1279), - [sym_set] = STATE(1279), - [sym_tuple] = STATE(1279), - [sym_dictionary] = STATE(1279), - [sym_list_comprehension] = STATE(1279), - [sym_dictionary_comprehension] = STATE(1279), - [sym_set_comprehension] = STATE(1279), - [sym_generator_expression] = STATE(1279), - [sym_parenthesized_expression] = STATE(1279), - [sym_concatenated_string] = STATE(1279), - [sym_string] = STATE(975), - [sym_await] = STATE(1279), - [sym_identifier] = ACTIONS(664), - [anon_sym_DOT] = ACTIONS(645), - [anon_sym_LPAREN] = ACTIONS(666), - [anon_sym_COMMA] = ACTIONS(686), - [anon_sym_as] = ACTIONS(645), - [anon_sym_STAR] = ACTIONS(668), - [anon_sym_print] = ACTIONS(670), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(645), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_match] = ACTIONS(672), - [anon_sym_async] = ACTIONS(670), - [anon_sym_for] = ACTIONS(650), - [anon_sym_in] = ACTIONS(645), - [anon_sym_STAR_STAR] = ACTIONS(686), - [anon_sym_exec] = ACTIONS(670), - [anon_sym_type] = ACTIONS(672), - [anon_sym_LBRACK] = ACTIONS(674), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(678), - [anon_sym_RBRACE] = ACTIONS(686), - [anon_sym_PLUS] = ACTIONS(676), - [anon_sym_not] = ACTIONS(645), - [anon_sym_and] = ACTIONS(645), - [anon_sym_or] = ACTIONS(645), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_is] = ACTIONS(645), - [anon_sym_LT] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(686), - [anon_sym_BANG_EQ] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(686), - [anon_sym_GT] = ACTIONS(645), - [anon_sym_LT_GT] = ACTIONS(686), - [sym_ellipsis] = ACTIONS(680), - [sym_integer] = ACTIONS(664), - [sym_float] = ACTIONS(680), - [anon_sym_await] = ACTIONS(682), - [sym_true] = ACTIONS(664), - [sym_false] = ACTIONS(664), - [sym_none] = ACTIONS(664), + [STATE(164)] = { + [sym_list_splat_pattern] = STATE(1402), + [sym_primary_expression] = STATE(1048), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(304), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(259), + [anon_sym_else] = ACTIONS(259), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(684), + [sym_string_start] = ACTIONS(308), }, - [STATE(161)] = { - [sym_list_splat_pattern] = STATE(1444), - [sym_primary_expression] = STATE(1202), - [sym_binary_operator] = STATE(1441), - [sym_unary_operator] = STATE(1441), - [sym_attribute] = STATE(1441), - [sym_subscript] = STATE(1441), - [sym_call] = STATE(1441), - [sym_list] = STATE(1441), - [sym_set] = STATE(1441), - [sym_tuple] = STATE(1441), - [sym_dictionary] = STATE(1441), - [sym_list_comprehension] = STATE(1441), - [sym_dictionary_comprehension] = STATE(1441), - [sym_set_comprehension] = STATE(1441), - [sym_generator_expression] = STATE(1441), - [sym_parenthesized_expression] = STATE(1441), - [sym_concatenated_string] = STATE(1441), - [sym_string] = STATE(1081), - [sym_await] = STATE(1441), + [STATE(165)] = { + [sym_list_splat_pattern] = STATE(1446), + [sym_primary_expression] = STATE(1237), + [sym_binary_operator] = STATE(1449), + [sym_unary_operator] = STATE(1449), + [sym_attribute] = STATE(1449), + [sym_subscript] = STATE(1449), + [sym_call] = STATE(1449), + [sym_list] = STATE(1449), + [sym_set] = STATE(1449), + [sym_tuple] = STATE(1449), + [sym_dictionary] = STATE(1449), + [sym_list_comprehension] = STATE(1449), + [sym_dictionary_comprehension] = STATE(1449), + [sym_set_comprehension] = STATE(1449), + [sym_generator_expression] = STATE(1449), + [sym_parenthesized_expression] = STATE(1449), + [sym_concatenated_string] = STATE(1449), + [sym_string] = STATE(1111), + [sym_await] = STATE(1449), [sym_identifier] = ACTIONS(755), [anon_sym_DOT] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(757), @@ -26892,7 +27373,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(759), [anon_sym_print] = ACTIONS(761), [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_COLON_EQ] = ACTIONS(272), [anon_sym_if] = ACTIONS(645), [anon_sym_COLON] = ACTIONS(650), [anon_sym_match] = ACTIONS(763), @@ -26938,69 +27419,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(775), }, - [STATE(162)] = { - [sym_list_splat_pattern] = STATE(1320), - [sym_primary_expression] = STATE(1056), - [sym_binary_operator] = STATE(1331), - [sym_unary_operator] = STATE(1331), - [sym_attribute] = STATE(1331), - [sym_subscript] = STATE(1331), - [sym_call] = STATE(1331), - [sym_list] = STATE(1331), - [sym_set] = STATE(1331), - [sym_tuple] = STATE(1331), - [sym_dictionary] = STATE(1331), - [sym_list_comprehension] = STATE(1331), - [sym_dictionary_comprehension] = STATE(1331), - [sym_set_comprehension] = STATE(1331), - [sym_generator_expression] = STATE(1331), - [sym_parenthesized_expression] = STATE(1331), - [sym_concatenated_string] = STATE(1331), - [sym_string] = STATE(985), - [sym_await] = STATE(1331), + [STATE(166)] = { + [sym_list_splat_pattern] = STATE(1387), + [sym_primary_expression] = STATE(1132), + [sym_binary_operator] = STATE(1390), + [sym_unary_operator] = STATE(1390), + [sym_attribute] = STATE(1390), + [sym_subscript] = STATE(1390), + [sym_call] = STATE(1390), + [sym_list] = STATE(1390), + [sym_set] = STATE(1390), + [sym_tuple] = STATE(1390), + [sym_dictionary] = STATE(1390), + [sym_list_comprehension] = STATE(1390), + [sym_dictionary_comprehension] = STATE(1390), + [sym_set_comprehension] = STATE(1390), + [sym_generator_expression] = STATE(1390), + [sym_parenthesized_expression] = STATE(1390), + [sym_concatenated_string] = STATE(1390), + [sym_string] = STATE(1037), + [sym_await] = STATE(1390), [sym_identifier] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(265), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_RPAREN] = ACTIONS(257), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(781), [anon_sym_print] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), [anon_sym_match] = ACTIONS(785), [anon_sym_async] = ACTIONS(783), - [anon_sym_for] = ACTIONS(267), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_for] = ACTIONS(259), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(783), [anon_sym_type] = ACTIONS(785), [anon_sym_EQ] = ACTIONS(787), [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(793), [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(791), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(795), [sym_integer] = ACTIONS(777), [sym_float] = ACTIONS(795), @@ -27012,68 +27493,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(799), }, - [STATE(163)] = { - [sym_list_splat_pattern] = STATE(1320), - [sym_primary_expression] = STATE(1056), - [sym_binary_operator] = STATE(1331), - [sym_unary_operator] = STATE(1331), - [sym_attribute] = STATE(1331), - [sym_subscript] = STATE(1331), - [sym_call] = STATE(1331), - [sym_list] = STATE(1331), - [sym_set] = STATE(1331), - [sym_tuple] = STATE(1331), - [sym_dictionary] = STATE(1331), - [sym_list_comprehension] = STATE(1331), - [sym_dictionary_comprehension] = STATE(1331), - [sym_set_comprehension] = STATE(1331), - [sym_generator_expression] = STATE(1331), - [sym_parenthesized_expression] = STATE(1331), - [sym_concatenated_string] = STATE(1331), - [sym_string] = STATE(985), - [sym_await] = STATE(1331), + [STATE(167)] = { + [sym_list_splat_pattern] = STATE(1387), + [sym_primary_expression] = STATE(1132), + [sym_binary_operator] = STATE(1390), + [sym_unary_operator] = STATE(1390), + [sym_attribute] = STATE(1390), + [sym_subscript] = STATE(1390), + [sym_call] = STATE(1390), + [sym_list] = STATE(1390), + [sym_set] = STATE(1390), + [sym_tuple] = STATE(1390), + [sym_dictionary] = STATE(1390), + [sym_list_comprehension] = STATE(1390), + [sym_dictionary_comprehension] = STATE(1390), + [sym_set_comprehension] = STATE(1390), + [sym_generator_expression] = STATE(1390), + [sym_parenthesized_expression] = STATE(1390), + [sym_concatenated_string] = STATE(1390), + [sym_string] = STATE(1037), + [sym_await] = STATE(1390), [sym_identifier] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(265), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_RPAREN] = ACTIONS(257), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(781), [anon_sym_print] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), [anon_sym_match] = ACTIONS(785), [anon_sym_async] = ACTIONS(783), - [anon_sym_for] = ACTIONS(267), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_for] = ACTIONS(259), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(783), [anon_sym_type] = ACTIONS(785), [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(793), [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(791), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(795), [sym_integer] = ACTIONS(777), [sym_float] = ACTIONS(795), @@ -27085,26 +27566,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(799), }, - [STATE(164)] = { - [sym_list_splat_pattern] = STATE(1301), - [sym_primary_expression] = STATE(1071), - [sym_binary_operator] = STATE(1381), - [sym_unary_operator] = STATE(1381), - [sym_attribute] = STATE(1381), - [sym_subscript] = STATE(1381), - [sym_call] = STATE(1381), - [sym_list] = STATE(1381), - [sym_set] = STATE(1381), - [sym_tuple] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_set_comprehension] = STATE(1381), - [sym_generator_expression] = STATE(1381), - [sym_parenthesized_expression] = STATE(1381), - [sym_concatenated_string] = STATE(1381), - [sym_string] = STATE(995), - [sym_await] = STATE(1381), + [STATE(168)] = { + [sym_list_splat_pattern] = STATE(1387), + [sym_primary_expression] = STATE(1132), + [sym_binary_operator] = STATE(1390), + [sym_unary_operator] = STATE(1390), + [sym_attribute] = STATE(1390), + [sym_subscript] = STATE(1390), + [sym_call] = STATE(1390), + [sym_list] = STATE(1390), + [sym_set] = STATE(1390), + [sym_tuple] = STATE(1390), + [sym_dictionary] = STATE(1390), + [sym_list_comprehension] = STATE(1390), + [sym_dictionary_comprehension] = STATE(1390), + [sym_set_comprehension] = STATE(1390), + [sym_generator_expression] = STATE(1390), + [sym_parenthesized_expression] = STATE(1390), + [sym_concatenated_string] = STATE(1390), + [sym_string] = STATE(1037), + [sym_await] = STATE(1390), + [sym_identifier] = ACTIONS(777), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(264), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_print] = ACTIONS(783), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_match] = ACTIONS(785), + [anon_sym_async] = ACTIONS(783), + [anon_sym_for] = ACTIONS(259), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), + [anon_sym_exec] = ACTIONS(783), + [anon_sym_type] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_AT] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(791), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [sym_ellipsis] = ACTIONS(795), + [sym_integer] = ACTIONS(777), + [sym_float] = ACTIONS(795), + [anon_sym_await] = ACTIONS(797), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_none] = ACTIONS(777), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(799), + }, + [STATE(169)] = { + [sym_list_splat_pattern] = STATE(1348), + [sym_primary_expression] = STATE(1099), + [sym_binary_operator] = STATE(1299), + [sym_unary_operator] = STATE(1299), + [sym_attribute] = STATE(1299), + [sym_subscript] = STATE(1299), + [sym_call] = STATE(1299), + [sym_list] = STATE(1299), + [sym_set] = STATE(1299), + [sym_tuple] = STATE(1299), + [sym_dictionary] = STATE(1299), + [sym_list_comprehension] = STATE(1299), + [sym_dictionary_comprehension] = STATE(1299), + [sym_set_comprehension] = STATE(1299), + [sym_generator_expression] = STATE(1299), + [sym_parenthesized_expression] = STATE(1299), + [sym_concatenated_string] = STATE(1299), + [sym_string] = STATE(1026), + [sym_await] = STATE(1299), [sym_identifier] = ACTIONS(711), [anon_sym_DOT] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(713), @@ -27114,7 +27668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(715), [anon_sym_print] = ACTIONS(717), [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_COLON_EQ] = ACTIONS(280), + [anon_sym_COLON_EQ] = ACTIONS(272), [anon_sym_if] = ACTIONS(645), [anon_sym_match] = ACTIONS(719), [anon_sym_async] = ACTIONS(717), @@ -27158,433 +27712,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(731), }, - [STATE(165)] = { - [sym_list_splat_pattern] = STATE(1283), - [sym_primary_expression] = STATE(991), - [sym_binary_operator] = STATE(1280), - [sym_unary_operator] = STATE(1280), - [sym_attribute] = STATE(1280), - [sym_subscript] = STATE(1280), - [sym_call] = STATE(1280), - [sym_list] = STATE(1280), - [sym_set] = STATE(1280), - [sym_tuple] = STATE(1280), - [sym_dictionary] = STATE(1280), - [sym_list_comprehension] = STATE(1280), - [sym_dictionary_comprehension] = STATE(1280), - [sym_set_comprehension] = STATE(1280), - [sym_generator_expression] = STATE(1280), - [sym_parenthesized_expression] = STATE(1280), - [sym_concatenated_string] = STATE(1280), - [sym_string] = STATE(969), - [sym_await] = STATE(1280), - [sym_identifier] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(693), - [anon_sym_print] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_match] = ACTIONS(697), - [anon_sym_async] = ACTIONS(695), - [anon_sym_for] = ACTIONS(267), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), - [anon_sym_exec] = ACTIONS(695), - [anon_sym_type] = ACTIONS(697), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_RBRACK] = ACTIONS(272), - [anon_sym_AT] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(265), - [anon_sym_LBRACE] = ACTIONS(703), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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(701), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [sym_ellipsis] = ACTIONS(705), - [sym_integer] = ACTIONS(689), - [sym_float] = ACTIONS(705), - [anon_sym_await] = ACTIONS(707), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_none] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(709), - }, - [STATE(166)] = { - [sym_list_splat_pattern] = STATE(1372), - [sym_primary_expression] = STATE(1116), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(312), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(265), - [anon_sym_else] = ACTIONS(267), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(304), - [anon_sym_PIPE] = ACTIONS(265), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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(304), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(316), - }, - [STATE(167)] = { - [sym_list_splat_pattern] = STATE(1320), - [sym_primary_expression] = STATE(1056), - [sym_binary_operator] = STATE(1331), - [sym_unary_operator] = STATE(1331), - [sym_attribute] = STATE(1331), - [sym_subscript] = STATE(1331), - [sym_call] = STATE(1331), - [sym_list] = STATE(1331), - [sym_set] = STATE(1331), - [sym_tuple] = STATE(1331), - [sym_dictionary] = STATE(1331), - [sym_list_comprehension] = STATE(1331), - [sym_dictionary_comprehension] = STATE(1331), - [sym_set_comprehension] = STATE(1331), - [sym_generator_expression] = STATE(1331), - [sym_parenthesized_expression] = STATE(1331), - [sym_concatenated_string] = STATE(1331), - [sym_string] = STATE(985), - [sym_await] = STATE(1331), - [sym_identifier] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(272), - [anon_sym_COMMA] = ACTIONS(272), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_print] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_match] = ACTIONS(785), - [anon_sym_async] = ACTIONS(783), - [anon_sym_for] = ACTIONS(267), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), - [anon_sym_exec] = ACTIONS(783), - [anon_sym_type] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(265), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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(791), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [sym_ellipsis] = ACTIONS(795), - [sym_integer] = ACTIONS(777), - [sym_float] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_none] = ACTIONS(777), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(799), - }, - [STATE(168)] = { - [sym_list_splat_pattern] = STATE(1301), - [sym_primary_expression] = STATE(1071), - [sym_binary_operator] = STATE(1381), - [sym_unary_operator] = STATE(1381), - [sym_attribute] = STATE(1381), - [sym_subscript] = STATE(1381), - [sym_call] = STATE(1381), - [sym_list] = STATE(1381), - [sym_set] = STATE(1381), - [sym_tuple] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_set_comprehension] = STATE(1381), - [sym_generator_expression] = STATE(1381), - [sym_parenthesized_expression] = STATE(1381), - [sym_concatenated_string] = STATE(1381), - [sym_string] = STATE(995), - [sym_await] = STATE(1381), - [sym_identifier] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(265), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(715), - [anon_sym_print] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_match] = ACTIONS(719), - [anon_sym_async] = ACTIONS(717), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), - [anon_sym_exec] = ACTIONS(717), - [anon_sym_type] = ACTIONS(719), - [anon_sym_EQ] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(265), - [anon_sym_LBRACE] = ACTIONS(725), - [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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(723), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [sym_ellipsis] = ACTIONS(727), - [sym_integer] = ACTIONS(711), - [sym_float] = ACTIONS(727), - [anon_sym_await] = ACTIONS(729), - [sym_true] = ACTIONS(711), - [sym_false] = ACTIONS(711), - [sym_none] = ACTIONS(711), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(731), - }, - [STATE(169)] = { - [sym_list_splat_pattern] = STATE(1372), - [sym_primary_expression] = STATE(1116), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(312), - [anon_sym_SEMI] = ACTIONS(308), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(308), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(308), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_STAR_STAR] = ACTIONS(267), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PERCENT] = ACTIONS(267), - [anon_sym_SLASH_SLASH] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_LT_LT] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS_EQ] = ACTIONS(308), - [anon_sym_DASH_EQ] = ACTIONS(308), - [anon_sym_STAR_EQ] = ACTIONS(308), - [anon_sym_SLASH_EQ] = ACTIONS(308), - [anon_sym_AT_EQ] = ACTIONS(308), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), - [anon_sym_PERCENT_EQ] = ACTIONS(308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(308), - [anon_sym_GT_GT_EQ] = ACTIONS(308), - [anon_sym_LT_LT_EQ] = ACTIONS(308), - [anon_sym_AMP_EQ] = ACTIONS(308), - [anon_sym_CARET_EQ] = ACTIONS(308), - [anon_sym_PIPE_EQ] = ACTIONS(308), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), - [sym_comment] = ACTIONS(3), - [sym_line_continuation] = ACTIONS(3), - [sym__newline] = ACTIONS(308), - [sym_string_start] = ACTIONS(316), - }, [STATE(170)] = { - [sym_list_splat_pattern] = STATE(1259), - [sym_primary_expression] = STATE(1014), - [sym_binary_operator] = STATE(1180), - [sym_unary_operator] = STATE(1180), - [sym_attribute] = STATE(1180), - [sym_subscript] = STATE(1180), - [sym_call] = STATE(1180), - [sym_list] = STATE(1180), - [sym_set] = STATE(1180), - [sym_tuple] = STATE(1180), - [sym_dictionary] = STATE(1180), - [sym_list_comprehension] = STATE(1180), - [sym_dictionary_comprehension] = STATE(1180), - [sym_set_comprehension] = STATE(1180), - [sym_generator_expression] = STATE(1180), - [sym_parenthesized_expression] = STATE(1180), - [sym_concatenated_string] = STATE(1180), - [sym_string] = STATE(958), - [sym_await] = STATE(1180), + [sym_list_splat_pattern] = STATE(1228), + [sym_primary_expression] = STATE(994), + [sym_binary_operator] = STATE(1221), + [sym_unary_operator] = STATE(1221), + [sym_attribute] = STATE(1221), + [sym_subscript] = STATE(1221), + [sym_call] = STATE(1221), + [sym_list] = STATE(1221), + [sym_set] = STATE(1221), + [sym_tuple] = STATE(1221), + [sym_dictionary] = STATE(1221), + [sym_list_comprehension] = STATE(1221), + [sym_dictionary_comprehension] = STATE(1221), + [sym_set_comprehension] = STATE(1221), + [sym_generator_expression] = STATE(1221), + [sym_parenthesized_expression] = STATE(1221), + [sym_concatenated_string] = STATE(1221), + [sym_string] = STATE(971), + [sym_await] = STATE(1221), [sym_identifier] = ACTIONS(733), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(735), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(737), [anon_sym_print] = ACTIONS(739), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(257), [anon_sym_match] = ACTIONS(741), [anon_sym_async] = ACTIONS(739), - [anon_sym_for] = ACTIONS(267), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_for] = ACTIONS(259), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(739), [anon_sym_type] = ACTIONS(741), [anon_sym_LBRACK] = ACTIONS(743), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(745), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(747), - [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(257), [anon_sym_PLUS] = ACTIONS(745), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(745), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(749), [sym_integer] = ACTIONS(733), [sym_float] = ACTIONS(749), @@ -27597,67 +27786,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_start] = ACTIONS(753), }, [STATE(171)] = { - [sym_list_splat_pattern] = STATE(1283), - [sym_primary_expression] = STATE(991), - [sym_binary_operator] = STATE(1280), - [sym_unary_operator] = STATE(1280), - [sym_attribute] = STATE(1280), - [sym_subscript] = STATE(1280), - [sym_call] = STATE(1280), - [sym_list] = STATE(1280), - [sym_set] = STATE(1280), - [sym_tuple] = STATE(1280), - [sym_dictionary] = STATE(1280), - [sym_list_comprehension] = STATE(1280), - [sym_dictionary_comprehension] = STATE(1280), - [sym_set_comprehension] = STATE(1280), - [sym_generator_expression] = STATE(1280), - [sym_parenthesized_expression] = STATE(1280), - [sym_concatenated_string] = STATE(1280), - [sym_string] = STATE(969), - [sym_await] = STATE(1280), + [sym_list_splat_pattern] = STATE(1402), + [sym_primary_expression] = STATE(1048), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(304), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(257), + [anon_sym_else] = ACTIONS(259), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(259), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(308), + }, + [STATE(172)] = { + [sym_list_splat_pattern] = STATE(1165), + [sym_primary_expression] = STATE(1031), + [sym_binary_operator] = STATE(1143), + [sym_unary_operator] = STATE(1143), + [sym_attribute] = STATE(1143), + [sym_subscript] = STATE(1143), + [sym_call] = STATE(1143), + [sym_list] = STATE(1143), + [sym_set] = STATE(1143), + [sym_tuple] = STATE(1143), + [sym_dictionary] = STATE(1143), + [sym_list_comprehension] = STATE(1143), + [sym_dictionary_comprehension] = STATE(1143), + [sym_set_comprehension] = STATE(1143), + [sym_generator_expression] = STATE(1143), + [sym_parenthesized_expression] = STATE(1143), + [sym_concatenated_string] = STATE(1143), + [sym_string] = STATE(968), + [sym_await] = STATE(1143), [sym_identifier] = ACTIONS(689), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(691), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(693), [anon_sym_print] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(257), [anon_sym_match] = ACTIONS(697), [anon_sym_async] = ACTIONS(695), - [anon_sym_for] = ACTIONS(267), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_for] = ACTIONS(259), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(695), [anon_sym_type] = ACTIONS(697), [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_RBRACK] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_RBRACK] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(701), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(703), [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(705), [sym_integer] = ACTIONS(689), [sym_float] = ACTIONS(705), @@ -27669,100 +27931,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(709), }, - [STATE(172)] = { - [sym_list_splat_pattern] = STATE(1372), - [sym_primary_expression] = STATE(1116), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(312), - [anon_sym_DOT] = ACTIONS(645), + [STATE(173)] = { + [sym_list_splat_pattern] = STATE(1402), + [sym_primary_expression] = STATE(1048), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(304), + [anon_sym_SEMI] = ACTIONS(300), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(643), - [anon_sym_as] = ACTIONS(650), + [anon_sym_COMMA] = ACTIONS(300), [anon_sym_STAR] = ACTIONS(652), [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_if] = ACTIONS(650), - [anon_sym_COLON] = ACTIONS(643), - [anon_sym_else] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(300), [anon_sym_match] = ACTIONS(656), [anon_sym_async] = ACTIONS(654), - [anon_sym_in] = ACTIONS(650), - [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_STAR_STAR] = ACTIONS(259), [anon_sym_exec] = ACTIONS(654), [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ] = ACTIONS(300), [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(304), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(304), - [anon_sym_not] = ACTIONS(650), - [anon_sym_and] = ACTIONS(650), - [anon_sym_or] = ACTIONS(650), - [anon_sym_SLASH] = ACTIONS(645), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_SLASH_SLASH] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_is] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_LT_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_GT_EQ] = ACTIONS(643), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_SLASH_SLASH] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_PLUS_EQ] = ACTIONS(300), + [anon_sym_DASH_EQ] = ACTIONS(300), + [anon_sym_STAR_EQ] = ACTIONS(300), + [anon_sym_SLASH_EQ] = ACTIONS(300), + [anon_sym_AT_EQ] = ACTIONS(300), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), + [anon_sym_PERCENT_EQ] = ACTIONS(300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(300), + [anon_sym_GT_GT_EQ] = ACTIONS(300), + [anon_sym_LT_LT_EQ] = ACTIONS(300), + [anon_sym_AMP_EQ] = ACTIONS(300), + [anon_sym_CARET_EQ] = ACTIONS(300), + [anon_sym_PIPE_EQ] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(316), + [sym__newline] = ACTIONS(300), + [sym_string_start] = ACTIONS(308), }, - [STATE(173)] = { - [sym_list_splat_pattern] = STATE(1372), - [sym_primary_expression] = STATE(1116), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(312), + [STATE(174)] = { + [sym_list_splat_pattern] = STATE(1402), + [sym_primary_expression] = STATE(1048), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(304), [anon_sym_DOT] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(648), [anon_sym_COMMA] = ACTIONS(643), @@ -27782,10 +28044,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(658), [anon_sym_RBRACK] = ACTIONS(643), [anon_sym_AT] = ACTIONS(686), - [anon_sym_DASH] = ACTIONS(304), + [anon_sym_DASH] = ACTIONS(296), [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(296), [anon_sym_not] = ACTIONS(650), [anon_sym_and] = ACTIONS(650), [anon_sym_or] = ACTIONS(650), @@ -27795,7 +28057,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(686), [anon_sym_CARET] = ACTIONS(686), [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(296), [anon_sym_is] = ACTIONS(650), [anon_sym_LT] = ACTIONS(650), [anon_sym_LT_EQ] = ACTIONS(643), @@ -27804,79 +28066,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(643), [anon_sym_GT] = ACTIONS(650), [anon_sym_LT_GT] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(316), + [sym_string_start] = ACTIONS(308), }, - [STATE(174)] = { - [sym_list_splat_pattern] = STATE(1444), - [sym_primary_expression] = STATE(1202), - [sym_binary_operator] = STATE(1441), - [sym_unary_operator] = STATE(1441), - [sym_attribute] = STATE(1441), - [sym_subscript] = STATE(1441), - [sym_call] = STATE(1441), - [sym_list] = STATE(1441), - [sym_set] = STATE(1441), - [sym_tuple] = STATE(1441), - [sym_dictionary] = STATE(1441), - [sym_list_comprehension] = STATE(1441), - [sym_dictionary_comprehension] = STATE(1441), - [sym_set_comprehension] = STATE(1441), - [sym_generator_expression] = STATE(1441), - [sym_parenthesized_expression] = STATE(1441), - [sym_concatenated_string] = STATE(1441), - [sym_string] = STATE(1081), - [sym_await] = STATE(1441), + [STATE(175)] = { + [sym_list_splat_pattern] = STATE(1165), + [sym_primary_expression] = STATE(1031), + [sym_binary_operator] = STATE(1143), + [sym_unary_operator] = STATE(1143), + [sym_attribute] = STATE(1143), + [sym_subscript] = STATE(1143), + [sym_call] = STATE(1143), + [sym_list] = STATE(1143), + [sym_set] = STATE(1143), + [sym_tuple] = STATE(1143), + [sym_dictionary] = STATE(1143), + [sym_list_comprehension] = STATE(1143), + [sym_dictionary_comprehension] = STATE(1143), + [sym_set_comprehension] = STATE(1143), + [sym_generator_expression] = STATE(1143), + [sym_parenthesized_expression] = STATE(1143), + [sym_concatenated_string] = STATE(1143), + [sym_string] = STATE(968), + [sym_await] = STATE(1143), + [sym_identifier] = ACTIONS(689), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(691), + [anon_sym_COMMA] = ACTIONS(264), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(693), + [anon_sym_print] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_match] = ACTIONS(697), + [anon_sym_async] = ACTIONS(695), + [anon_sym_for] = ACTIONS(259), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), + [anon_sym_exec] = ACTIONS(695), + [anon_sym_type] = ACTIONS(697), + [anon_sym_LBRACK] = ACTIONS(699), + [anon_sym_RBRACK] = ACTIONS(264), + [anon_sym_AT] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(701), + [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(703), + [anon_sym_PLUS] = ACTIONS(701), + [anon_sym_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [sym_ellipsis] = ACTIONS(705), + [sym_integer] = ACTIONS(689), + [sym_float] = ACTIONS(705), + [anon_sym_await] = ACTIONS(707), + [sym_true] = ACTIONS(689), + [sym_false] = ACTIONS(689), + [sym_none] = ACTIONS(689), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(709), + }, + [STATE(176)] = { + [sym_list_splat_pattern] = STATE(1446), + [sym_primary_expression] = STATE(1237), + [sym_binary_operator] = STATE(1449), + [sym_unary_operator] = STATE(1449), + [sym_attribute] = STATE(1449), + [sym_subscript] = STATE(1449), + [sym_call] = STATE(1449), + [sym_list] = STATE(1449), + [sym_set] = STATE(1449), + [sym_tuple] = STATE(1449), + [sym_dictionary] = STATE(1449), + [sym_list_comprehension] = STATE(1449), + [sym_dictionary_comprehension] = STATE(1449), + [sym_set_comprehension] = STATE(1449), + [sym_generator_expression] = STATE(1449), + [sym_parenthesized_expression] = STATE(1449), + [sym_concatenated_string] = STATE(1449), + [sym_string] = STATE(1111), + [sym_await] = STATE(1449), [sym_identifier] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(759), [anon_sym_print] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_COLON_EQ] = ACTIONS(280), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(267), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(259), [anon_sym_match] = ACTIONS(763), [anon_sym_async] = ACTIONS(761), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(761), [anon_sym_type] = ACTIONS(763), [anon_sym_LBRACK] = ACTIONS(765), - [anon_sym_RBRACK] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_RBRACK] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(769), [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(771), [sym_integer] = ACTIONS(755), [sym_float] = ACTIONS(771), @@ -27888,68 +28223,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(775), }, - [STATE(175)] = { - [sym_list_splat_pattern] = STATE(1301), - [sym_primary_expression] = STATE(1071), - [sym_binary_operator] = STATE(1381), - [sym_unary_operator] = STATE(1381), - [sym_attribute] = STATE(1381), - [sym_subscript] = STATE(1381), - [sym_call] = STATE(1381), - [sym_list] = STATE(1381), - [sym_set] = STATE(1381), - [sym_tuple] = STATE(1381), - [sym_dictionary] = STATE(1381), - [sym_list_comprehension] = STATE(1381), - [sym_dictionary_comprehension] = STATE(1381), - [sym_set_comprehension] = STATE(1381), - [sym_generator_expression] = STATE(1381), - [sym_parenthesized_expression] = STATE(1381), - [sym_concatenated_string] = STATE(1381), - [sym_string] = STATE(995), - [sym_await] = STATE(1381), + [STATE(177)] = { + [sym_list_splat_pattern] = STATE(1348), + [sym_primary_expression] = STATE(1099), + [sym_binary_operator] = STATE(1299), + [sym_unary_operator] = STATE(1299), + [sym_attribute] = STATE(1299), + [sym_subscript] = STATE(1299), + [sym_call] = STATE(1299), + [sym_list] = STATE(1299), + [sym_set] = STATE(1299), + [sym_tuple] = STATE(1299), + [sym_dictionary] = STATE(1299), + [sym_list_comprehension] = STATE(1299), + [sym_dictionary_comprehension] = STATE(1299), + [sym_set_comprehension] = STATE(1299), + [sym_generator_expression] = STATE(1299), + [sym_parenthesized_expression] = STATE(1299), + [sym_concatenated_string] = STATE(1299), + [sym_string] = STATE(1026), + [sym_await] = STATE(1299), [sym_identifier] = ACTIONS(711), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(265), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_RPAREN] = ACTIONS(257), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(715), [anon_sym_print] = ACTIONS(717), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(257), [anon_sym_match] = ACTIONS(719), [anon_sym_async] = ACTIONS(717), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(717), [anon_sym_type] = ACTIONS(719), - [anon_sym_EQ] = ACTIONS(267), + [anon_sym_EQ] = ACTIONS(259), [anon_sym_LBRACK] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(723), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(725), [anon_sym_PLUS] = ACTIONS(723), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(723), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(727), [sym_integer] = ACTIONS(711), [sym_float] = ACTIONS(727), @@ -27961,139 +28296,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(731), }, - [STATE(176)] = { - [sym_list_splat_pattern] = STATE(1320), - [sym_primary_expression] = STATE(1056), - [sym_binary_operator] = STATE(1331), - [sym_unary_operator] = STATE(1331), - [sym_attribute] = STATE(1331), - [sym_subscript] = STATE(1331), - [sym_call] = STATE(1331), - [sym_list] = STATE(1331), - [sym_set] = STATE(1331), - [sym_tuple] = STATE(1331), - [sym_dictionary] = STATE(1331), - [sym_list_comprehension] = STATE(1331), - [sym_dictionary_comprehension] = STATE(1331), - [sym_set_comprehension] = STATE(1331), - [sym_generator_expression] = STATE(1331), - [sym_parenthesized_expression] = STATE(1331), - [sym_concatenated_string] = STATE(1331), - [sym_string] = STATE(985), - [sym_await] = STATE(1331), - [sym_identifier] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(265), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_print] = ACTIONS(783), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_match] = ACTIONS(785), - [anon_sym_async] = ACTIONS(783), - [anon_sym_for] = ACTIONS(267), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), - [anon_sym_exec] = ACTIONS(783), - [anon_sym_type] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(265), - [anon_sym_DASH] = ACTIONS(791), - [anon_sym_PIPE] = ACTIONS(265), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(791), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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(791), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), - [sym_ellipsis] = ACTIONS(795), - [sym_integer] = ACTIONS(777), - [sym_float] = ACTIONS(795), - [anon_sym_await] = ACTIONS(797), - [sym_true] = ACTIONS(777), - [sym_false] = ACTIONS(777), - [sym_none] = ACTIONS(777), + [STATE(178)] = { + [sym_list_splat_pattern] = STATE(1402), + [sym_primary_expression] = STATE(1048), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(304), + [anon_sym_DOT] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(643), + [anon_sym_as] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(686), + [anon_sym_if] = ACTIONS(650), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_else] = ACTIONS(650), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_in] = ACTIONS(650), + [anon_sym_STAR_STAR] = ACTIONS(686), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(686), + [anon_sym_DASH] = ACTIONS(296), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(296), + [anon_sym_not] = ACTIONS(650), + [anon_sym_and] = ACTIONS(650), + [anon_sym_or] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(645), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_SLASH_SLASH] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_is] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_LT_EQ] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(643), + [anon_sym_BANG_EQ] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(643), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT_GT] = ACTIONS(643), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(799), + [sym_string_start] = ACTIONS(308), }, - [STATE(177)] = { - [sym_list_splat_pattern] = STATE(1444), - [sym_primary_expression] = STATE(1202), - [sym_binary_operator] = STATE(1441), - [sym_unary_operator] = STATE(1441), - [sym_attribute] = STATE(1441), - [sym_subscript] = STATE(1441), - [sym_call] = STATE(1441), - [sym_list] = STATE(1441), - [sym_set] = STATE(1441), - [sym_tuple] = STATE(1441), - [sym_dictionary] = STATE(1441), - [sym_list_comprehension] = STATE(1441), - [sym_dictionary_comprehension] = STATE(1441), - [sym_set_comprehension] = STATE(1441), - [sym_generator_expression] = STATE(1441), - [sym_parenthesized_expression] = STATE(1441), - [sym_concatenated_string] = STATE(1441), - [sym_string] = STATE(1081), - [sym_await] = STATE(1441), + [STATE(179)] = { + [sym_list_splat_pattern] = STATE(1348), + [sym_primary_expression] = STATE(1099), + [sym_binary_operator] = STATE(1299), + [sym_unary_operator] = STATE(1299), + [sym_attribute] = STATE(1299), + [sym_subscript] = STATE(1299), + [sym_call] = STATE(1299), + [sym_list] = STATE(1299), + [sym_set] = STATE(1299), + [sym_tuple] = STATE(1299), + [sym_dictionary] = STATE(1299), + [sym_list_comprehension] = STATE(1299), + [sym_dictionary_comprehension] = STATE(1299), + [sym_set_comprehension] = STATE(1299), + [sym_generator_expression] = STATE(1299), + [sym_parenthesized_expression] = STATE(1299), + [sym_concatenated_string] = STATE(1299), + [sym_string] = STATE(1026), + [sym_await] = STATE(1299), + [sym_identifier] = ACTIONS(711), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(257), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(715), + [anon_sym_print] = ACTIONS(717), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_COLON_EQ] = ACTIONS(272), + [anon_sym_if] = ACTIONS(259), + [anon_sym_match] = ACTIONS(719), + [anon_sym_async] = ACTIONS(717), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), + [anon_sym_exec] = ACTIONS(717), + [anon_sym_type] = ACTIONS(719), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_AT] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(723), + [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(723), + [anon_sym_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(723), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [sym_ellipsis] = ACTIONS(727), + [sym_integer] = ACTIONS(711), + [sym_float] = ACTIONS(727), + [anon_sym_await] = ACTIONS(729), + [sym_true] = ACTIONS(711), + [sym_false] = ACTIONS(711), + [sym_none] = ACTIONS(711), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(731), + }, + [STATE(180)] = { + [sym_list_splat_pattern] = STATE(1446), + [sym_primary_expression] = STATE(1237), + [sym_binary_operator] = STATE(1449), + [sym_unary_operator] = STATE(1449), + [sym_attribute] = STATE(1449), + [sym_subscript] = STATE(1449), + [sym_call] = STATE(1449), + [sym_list] = STATE(1449), + [sym_set] = STATE(1449), + [sym_tuple] = STATE(1449), + [sym_dictionary] = STATE(1449), + [sym_list_comprehension] = STATE(1449), + [sym_dictionary_comprehension] = STATE(1449), + [sym_set_comprehension] = STATE(1449), + [sym_generator_expression] = STATE(1449), + [sym_parenthesized_expression] = STATE(1449), + [sym_concatenated_string] = STATE(1449), + [sym_string] = STATE(1111), + [sym_await] = STATE(1449), [sym_identifier] = ACTIONS(755), - [anon_sym_DOT] = ACTIONS(267), + [anon_sym_DOT] = ACTIONS(259), [anon_sym_LPAREN] = ACTIONS(757), - [anon_sym_COMMA] = ACTIONS(265), - [anon_sym_as] = ACTIONS(267), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(759), [anon_sym_print] = ACTIONS(761), - [anon_sym_GT_GT] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_if] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(257), [anon_sym_match] = ACTIONS(763), [anon_sym_async] = ACTIONS(761), - [anon_sym_in] = ACTIONS(267), - [anon_sym_STAR_STAR] = ACTIONS(265), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), [anon_sym_exec] = ACTIONS(761), [anon_sym_type] = ACTIONS(763), [anon_sym_LBRACK] = ACTIONS(765), - [anon_sym_RBRACK] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(265), + [anon_sym_RBRACK] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(257), [anon_sym_DASH] = ACTIONS(767), - [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(769), [anon_sym_PLUS] = ACTIONS(767), - [anon_sym_not] = ACTIONS(267), - [anon_sym_and] = ACTIONS(267), - [anon_sym_or] = ACTIONS(267), - [anon_sym_SLASH] = ACTIONS(267), - [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_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), [anon_sym_TILDE] = ACTIONS(767), - [anon_sym_is] = ACTIONS(267), - [anon_sym_LT] = ACTIONS(267), - [anon_sym_LT_EQ] = ACTIONS(265), - [anon_sym_EQ_EQ] = ACTIONS(265), - [anon_sym_BANG_EQ] = ACTIONS(265), - [anon_sym_GT_EQ] = ACTIONS(265), - [anon_sym_GT] = ACTIONS(267), - [anon_sym_LT_GT] = ACTIONS(265), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), [sym_ellipsis] = ACTIONS(771), [sym_integer] = ACTIONS(755), [sym_float] = ACTIONS(771), @@ -28105,98 +28514,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_continuation] = ACTIONS(3), [sym_string_start] = ACTIONS(775), }, - [STATE(178)] = { - [sym_list_splat_pattern] = STATE(1372), - [sym_primary_expression] = STATE(1116), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(312), - [anon_sym_DOT] = ACTIONS(267), - [anon_sym_LPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(308), - [anon_sym_STAR] = ACTIONS(652), - [anon_sym_print] = ACTIONS(654), - [anon_sym_GT_GT] = ACTIONS(267), - [anon_sym_COLON] = ACTIONS(308), - [anon_sym_match] = ACTIONS(656), - [anon_sym_async] = ACTIONS(654), - [anon_sym_STAR_STAR] = ACTIONS(267), - [anon_sym_exec] = ACTIONS(654), - [anon_sym_type] = ACTIONS(656), - [anon_sym_EQ] = ACTIONS(308), - [anon_sym_LBRACK] = ACTIONS(658), - [anon_sym_AT] = ACTIONS(267), - [anon_sym_DASH] = ACTIONS(660), - [anon_sym_PIPE] = ACTIONS(267), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_PLUS] = ACTIONS(660), - [anon_sym_SLASH] = ACTIONS(267), - [anon_sym_PERCENT] = ACTIONS(267), - [anon_sym_SLASH_SLASH] = ACTIONS(267), - [anon_sym_AMP] = ACTIONS(267), - [anon_sym_CARET] = ACTIONS(267), - [anon_sym_LT_LT] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(304), - [anon_sym_PLUS_EQ] = ACTIONS(308), - [anon_sym_DASH_EQ] = ACTIONS(308), - [anon_sym_STAR_EQ] = ACTIONS(308), - [anon_sym_SLASH_EQ] = ACTIONS(308), - [anon_sym_AT_EQ] = ACTIONS(308), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(308), - [anon_sym_PERCENT_EQ] = ACTIONS(308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(308), - [anon_sym_GT_GT_EQ] = ACTIONS(308), - [anon_sym_LT_LT_EQ] = ACTIONS(308), - [anon_sym_AMP_EQ] = ACTIONS(308), - [anon_sym_CARET_EQ] = ACTIONS(308), - [anon_sym_PIPE_EQ] = ACTIONS(308), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), - [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), + [STATE(181)] = { + [sym_list_splat_pattern] = STATE(1387), + [sym_primary_expression] = STATE(1132), + [sym_binary_operator] = STATE(1390), + [sym_unary_operator] = STATE(1390), + [sym_attribute] = STATE(1390), + [sym_subscript] = STATE(1390), + [sym_call] = STATE(1390), + [sym_list] = STATE(1390), + [sym_set] = STATE(1390), + [sym_tuple] = STATE(1390), + [sym_dictionary] = STATE(1390), + [sym_list_comprehension] = STATE(1390), + [sym_dictionary_comprehension] = STATE(1390), + [sym_set_comprehension] = STATE(1390), + [sym_generator_expression] = STATE(1390), + [sym_parenthesized_expression] = STATE(1390), + [sym_concatenated_string] = STATE(1390), + [sym_string] = STATE(1037), + [sym_await] = STATE(1390), + [sym_identifier] = ACTIONS(777), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(257), + [anon_sym_COMMA] = ACTIONS(257), + [anon_sym_as] = ACTIONS(259), + [anon_sym_STAR] = ACTIONS(781), + [anon_sym_print] = ACTIONS(783), + [anon_sym_GT_GT] = ACTIONS(257), + [anon_sym_if] = ACTIONS(259), + [anon_sym_match] = ACTIONS(785), + [anon_sym_async] = ACTIONS(783), + [anon_sym_for] = ACTIONS(259), + [anon_sym_in] = ACTIONS(259), + [anon_sym_STAR_STAR] = ACTIONS(257), + [anon_sym_exec] = ACTIONS(783), + [anon_sym_type] = ACTIONS(785), + [anon_sym_LBRACK] = ACTIONS(789), + [anon_sym_AT] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(791), + [anon_sym_PIPE] = ACTIONS(257), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(791), + [anon_sym_not] = ACTIONS(259), + [anon_sym_and] = ACTIONS(259), + [anon_sym_or] = ACTIONS(259), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(257), + [anon_sym_SLASH_SLASH] = ACTIONS(257), + [anon_sym_AMP] = ACTIONS(257), + [anon_sym_CARET] = ACTIONS(257), + [anon_sym_LT_LT] = ACTIONS(257), + [anon_sym_TILDE] = ACTIONS(791), + [anon_sym_is] = ACTIONS(259), + [anon_sym_LT] = ACTIONS(259), + [anon_sym_LT_EQ] = ACTIONS(257), + [anon_sym_EQ_EQ] = ACTIONS(257), + [anon_sym_BANG_EQ] = ACTIONS(257), + [anon_sym_GT_EQ] = ACTIONS(257), + [anon_sym_GT] = ACTIONS(259), + [anon_sym_LT_GT] = ACTIONS(257), + [sym_ellipsis] = ACTIONS(795), + [sym_integer] = ACTIONS(777), + [sym_float] = ACTIONS(795), + [anon_sym_await] = ACTIONS(797), + [sym_true] = ACTIONS(777), + [sym_false] = ACTIONS(777), + [sym_none] = ACTIONS(777), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(316), + [sym_string_start] = ACTIONS(799), }, - [STATE(179)] = { - [sym_list_splat_pattern] = STATE(1372), - [sym_primary_expression] = STATE(1116), - [sym_binary_operator] = STATE(1377), - [sym_unary_operator] = STATE(1377), - [sym_attribute] = STATE(1377), - [sym_subscript] = STATE(1377), - [sym_call] = STATE(1377), - [sym_list] = STATE(1377), - [sym_set] = STATE(1377), - [sym_tuple] = STATE(1377), - [sym_dictionary] = STATE(1377), - [sym_list_comprehension] = STATE(1377), - [sym_dictionary_comprehension] = STATE(1377), - [sym_set_comprehension] = STATE(1377), - [sym_generator_expression] = STATE(1377), - [sym_parenthesized_expression] = STATE(1377), - [sym_concatenated_string] = STATE(1377), - [sym_string] = STATE(984), - [sym_await] = STATE(1377), - [sym_identifier] = ACTIONS(312), + [STATE(182)] = { + [sym_list_splat_pattern] = STATE(1402), + [sym_primary_expression] = STATE(1048), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(304), [anon_sym_DOT] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(648), [anon_sym_COMMA] = ACTIONS(643), @@ -28214,7 +28624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(645), [anon_sym_DASH] = ACTIONS(660), [anon_sym_PIPE] = ACTIONS(645), - [anon_sym_LBRACE] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(291), [anon_sym_PLUS] = ACTIONS(660), [anon_sym_SLASH] = ACTIONS(645), [anon_sym_PERCENT] = ACTIONS(645), @@ -28222,7 +28632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(645), [anon_sym_CARET] = ACTIONS(645), [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_TILDE] = ACTIONS(296), [anon_sym_PLUS_EQ] = ACTIONS(643), [anon_sym_DASH_EQ] = ACTIONS(643), [anon_sym_STAR_EQ] = ACTIONS(643), @@ -28236,56 +28646,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(643), [anon_sym_CARET_EQ] = ACTIONS(643), [anon_sym_PIPE_EQ] = ACTIONS(643), - [sym_ellipsis] = ACTIONS(310), - [sym_integer] = ACTIONS(312), - [sym_float] = ACTIONS(310), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), [anon_sym_await] = ACTIONS(662), - [sym_true] = ACTIONS(312), - [sym_false] = ACTIONS(312), - [sym_none] = ACTIONS(312), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), [sym_comment] = ACTIONS(3), [sym_line_continuation] = ACTIONS(3), - [sym_string_start] = ACTIONS(316), - }, - [STATE(180)] = { - [sym_named_expression] = STATE(1710), - [sym__named_expression_lhs] = STATE(2716), - [sym_list_splat] = STATE(2280), - [sym_parenthesized_list_splat] = STATE(2280), - [sym_list_splat_pattern] = STATE(1283), - [sym_as_pattern] = STATE(1710), - [sym_expression] = STATE(1645), - [sym_primary_expression] = STATE(857), - [sym_not_operator] = STATE(1710), - [sym_boolean_operator] = STATE(1710), - [sym_binary_operator] = STATE(1280), - [sym_unary_operator] = STATE(1280), - [sym_comparison_operator] = STATE(1710), - [sym_lambda] = STATE(1710), - [sym_yield] = STATE(2280), - [sym_attribute] = STATE(1280), - [sym_subscript] = STATE(1280), - [sym_call] = STATE(1280), - [sym_type] = STATE(1931), - [sym_splat_type] = STATE(2046), - [sym_generic_type] = STATE(2046), - [sym_union_type] = STATE(2046), - [sym_constrained_type] = STATE(2046), - [sym_member_type] = STATE(2046), - [sym_list] = STATE(1280), - [sym_set] = STATE(1280), - [sym_tuple] = STATE(1280), - [sym_dictionary] = STATE(1280), - [sym_list_comprehension] = STATE(1280), - [sym_dictionary_comprehension] = STATE(1280), - [sym_set_comprehension] = STATE(1280), - [sym_generator_expression] = STATE(1280), - [sym_parenthesized_expression] = STATE(1280), - [sym__collection_elements] = STATE(2689), - [sym_conditional_expression] = STATE(1710), - [sym_concatenated_string] = STATE(1280), - [sym_string] = STATE(969), - [sym_await] = STATE(1280), + [sym_string_start] = ACTIONS(308), + }, + [STATE(183)] = { + [sym_list_splat_pattern] = STATE(1402), + [sym_primary_expression] = STATE(1048), + [sym_binary_operator] = STATE(1419), + [sym_unary_operator] = STATE(1419), + [sym_attribute] = STATE(1419), + [sym_subscript] = STATE(1419), + [sym_call] = STATE(1419), + [sym_list] = STATE(1419), + [sym_set] = STATE(1419), + [sym_tuple] = STATE(1419), + [sym_dictionary] = STATE(1419), + [sym_list_comprehension] = STATE(1419), + [sym_dictionary_comprehension] = STATE(1419), + [sym_set_comprehension] = STATE(1419), + [sym_generator_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_string] = STATE(990), + [sym_await] = STATE(1419), + [sym_identifier] = ACTIONS(304), + [anon_sym_DOT] = ACTIONS(259), + [anon_sym_LPAREN] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(300), + [anon_sym_STAR] = ACTIONS(652), + [anon_sym_print] = ACTIONS(654), + [anon_sym_GT_GT] = ACTIONS(259), + [anon_sym_COLON] = ACTIONS(300), + [anon_sym_match] = ACTIONS(656), + [anon_sym_async] = ACTIONS(654), + [anon_sym_STAR_STAR] = ACTIONS(259), + [anon_sym_exec] = ACTIONS(654), + [anon_sym_type] = ACTIONS(656), + [anon_sym_EQ] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(658), + [anon_sym_AT] = ACTIONS(259), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(259), + [anon_sym_LBRACE] = ACTIONS(291), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(259), + [anon_sym_PERCENT] = ACTIONS(259), + [anon_sym_SLASH_SLASH] = ACTIONS(259), + [anon_sym_AMP] = ACTIONS(259), + [anon_sym_CARET] = ACTIONS(259), + [anon_sym_LT_LT] = ACTIONS(259), + [anon_sym_TILDE] = ACTIONS(296), + [anon_sym_PLUS_EQ] = ACTIONS(300), + [anon_sym_DASH_EQ] = ACTIONS(300), + [anon_sym_STAR_EQ] = ACTIONS(300), + [anon_sym_SLASH_EQ] = ACTIONS(300), + [anon_sym_AT_EQ] = ACTIONS(300), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(300), + [anon_sym_PERCENT_EQ] = ACTIONS(300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(300), + [anon_sym_GT_GT_EQ] = ACTIONS(300), + [anon_sym_LT_LT_EQ] = ACTIONS(300), + [anon_sym_AMP_EQ] = ACTIONS(300), + [anon_sym_CARET_EQ] = ACTIONS(300), + [anon_sym_PIPE_EQ] = ACTIONS(300), + [sym_ellipsis] = ACTIONS(302), + [sym_integer] = ACTIONS(304), + [sym_float] = ACTIONS(302), + [anon_sym_await] = ACTIONS(662), + [sym_true] = ACTIONS(304), + [sym_false] = ACTIONS(304), + [sym_none] = ACTIONS(304), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(308), + }, + [STATE(184)] = { + [sym_named_expression] = STATE(1719), + [sym__named_expression_lhs] = STATE(2784), + [sym_list_splat] = STATE(2375), + [sym_parenthesized_list_splat] = STATE(2375), + [sym_list_splat_pattern] = STATE(1165), + [sym_as_pattern] = STATE(1719), + [sym_expression] = STATE(1655), + [sym_primary_expression] = STATE(879), + [sym_not_operator] = STATE(1719), + [sym_boolean_operator] = STATE(1719), + [sym_binary_operator] = STATE(1143), + [sym_unary_operator] = STATE(1143), + [sym_comparison_operator] = STATE(1719), + [sym_lambda] = STATE(1719), + [sym_yield] = STATE(2375), + [sym_attribute] = STATE(1143), + [sym_subscript] = STATE(1143), + [sym_call] = STATE(1143), + [sym_type] = STATE(1982), + [sym_splat_type] = STATE(2068), + [sym_generic_type] = STATE(2068), + [sym_union_type] = STATE(2068), + [sym_constrained_type] = STATE(2068), + [sym_member_type] = STATE(2068), + [sym_list] = STATE(1143), + [sym_set] = STATE(1143), + [sym_tuple] = STATE(1143), + [sym_dictionary] = STATE(1143), + [sym_list_comprehension] = STATE(1143), + [sym_dictionary_comprehension] = STATE(1143), + [sym_set_comprehension] = STATE(1143), + [sym_generator_expression] = STATE(1143), + [sym_parenthesized_expression] = STATE(1143), + [sym__collection_elements] = STATE(2630), + [sym_conditional_expression] = STATE(1719), + [sym_concatenated_string] = STATE(1143), + [sym_string] = STATE(968), + [sym_await] = STATE(1143), [sym_identifier] = ACTIONS(801), [anon_sym_LPAREN] = ACTIONS(803), [anon_sym_STAR] = ACTIONS(805), @@ -28339,19 +28820,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(81), 1, sym_string_start, - STATE(628), 1, + STATE(638), 1, sym_list_splat_pattern, - STATE(949), 1, + STATE(958), 1, sym_primary_expression, - STATE(954), 1, + STATE(960), 1, sym_string, - STATE(1623), 1, - sym_pattern, STATE(1634), 1, + sym_pattern, + STATE(1645), 1, sym_pattern_list, - STATE(1816), 1, + STATE(1796), 1, sym_expression, - STATE(2616), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -28359,20 +28840,20 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(405), 2, + ACTIONS(397), 2, anon_sym_match, anon_sym_type, - STATE(638), 2, + STATE(641), 2, sym_attribute, sym_subscript, - STATE(1626), 2, + STATE(1631), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(407), 3, + ACTIONS(399), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -28381,13 +28862,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2547), 5, + STATE(2567), 5, sym_expression_list, sym_assignment, sym_augmented_assignment, sym__right_hand_side, sym_yield, - STATE(1649), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28395,7 +28876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 14, + STATE(1091), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -28411,77 +28892,75 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [120] = 30, - ACTIONS(703), 1, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, ACTIONS(825), 1, sym_identifier, ACTIONS(827), 1, anon_sym_LPAREN, ACTIONS(829), 1, + anon_sym_COMMA, + ACTIONS(831), 1, anon_sym_STAR, - ACTIONS(835), 1, - anon_sym_LBRACK, ACTIONS(837), 1, - anon_sym_RBRACK, + anon_sym_STAR_STAR, ACTIONS(839), 1, + anon_sym_RBRACE, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(847), 1, anon_sym_await, - STATE(857), 1, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(971), 1, sym_string, - STATE(1341), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1661), 1, sym_expression, - STATE(2283), 1, - sym_pattern, - STATE(2648), 1, - sym__patterns, - STATE(2700), 1, - sym__collection_elements, - STATE(2716), 1, + STATE(1842), 1, + sym_pair, + STATE(2385), 1, + sym_dictionary_splat, + STATE(2677), 1, sym__named_expression_lhs, + STATE(2700), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - STATE(1352), 2, - sym_attribute, - sym_subscript, - STATE(2487), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(701), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2303), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(689), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28489,9 +28968,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 14, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -28515,33 +28996,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(821), 1, anon_sym_yield, - ACTIONS(825), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(859), 1, anon_sym_LBRACK, - ACTIONS(839), 1, - anon_sym_await, - ACTIONS(841), 1, + ACTIONS(861), 1, anon_sym_RBRACK, - STATE(857), 1, + ACTIONS(863), 1, + anon_sym_await, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1341), 1, + STATE(1339), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1720), 1, sym_expression, - STATE(2283), 1, + STATE(2376), 1, sym_pattern, - STATE(2648), 1, + STATE(2710), 1, sym__patterns, - STATE(2700), 1, + STATE(2746), 1, sym__collection_elements, - STATE(2716), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -28549,24 +29030,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(857), 2, anon_sym_match, anon_sym_type, - STATE(1352), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - STATE(2487), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(855), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2375), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -28575,7 +29056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28583,7 +29064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 14, + STATE(1143), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -28598,76 +29079,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [368] = 28, - ACTIONS(9), 1, + [368] = 31, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(865), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(869), 1, + anon_sym_RPAREN, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(73), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(628), 1, - sym_list_splat_pattern, - STATE(949), 1, + STATE(961), 1, sym_primary_expression, - STATE(954), 1, + STATE(1037), 1, sym_string, - STATE(1623), 1, - sym_pattern, - STATE(1634), 1, - sym_pattern_list, - STATE(1816), 1, + STATE(1392), 1, + sym_list_splat_pattern, + STATE(1711), 1, sym_expression, - STATE(2616), 1, + STATE(2248), 1, + sym_yield, + STATE(2332), 1, + sym_pattern, + STATE(2673), 1, sym__named_expression_lhs, + STATE(2727), 1, + sym__collection_elements, + STATE(2750), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(405), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(638), 2, + STATE(1393), 2, sym_attribute, sym_subscript, - STATE(1626), 2, + STATE(2309), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(407), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2485), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1649), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28675,7 +29159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 14, + STATE(1390), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -28690,79 +29174,78 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [488] = 31, - ACTIONS(793), 1, + [494] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, + anon_sym_lambda, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(849), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(847), 1, - anon_sym_RPAREN, - ACTIONS(849), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_LBRACK, - ACTIONS(857), 1, - anon_sym_not, ACTIONS(859), 1, - anon_sym_lambda, - ACTIONS(861), 1, - anon_sym_yield, + anon_sym_LBRACK, ACTIONS(863), 1, anon_sym_await, - STATE(950), 1, + ACTIONS(887), 1, + anon_sym_RBRACK, + STATE(879), 1, sym_primary_expression, - STATE(985), 1, + STATE(968), 1, sym_string, - STATE(1340), 1, + STATE(1339), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1700), 1, sym_expression, - STATE(2289), 1, + STATE(2376), 1, sym_pattern, - STATE(2316), 1, - sym_yield, - STATE(2615), 1, + STATE(2665), 1, + sym__collection_elements, + STATE(2767), 1, sym__patterns, - STATE(2698), 1, + STATE(2784), 1, sym__named_expression_lhs, - STATE(2737), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(857), 2, anon_sym_match, anon_sym_type, - STATE(1343), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - STATE(2287), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2546), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(791), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(855), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + STATE(2375), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28770,7 +29253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 14, + STATE(1143), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -28785,80 +29268,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [614] = 32, - ACTIONS(793), 1, + [618] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(831), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_LBRACK, - ACTIONS(857), 1, + ACTIONS(837), 1, + anon_sym_STAR_STAR, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(863), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(865), 1, - anon_sym_RPAREN, - STATE(950), 1, + ACTIONS(889), 1, + anon_sym_COMMA, + ACTIONS(891), 1, + anon_sym_RBRACE, + STATE(880), 1, sym_primary_expression, - STATE(985), 1, + STATE(971), 1, sym_string, - STATE(1340), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1663), 1, sym_expression, - STATE(2273), 1, - sym_yield, - STATE(2289), 1, - sym_pattern, - STATE(2466), 1, - sym_list_splat, - STATE(2467), 1, - sym_parenthesized_list_splat, - STATE(2698), 1, - sym__named_expression_lhs, - STATE(2743), 1, + STATE(1836), 1, + sym_pair, + STATE(2246), 1, + sym_dictionary_splat, + STATE(2632), 1, sym__collection_elements, - STATE(2756), 1, - sym__patterns, + STATE(2677), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - STATE(1343), 2, - sym_attribute, - sym_subscript, - STATE(2546), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(791), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + STATE(2303), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28866,9 +29345,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 14, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -28881,70 +29362,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [742] = 31, + [742] = 32, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(855), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(863), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(867), 1, + ACTIONS(893), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1340), 1, + STATE(1392), 1, sym_list_splat_pattern, - STATE(1665), 1, + STATE(1701), 1, sym_expression, - STATE(2289), 1, - sym_pattern, - STATE(2352), 1, + STATE(2272), 1, + sym_list_splat, + STATE(2273), 1, + sym_parenthesized_list_splat, + STATE(2293), 1, sym_yield, - STATE(2602), 1, + STATE(2332), 1, + sym_pattern, + STATE(2673), 1, + sym__named_expression_lhs, + STATE(2744), 1, sym__collection_elements, - STATE(2615), 1, + STATE(2780), 1, sym__patterns, - STATE(2698), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1343), 2, + STATE(1393), 2, sym_attribute, sym_subscript, - STATE(2287), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2546), 2, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -28953,7 +29435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -28961,7 +29443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 14, + STATE(1390), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -28976,78 +29458,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [868] = 30, - ACTIONS(703), 1, + [870] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(825), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(839), 1, + ACTIONS(879), 1, + anon_sym_not, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(869), 1, - anon_sym_RBRACK, - STATE(857), 1, + ACTIONS(895), 1, + anon_sym_RPAREN, + STATE(961), 1, sym_primary_expression, - STATE(969), 1, + STATE(1037), 1, sym_string, - STATE(1341), 1, + STATE(1392), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1723), 1, sym_expression, - STATE(2283), 1, + STATE(2332), 1, sym_pattern, - STATE(2648), 1, + STATE(2401), 1, + sym_yield, + STATE(2673), 1, + sym__named_expression_lhs, + STATE(2750), 1, sym__patterns, - STATE(2689), 1, + STATE(2776), 1, sym__collection_elements, - STATE(2716), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1352), 2, + STATE(1393), 2, sym_attribute, sym_subscript, - STATE(2487), 2, + STATE(2309), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(701), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(689), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29055,7 +29538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 14, + STATE(1390), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29070,76 +29553,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [992] = 30, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(871), 1, + [996] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(875), 1, - anon_sym_COMMA, - ACTIONS(877), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(883), 1, - anon_sym_STAR_STAR, - ACTIONS(885), 1, - anon_sym_RBRACE, - ACTIONS(887), 1, + ACTIONS(61), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(79), 1, anon_sym_await, - STATE(893), 1, - sym_primary_expression, + ACTIONS(81), 1, + sym_string_start, + STATE(638), 1, + sym_list_splat_pattern, STATE(958), 1, + sym_primary_expression, + STATE(960), 1, sym_string, - STATE(1259), 1, - sym_list_splat_pattern, - STATE(1655), 1, + STATE(1634), 1, + sym_pattern, + STATE(1645), 1, + sym_pattern_list, + STATE(1796), 1, sym_expression, - STATE(1856), 1, - sym_pair, - STATE(2234), 1, - sym_dictionary_splat, - STATE(2644), 1, - sym__collection_elements, - STATE(2645), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(397), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + STATE(641), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(399), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2372), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(733), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(2568), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29147,11 +29630,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1091), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29164,70 +29645,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1116] = 31, + [1116] = 32, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(855), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(863), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(895), 1, + ACTIONS(897), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1340), 1, + STATE(1392), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1685), 1, sym_expression, - STATE(2289), 1, + STATE(2332), 1, sym_pattern, - STATE(2476), 1, + STATE(2378), 1, + sym_list_splat, + STATE(2381), 1, + sym_parenthesized_list_splat, + STATE(2456), 1, sym_yield, - STATE(2615), 1, + STATE(2673), 1, + sym__named_expression_lhs, + STATE(2708), 1, sym__patterns, - STATE(2641), 1, + STATE(2717), 1, sym__collection_elements, - STATE(2698), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1343), 2, + STATE(1393), 2, sym_attribute, sym_subscript, - STATE(2287), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2546), 2, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -29236,7 +29718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29244,7 +29726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 14, + STATE(1390), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29259,76 +29741,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1242] = 30, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(871), 1, + [1244] = 28, + ACTIONS(9), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(15), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(17), 1, anon_sym_STAR, - ACTIONS(883), 1, - anon_sym_STAR_STAR, - ACTIONS(887), 1, + ACTIONS(61), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(73), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(79), 1, anon_sym_await, - ACTIONS(897), 1, - anon_sym_COMMA, - ACTIONS(899), 1, - anon_sym_RBRACE, - STATE(893), 1, - sym_primary_expression, + ACTIONS(81), 1, + sym_string_start, + STATE(638), 1, + sym_list_splat_pattern, STATE(958), 1, + sym_primary_expression, + STATE(960), 1, sym_string, - STATE(1259), 1, - sym_list_splat_pattern, - STATE(1650), 1, + STATE(1634), 1, + sym_pattern, + STATE(1645), 1, + sym_pattern_list, + STATE(1796), 1, sym_expression, - STATE(1829), 1, - sym_pair, - STATE(2284), 1, - sym_dictionary_splat, - STATE(2629), 1, - sym__collection_elements, - STATE(2645), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(397), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + STATE(641), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(399), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2372), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(733), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(2498), 5, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + sym_yield, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29336,11 +29818,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1091), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29353,46 +29833,46 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1366] = 31, + [1364] = 31, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(855), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(863), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(901), 1, + ACTIONS(899), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1340), 1, + STATE(1392), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1680), 1, sym_expression, - STATE(2289), 1, + STATE(2332), 1, sym_pattern, - STATE(2476), 1, + STATE(2356), 1, sym_yield, - STATE(2641), 1, - sym__collection_elements, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, - STATE(2709), 1, + STATE(2736), 1, + sym__collection_elements, + STATE(2750), 1, sym__patterns, ACTIONS(3), 2, sym_comment, @@ -29400,23 +29880,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1343), 2, + STATE(1393), 2, sym_attribute, sym_subscript, - STATE(2287), 2, + STATE(2309), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2546), 2, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -29425,7 +29905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29433,7 +29913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 14, + STATE(1390), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29448,7 +29928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1492] = 30, + [1490] = 30, ACTIONS(703), 1, anon_sym_LBRACE, ACTIONS(709), 1, @@ -29459,58 +29939,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(821), 1, anon_sym_yield, - ACTIONS(825), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(859), 1, anon_sym_LBRACK, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(903), 1, + ACTIONS(901), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1341), 1, + STATE(1339), 1, sym_list_splat_pattern, - STATE(1709), 1, + STATE(1705), 1, sym_expression, - STATE(2283), 1, + STATE(2376), 1, sym_pattern, - STATE(2678), 1, + STATE(2630), 1, + sym__collection_elements, + STATE(2710), 1, sym__patterns, - STATE(2716), 1, + STATE(2784), 1, sym__named_expression_lhs, - STATE(2775), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(857), 2, anon_sym_match, anon_sym_type, - STATE(1352), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - STATE(2487), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(855), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2375), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -29519,7 +29999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29527,7 +30007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 14, + STATE(1143), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29542,76 +30022,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1616] = 30, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [1614] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(883), 1, - anon_sym_STAR_STAR, - ACTIONS(887), 1, + ACTIONS(877), 1, + anon_sym_LBRACK, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(905), 1, - anon_sym_COMMA, - ACTIONS(907), 1, - anon_sym_RBRACE, - STATE(893), 1, + ACTIONS(903), 1, + anon_sym_RPAREN, + STATE(961), 1, sym_primary_expression, - STATE(958), 1, + STATE(1037), 1, sym_string, - STATE(1259), 1, + STATE(1392), 1, sym_list_splat_pattern, - STATE(1657), 1, + STATE(1711), 1, sym_expression, - STATE(1860), 1, - sym_pair, - STATE(2276), 1, - sym_dictionary_splat, - STATE(2645), 1, + STATE(2248), 1, + sym_yield, + STATE(2332), 1, + sym_pattern, + STATE(2673), 1, sym__named_expression_lhs, - STATE(2740), 1, + STATE(2708), 1, + sym__patterns, + STATE(2727), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + STATE(1393), 2, + sym_attribute, + sym_subscript, + STATE(2309), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2372), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(733), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29619,11 +30102,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1390), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -29647,58 +30128,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(821), 1, anon_sym_yield, - ACTIONS(825), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(859), 1, anon_sym_LBRACK, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(909), 1, + ACTIONS(905), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1341), 1, + STATE(1339), 1, sym_list_splat_pattern, - STATE(1705), 1, + STATE(1709), 1, sym_expression, - STATE(2283), 1, + STATE(2376), 1, sym_pattern, - STATE(2716), 1, - sym__named_expression_lhs, - STATE(2718), 1, - sym__patterns, - STATE(2719), 1, + STATE(2617), 1, sym__collection_elements, + STATE(2752), 1, + sym__patterns, + STATE(2784), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(857), 2, anon_sym_match, anon_sym_type, - STATE(1352), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - STATE(2487), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(855), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2375), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -29707,7 +30188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29715,7 +30196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 14, + STATE(1143), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29730,79 +30211,76 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1864] = 31, - ACTIONS(793), 1, + [1864] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(831), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_LBRACK, - ACTIONS(857), 1, + ACTIONS(837), 1, + anon_sym_STAR_STAR, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(863), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(911), 1, - anon_sym_RPAREN, - STATE(950), 1, + ACTIONS(907), 1, + anon_sym_COMMA, + ACTIONS(909), 1, + anon_sym_RBRACE, + STATE(880), 1, sym_primary_expression, - STATE(985), 1, + STATE(971), 1, sym_string, - STATE(1340), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1668), 1, sym_expression, - STATE(2289), 1, - sym_pattern, - STATE(2476), 1, - sym_yield, - STATE(2615), 1, - sym__patterns, - STATE(2641), 1, + STATE(1885), 1, + sym_pair, + STATE(2295), 1, + sym_dictionary_splat, + STATE(2627), 1, sym__collection_elements, - STATE(2698), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - STATE(1343), 2, - sym_attribute, - sym_subscript, - STATE(2287), 2, - sym_list_splat, - sym_parenthesized_list_splat, - STATE(2546), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(791), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + STATE(2303), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29810,9 +30288,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 14, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -29825,78 +30305,79 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [1990] = 30, - ACTIONS(703), 1, + [1988] = 31, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(825), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(839), 1, + ACTIONS(879), 1, + anon_sym_not, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(913), 1, - anon_sym_RBRACK, - STATE(857), 1, + ACTIONS(911), 1, + anon_sym_RPAREN, + STATE(961), 1, sym_primary_expression, - STATE(969), 1, + STATE(1037), 1, sym_string, - STATE(1341), 1, + STATE(1392), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1711), 1, sym_expression, - STATE(2283), 1, + STATE(2248), 1, + sym_yield, + STATE(2332), 1, sym_pattern, - STATE(2614), 1, + STATE(2673), 1, + sym__named_expression_lhs, + STATE(2727), 1, sym__collection_elements, - STATE(2648), 1, + STATE(2750), 1, sym__patterns, - STATE(2716), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1352), 2, + STATE(1393), 2, sym_attribute, sym_subscript, - STATE(2487), 2, + STATE(2309), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(701), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(689), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -29904,7 +30385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 14, + STATE(1390), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -29920,169 +30401,77 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [2114] = 30, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(873), 1, - anon_sym_LPAREN, - ACTIONS(877), 1, - anon_sym_STAR, - ACTIONS(883), 1, - anon_sym_STAR_STAR, - ACTIONS(887), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(821), 1, anon_sym_yield, - ACTIONS(893), 1, - anon_sym_await, - ACTIONS(915), 1, - anon_sym_COMMA, - ACTIONS(917), 1, - anon_sym_RBRACE, - STATE(893), 1, - sym_primary_expression, - STATE(958), 1, - sym_string, - STATE(1259), 1, - sym_list_splat_pattern, - STATE(1659), 1, - sym_expression, - STATE(1868), 1, - sym_pair, - STATE(2324), 1, - sym_dictionary_splat, - STATE(2645), 1, - sym__named_expression_lhs, - STATE(2683), 1, - sym__collection_elements, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(881), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(879), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - STATE(2372), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(733), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1754), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1180), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [2238] = 28, - ACTIONS(9), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(15), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(17), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(61), 1, + ACTIONS(859), 1, anon_sym_LBRACK, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(73), 1, - anon_sym_yield, - ACTIONS(79), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(81), 1, - sym_string_start, - STATE(628), 1, - sym_list_splat_pattern, - STATE(949), 1, + ACTIONS(913), 1, + anon_sym_RBRACK, + STATE(879), 1, sym_primary_expression, - STATE(954), 1, + STATE(968), 1, sym_string, - STATE(1623), 1, - sym_pattern, - STATE(1634), 1, - sym_pattern_list, - STATE(1816), 1, + STATE(1339), 1, + sym_list_splat_pattern, + STATE(1715), 1, sym_expression, - STATE(2616), 1, + STATE(2376), 1, + sym_pattern, + STATE(2710), 1, + sym__patterns, + STATE(2745), 1, + sym__collection_elements, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(405), 2, + ACTIONS(857), 2, anon_sym_match, anon_sym_type, - STATE(638), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - STATE(1626), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(65), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(407), 3, + ACTIONS(855), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2375), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2538), 5, - sym_expression_list, - sym_assignment, - sym_augmented_assignment, - sym__right_hand_side, - sym_yield, - STATE(1649), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30090,7 +30479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 14, + STATE(1143), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30105,48 +30494,48 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2358] = 30, + [2238] = 30, ACTIONS(743), 1, anon_sym_LBRACK, ACTIONS(747), 1, anon_sym_LBRACE, ACTIONS(753), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(831), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(887), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(919), 1, + ACTIONS(915), 1, anon_sym_COMMA, - ACTIONS(921), 1, + ACTIONS(917), 1, anon_sym_RBRACE, - STATE(893), 1, + STATE(880), 1, sym_primary_expression, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1656), 1, + STATE(1669), 1, sym_expression, - STATE(1836), 1, + STATE(1844), 1, sym_pair, - STATE(2461), 1, + STATE(2336), 1, sym_dictionary_splat, - STATE(2645), 1, + STATE(2677), 1, sym__named_expression_lhs, - STATE(2725), 1, + STATE(2713), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, @@ -30154,18 +30543,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2372), 3, + STATE(2303), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -30174,7 +30563,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30182,7 +30571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30199,46 +30588,46 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2482] = 31, + [2362] = 31, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(855), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(863), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(923), 1, + ACTIONS(919), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1340), 1, + STATE(1392), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1711), 1, sym_expression, - STATE(2289), 1, - sym_pattern, - STATE(2476), 1, + STATE(2248), 1, sym_yield, - STATE(2641), 1, - sym__collection_elements, - STATE(2698), 1, + STATE(2332), 1, + sym_pattern, + STATE(2673), 1, sym__named_expression_lhs, - STATE(2756), 1, + STATE(2727), 1, + sym__collection_elements, + STATE(2780), 1, sym__patterns, ACTIONS(3), 2, sym_comment, @@ -30246,23 +30635,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1343), 2, + STATE(1393), 2, sym_attribute, sym_subscript, - STATE(2287), 2, + STATE(2309), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2546), 2, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -30271,7 +30660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30279,7 +30668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 14, + STATE(1390), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30294,7 +30683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2608] = 30, + [2488] = 30, ACTIONS(703), 1, anon_sym_LBRACE, ACTIONS(709), 1, @@ -30305,58 +30694,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(821), 1, anon_sym_yield, - ACTIONS(825), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(859), 1, anon_sym_LBRACK, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(925), 1, + ACTIONS(921), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1341), 1, + STATE(1339), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1705), 1, sym_expression, - STATE(2283), 1, + STATE(2376), 1, sym_pattern, - STATE(2689), 1, + STATE(2630), 1, sym__collection_elements, - STATE(2716), 1, - sym__named_expression_lhs, - STATE(2718), 1, + STATE(2767), 1, sym__patterns, + STATE(2784), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(857), 2, anon_sym_match, anon_sym_type, - STATE(1352), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - STATE(2487), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(855), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2375), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -30365,7 +30754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30373,7 +30762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 14, + STATE(1143), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30388,67 +30777,67 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2732] = 30, + [2612] = 30, ACTIONS(743), 1, anon_sym_LBRACK, ACTIONS(747), 1, anon_sym_LBRACE, ACTIONS(753), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(831), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(887), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(927), 1, + ACTIONS(923), 1, anon_sym_COMMA, - ACTIONS(929), 1, + ACTIONS(925), 1, anon_sym_RBRACE, - STATE(893), 1, + STATE(880), 1, sym_primary_expression, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1660), 1, + STATE(1657), 1, sym_expression, - STATE(1855), 1, + STATE(1847), 1, sym_pair, - STATE(2356), 1, + STATE(2359), 1, sym_dictionary_splat, - STATE(2632), 1, - sym__collection_elements, - STATE(2645), 1, + STATE(2677), 1, sym__named_expression_lhs, + STATE(2761), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2372), 3, + STATE(2303), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -30457,7 +30846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30465,7 +30854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30482,46 +30871,46 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2856] = 31, + [2736] = 31, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(855), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(863), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(931), 1, + ACTIONS(927), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1340), 1, + STATE(1392), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1711), 1, sym_expression, - STATE(2289), 1, - sym_pattern, - STATE(2476), 1, + STATE(2248), 1, sym_yield, - STATE(2641), 1, - sym__collection_elements, - STATE(2698), 1, + STATE(2332), 1, + sym_pattern, + STATE(2673), 1, sym__named_expression_lhs, - STATE(2726), 1, + STATE(2727), 1, + sym__collection_elements, + STATE(2747), 1, sym__patterns, ACTIONS(3), 2, sym_comment, @@ -30529,23 +30918,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1343), 2, + STATE(1393), 2, sym_attribute, sym_subscript, - STATE(2287), 2, + STATE(2309), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2546), 2, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -30554,7 +30943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30562,7 +30951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 14, + STATE(1390), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30577,7 +30966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [2982] = 30, + [2862] = 30, ACTIONS(703), 1, anon_sym_LBRACE, ACTIONS(709), 1, @@ -30588,33 +30977,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(821), 1, anon_sym_yield, - ACTIONS(825), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(859), 1, anon_sym_LBRACK, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(933), 1, + ACTIONS(929), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1341), 1, + STATE(1339), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1705), 1, sym_expression, - STATE(2283), 1, + STATE(2376), 1, sym_pattern, - STATE(2648), 1, - sym__patterns, - STATE(2689), 1, + STATE(2630), 1, sym__collection_elements, - STATE(2716), 1, + STATE(2710), 1, + sym__patterns, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -30622,24 +31011,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(857), 2, anon_sym_match, anon_sym_type, - STATE(1352), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - STATE(2487), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(855), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2375), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -30648,7 +31037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30656,7 +31045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 14, + STATE(1143), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30671,48 +31060,48 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3106] = 30, + [2986] = 30, ACTIONS(743), 1, anon_sym_LBRACK, ACTIONS(747), 1, anon_sym_LBRACE, ACTIONS(753), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(831), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(887), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(935), 1, + ACTIONS(931), 1, anon_sym_COMMA, - ACTIONS(937), 1, + ACTIONS(933), 1, anon_sym_RBRACE, - STATE(893), 1, + STATE(880), 1, sym_primary_expression, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1661), 1, + STATE(1670), 1, sym_expression, - STATE(1869), 1, + STATE(1852), 1, sym_pair, - STATE(2379), 1, + STATE(2386), 1, sym_dictionary_splat, - STATE(2645), 1, + STATE(2677), 1, sym__named_expression_lhs, - STATE(2665), 1, + STATE(2685), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, @@ -30720,18 +31109,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2372), 3, + STATE(2303), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -30740,7 +31129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30748,7 +31137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -30765,70 +31154,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3230] = 31, + [3110] = 31, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(855), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(863), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(939), 1, + ACTIONS(935), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1340), 1, + STATE(1392), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1711), 1, sym_expression, - STATE(2289), 1, - sym_pattern, - STATE(2476), 1, + STATE(2248), 1, sym_yield, - STATE(2641), 1, - sym__collection_elements, - STATE(2655), 1, - sym__patterns, - STATE(2698), 1, + STATE(2332), 1, + sym_pattern, + STATE(2673), 1, sym__named_expression_lhs, + STATE(2692), 1, + sym__patterns, + STATE(2727), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1343), 2, + STATE(1393), 2, sym_attribute, sym_subscript, - STATE(2287), 2, + STATE(2309), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2546), 2, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -30837,7 +31226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30845,7 +31234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 14, + STATE(1390), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30860,7 +31249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3356] = 30, + [3236] = 30, ACTIONS(703), 1, anon_sym_LBRACE, ACTIONS(709), 1, @@ -30871,33 +31260,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(821), 1, anon_sym_yield, - ACTIONS(825), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(859), 1, anon_sym_LBRACK, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(941), 1, + ACTIONS(937), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1341), 1, + STATE(1339), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1705), 1, sym_expression, - STATE(2283), 1, + STATE(2376), 1, sym_pattern, - STATE(2678), 1, - sym__patterns, - STATE(2689), 1, + STATE(2630), 1, sym__collection_elements, - STATE(2716), 1, + STATE(2752), 1, + sym__patterns, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -30905,24 +31294,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(857), 2, anon_sym_match, anon_sym_type, - STATE(1352), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - STATE(2487), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(855), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2375), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -30931,7 +31320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -30939,7 +31328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 14, + STATE(1143), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -30954,48 +31343,48 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3480] = 30, + [3360] = 30, ACTIONS(743), 1, anon_sym_LBRACK, ACTIONS(747), 1, anon_sym_LBRACE, ACTIONS(753), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(873), 1, + ACTIONS(827), 1, anon_sym_LPAREN, - ACTIONS(877), 1, + ACTIONS(831), 1, anon_sym_STAR, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(887), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(891), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(893), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(943), 1, + ACTIONS(939), 1, anon_sym_COMMA, - ACTIONS(945), 1, + ACTIONS(941), 1, anon_sym_RBRACE, - STATE(893), 1, + STATE(880), 1, sym_primary_expression, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1662), 1, + STATE(1672), 1, sym_expression, - STATE(1833), 1, + STATE(1858), 1, sym_pair, - STATE(2403), 1, + STATE(2410), 1, sym_dictionary_splat, - STATE(2596), 1, + STATE(2605), 1, sym__collection_elements, - STATE(2645), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -31003,18 +31392,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2372), 3, + STATE(2303), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -31023,7 +31412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31031,7 +31420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31048,46 +31437,46 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3604] = 31, + [3484] = 31, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(865), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(867), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(855), 1, + ACTIONS(877), 1, anon_sym_LBRACK, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(863), 1, + ACTIONS(885), 1, anon_sym_await, - ACTIONS(947), 1, + ACTIONS(943), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1340), 1, + STATE(1392), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1723), 1, sym_expression, - STATE(2289), 1, + STATE(2332), 1, sym_pattern, - STATE(2316), 1, + STATE(2401), 1, sym_yield, - STATE(2615), 1, - sym__patterns, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, - STATE(2737), 1, + STATE(2750), 1, + sym__patterns, + STATE(2776), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, @@ -31095,23 +31484,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(875), 2, anon_sym_match, anon_sym_type, - STATE(1343), 2, + STATE(1393), 2, sym_attribute, sym_subscript, - STATE(2287), 2, + STATE(2309), 2, sym_list_splat, sym_parenthesized_list_splat, - STATE(2546), 2, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(873), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -31120,7 +31509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31128,7 +31517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 14, + STATE(1390), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31143,7 +31532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3730] = 30, + [3610] = 30, ACTIONS(703), 1, anon_sym_LBRACE, ACTIONS(709), 1, @@ -31154,58 +31543,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(821), 1, anon_sym_yield, - ACTIONS(825), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(859), 1, anon_sym_LBRACK, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(949), 1, + ACTIONS(945), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1341), 1, + STATE(1339), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1705), 1, sym_expression, - STATE(2283), 1, + STATE(2376), 1, sym_pattern, - STATE(2689), 1, + STATE(2615), 1, + sym__patterns, + STATE(2630), 1, sym__collection_elements, - STATE(2716), 1, + STATE(2784), 1, sym__named_expression_lhs, - STATE(2774), 1, - sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(857), 2, anon_sym_match, anon_sym_type, - STATE(1352), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - STATE(2487), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(855), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2375), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -31214,7 +31603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31222,7 +31611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 14, + STATE(1143), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31237,7 +31626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3854] = 30, + [3734] = 30, ACTIONS(703), 1, anon_sym_LBRACE, ACTIONS(709), 1, @@ -31248,33 +31637,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(821), 1, anon_sym_yield, - ACTIONS(825), 1, + ACTIONS(849), 1, sym_identifier, - ACTIONS(827), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(829), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(835), 1, + ACTIONS(859), 1, anon_sym_LBRACK, - ACTIONS(839), 1, + ACTIONS(863), 1, anon_sym_await, - ACTIONS(951), 1, + ACTIONS(947), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1341), 1, + STATE(1339), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1705), 1, sym_expression, - STATE(2283), 1, + STATE(2376), 1, sym_pattern, - STATE(2664), 1, - sym__patterns, - STATE(2689), 1, + STATE(2630), 1, sym__collection_elements, - STATE(2716), 1, + STATE(2702), 1, + sym__patterns, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -31282,24 +31671,24 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(833), 2, + ACTIONS(857), 2, anon_sym_match, anon_sym_type, - STATE(1352), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - STATE(2487), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(831), 3, + ACTIONS(855), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2375), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -31308,7 +31697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31316,7 +31705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 14, + STATE(1143), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31331,80 +31720,170 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [3978] = 32, - ACTIONS(793), 1, + [3858] = 30, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(843), 1, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, + anon_sym_lambda, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(849), 1, sym_identifier, - ACTIONS(845), 1, + ACTIONS(851), 1, anon_sym_LPAREN, - ACTIONS(849), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(855), 1, - anon_sym_LBRACK, - ACTIONS(857), 1, - anon_sym_not, ACTIONS(859), 1, - anon_sym_lambda, - ACTIONS(861), 1, - anon_sym_yield, + anon_sym_LBRACK, ACTIONS(863), 1, anon_sym_await, - ACTIONS(953), 1, - anon_sym_RPAREN, - STATE(950), 1, + ACTIONS(949), 1, + anon_sym_RBRACK, + STATE(879), 1, sym_primary_expression, - STATE(985), 1, + STATE(968), 1, sym_string, - STATE(1340), 1, + STATE(1339), 1, sym_list_splat_pattern, - STATE(1678), 1, + STATE(1720), 1, sym_expression, - STATE(2289), 1, + STATE(2376), 1, sym_pattern, - STATE(2318), 1, - sym_list_splat, - STATE(2325), 1, - sym_parenthesized_list_splat, - STATE(2456), 1, - sym_yield, - STATE(2698), 1, - sym__named_expression_lhs, - STATE(2709), 1, + STATE(2710), 1, sym__patterns, - STATE(2712), 1, + STATE(2746), 1, sym__collection_elements, + STATE(2784), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(853), 2, + ACTIONS(857), 2, anon_sym_match, anon_sym_type, - STATE(1343), 2, + STATE(1342), 2, sym_attribute, sym_subscript, - STATE(2546), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(791), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(851), 3, + ACTIONS(855), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + STATE(2375), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1719), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1143), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [3982] = 30, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(827), 1, + anon_sym_LPAREN, + ACTIONS(831), 1, + anon_sym_STAR, + ACTIONS(837), 1, + anon_sym_STAR_STAR, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(847), 1, + anon_sym_await, + ACTIONS(951), 1, + anon_sym_COMMA, + ACTIONS(953), 1, + anon_sym_RBRACE, + STATE(880), 1, + sym_primary_expression, + STATE(971), 1, + sym_string, + STATE(1228), 1, + sym_list_splat_pattern, + STATE(1667), 1, + sym_expression, + STATE(1851), 1, + sym_pair, + STATE(2252), 1, + sym_dictionary_splat, + STATE(2677), 1, + sym__named_expression_lhs, + STATE(2755), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(835), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(833), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2303), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31412,9 +31891,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 14, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -31428,11 +31909,11 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4106] = 22, - ACTIONS(299), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_TILDE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(955), 1, sym_identifier, @@ -31444,18 +31925,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(969), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1345), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1593), 1, + STATE(1591), 1, sym_pattern, - STATE(1598), 1, + STATE(1612), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, ACTIONS(660), 2, @@ -31464,22 +31945,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1346), 2, + STATE(1377), 2, sym_attribute, sym_subscript, - STATE(1597), 2, + STATE(1622), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31513,11 +31994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, [4213] = 22, - ACTIONS(299), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(304), 1, + ACTIONS(296), 1, anon_sym_TILDE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(955), 1, sym_identifier, @@ -31529,18 +32010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(969), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1345), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1593), 1, + STATE(1591), 1, sym_pattern, - STATE(1598), 1, + STATE(1612), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, ACTIONS(660), 2, @@ -31549,22 +32030,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1346), 2, + STATE(1377), 2, sym_attribute, sym_subscript, - STATE(1597), 2, + STATE(1622), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31602,7 +32083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(684), 1, sym_string_start, - ACTIONS(891), 1, + ACTIONS(845), 1, anon_sym_yield, ACTIONS(973), 1, sym_identifier, @@ -31618,17 +32099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(989), 1, anon_sym_await, - STATE(901), 1, + STATE(911), 1, sym_primary_expression, - STATE(975), 1, + STATE(984), 1, sym_string, - STATE(1181), 1, + STATE(1229), 1, sym_list_splat_pattern, - STATE(1720), 1, + STATE(1731), 1, sym_expression, - STATE(2579), 1, + STATE(2560), 1, sym_pattern, - STATE(2650), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -31639,10 +32120,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(981), 2, anon_sym_match, anon_sym_type, - STATE(1183), 2, + STATE(1233), 2, sym_attribute, sym_subscript, - STATE(1626), 2, + STATE(1631), 2, sym_tuple_pattern, sym_list_pattern, ACTIONS(676), 3, @@ -31658,7 +32139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2057), 4, + STATE(2018), 4, sym_expression_list, sym_pattern_list, sym_yield, @@ -31671,7 +32152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 14, + STATE(1162), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -31713,17 +32194,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1758), 1, sym_expression, - STATE(2040), 1, + STATE(2034), 1, sym_type, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -31744,13 +32225,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31758,7 +32239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31802,17 +32283,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(1009), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1758), 1, sym_expression, - STATE(2040), 1, + STATE(2034), 1, sym_type, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -31833,13 +32314,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -31847,7 +32328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -31865,248 +32346,72 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [4668] = 27, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(991), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(973), 1, sym_identifier, - ACTIONS(993), 1, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(997), 1, - anon_sym_match, - ACTIONS(999), 1, - anon_sym_type, - ACTIONS(1003), 1, + ACTIONS(983), 1, + anon_sym_LBRACK, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1007), 1, + ACTIONS(989), 1, anon_sym_await, - ACTIONS(1011), 1, - anon_sym_RBRACK, - STATE(963), 1, + STATE(911), 1, sym_primary_expression, - STATE(1081), 1, + STATE(984), 1, sym_string, - STATE(1444), 1, + STATE(1229), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1731), 1, sym_expression, - STATE(2040), 1, - sym_type, - STATE(2585), 1, + STATE(2560), 1, + sym_pattern, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(995), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(755), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(2046), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1441), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [4784] = 27, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(991), 1, - sym_identifier, - ACTIONS(993), 1, - anon_sym_STAR, - ACTIONS(997), 1, + ACTIONS(981), 2, anon_sym_match, - ACTIONS(999), 1, anon_sym_type, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1013), 1, - anon_sym_RBRACK, - STATE(963), 1, - sym_primary_expression, - STATE(1081), 1, - sym_string, - STATE(1444), 1, - sym_list_splat_pattern, - STATE(1756), 1, - sym_expression, - STATE(2040), 1, - sym_type, - STATE(2585), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(995), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(755), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(2046), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1441), 16, - sym_binary_operator, - sym_unary_operator, + STATE(1233), 2, sym_attribute, sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [4900] = 27, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(991), 1, - sym_identifier, - ACTIONS(993), 1, - anon_sym_STAR, - ACTIONS(997), 1, - anon_sym_match, - ACTIONS(999), 1, - anon_sym_type, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1015), 1, - anon_sym_RBRACK, - STATE(963), 1, - sym_primary_expression, - STATE(1081), 1, - sym_string, - STATE(1444), 1, - sym_list_splat_pattern, - STATE(1756), 1, - sym_expression, - STATE(2040), 1, - sym_type, - STATE(2585), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(767), 3, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(979), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1748), 7, + STATE(2051), 4, + sym_expression_list, + sym_pattern_list, + sym_yield, + sym__f_expression, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32114,11 +32419,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1162), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -32131,7 +32434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5016] = 27, + [4784] = 27, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -32156,19 +32459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1017), 1, + ACTIONS(1011), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1758), 1, sym_expression, - STATE(2040), 1, + STATE(2034), 1, sym_type, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -32189,13 +32492,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32203,7 +32506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32220,7 +32523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5132] = 27, + [4900] = 27, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -32245,19 +32548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1019), 1, + ACTIONS(1013), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1758), 1, sym_expression, - STATE(2040), 1, + STATE(2034), 1, sym_type, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -32278,13 +32581,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32292,7 +32595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32309,7 +32612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5248] = 27, + [5016] = 27, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -32334,19 +32637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1021), 1, + ACTIONS(1015), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1758), 1, sym_expression, - STATE(2040), 1, + STATE(2034), 1, sym_type, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -32367,13 +32670,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32381,7 +32684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32398,73 +32701,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5364] = 27, - ACTIONS(678), 1, + [5132] = 27, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(973), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(975), 1, - anon_sym_LPAREN, - ACTIONS(977), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(983), 1, - anon_sym_LBRACK, - ACTIONS(985), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(989), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1017), 1, + anon_sym_RBRACK, + STATE(974), 1, sym_primary_expression, - STATE(975), 1, + STATE(1111), 1, sym_string, - STATE(1181), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1720), 1, + STATE(1758), 1, sym_expression, - STATE(2579), 1, - sym_pattern, - STATE(2650), 1, + STATE(2034), 1, + sym_type, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(981), 2, - anon_sym_match, - anon_sym_type, - STATE(1183), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(676), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(979), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1999), 4, - sym_expression_list, - sym_pattern_list, - sym_yield, - sym__f_expression, - STATE(1769), 7, + STATE(2068), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32472,9 +32773,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 14, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -32487,7 +32790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5480] = 26, + [5248] = 27, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -32512,17 +32815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - STATE(963), 1, + ACTIONS(1019), 1, + anon_sym_RBRACK, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1758), 1, sym_expression, - STATE(1931), 1, + STATE(2034), 1, sym_type, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -32543,13 +32848,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32557,7 +32862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32574,69 +32879,71 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5593] = 26, - ACTIONS(713), 1, + [5364] = 27, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1023), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1025), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1029), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1031), 1, - anon_sym_STAR_STAR, - ACTIONS(1033), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1035), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(953), 1, + ACTIONS(1021), 1, + anon_sym_RBRACK, + STATE(974), 1, sym_primary_expression, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1758), 1, sym_expression, - STATE(1967), 1, + STATE(2034), 1, sym_type, - STATE(2638), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1922), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1722), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32644,7 +32951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32661,69 +32968,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5706] = 26, - ACTIONS(713), 1, + [5480] = 26, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1023), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1025), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1029), 1, + ACTIONS(997), 1, anon_sym_match, - ACTIONS(1031), 1, - anon_sym_STAR_STAR, - ACTIONS(1033), 1, + ACTIONS(999), 1, anon_sym_type, - ACTIONS(1035), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(953), 1, + STATE(974), 1, sym_primary_expression, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1758), 1, sym_expression, - STATE(1881), 1, + STATE(2003), 1, sym_type, - STATE(2638), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1922), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1722), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32731,7 +33038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32748,69 +33055,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5819] = 26, - ACTIONS(67), 1, + [5593] = 27, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - anon_sym_match, - ACTIONS(398), 1, - anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1041), 1, + ACTIONS(1023), 1, sym_identifier, - ACTIONS(1043), 1, + ACTIONS(1025), 1, + anon_sym_LPAREN, + ACTIONS(1027), 1, + anon_sym_RPAREN, + ACTIONS(1029), 1, + anon_sym_COMMA, + ACTIONS(1031), 1, anon_sym_STAR, - ACTIONS(1045), 1, + ACTIONS(1037), 1, anon_sym_STAR_STAR, - ACTIONS(1047), 1, - anon_sym_type, - STATE(845), 1, + ACTIONS(1039), 1, + anon_sym_await, + STATE(961), 1, sym_primary_expression, - STATE(954), 1, + STATE(1037), 1, sym_string, - STATE(1047), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1702), 1, sym_expression, - STATE(1991), 1, - sym_type, - STATE(2616), 1, + STATE(2318), 1, + sym_parenthesized_list_splat, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(1035), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(1033), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + STATE(2317), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1973), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1649), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32818,7 +33126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32835,69 +33143,152 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [5932] = 26, - ACTIONS(263), 1, + [5708] = 22, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(296), 1, + anon_sym_TILDE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(285), 1, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1045), 1, + anon_sym_STAR, + ACTIONS(1051), 1, + anon_sym_LBRACK, + ACTIONS(1053), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1467), 1, + sym_list_splat_pattern, + STATE(1620), 1, + sym_primary_expression, + STATE(1644), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(660), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1049), 2, anon_sym_match, - ACTIONS(290), 1, anon_sym_type, - ACTIONS(299), 1, + STATE(1476), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1047), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + ACTIONS(957), 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, + [5813] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(333), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(379), 1, + anon_sym_match, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1055), 1, + sym_identifier, + ACTIONS(1057), 1, anon_sym_STAR, - ACTIONS(1051), 1, - anon_sym_not, - STATE(952), 1, + ACTIONS(1059), 1, + anon_sym_STAR_STAR, + ACTIONS(1061), 1, + anon_sym_type, + STATE(859), 1, sym_primary_expression, - STATE(984), 1, + STATE(960), 1, sym_string, - STATE(1372), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1737), 1, sym_expression, - STATE(1996), 1, + STATE(1962), 1, sym_type, - STATE(2729), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(375), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2074), 5, + STATE(1908), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32905,7 +33296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -32922,70 +33313,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6045] = 27, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [5926] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1035), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1055), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(379), 1, + anon_sym_match, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1055), 1, + sym_identifier, ACTIONS(1057), 1, - anon_sym_RPAREN, - ACTIONS(1059), 1, - anon_sym_COMMA, - ACTIONS(1061), 1, anon_sym_STAR, - ACTIONS(1067), 1, + ACTIONS(1059), 1, anon_sym_STAR_STAR, - ACTIONS(1069), 1, - anon_sym_await, - STATE(953), 1, + ACTIONS(1061), 1, + anon_sym_type, + STATE(859), 1, sym_primary_expression, - STATE(995), 1, + STATE(960), 1, sym_string, - STATE(1301), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1827), 1, + STATE(1737), 1, sym_expression, - STATE(2242), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(1896), 1, + sym_type, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2241), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1908), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -32993,7 +33383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33010,69 +33400,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6160] = 26, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(285), 1, - anon_sym_match, - ACTIONS(290), 1, - anon_sym_type, - ACTIONS(299), 1, + [6039] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(333), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(379), 1, + anon_sym_match, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1055), 1, + sym_identifier, + ACTIONS(1057), 1, anon_sym_STAR, - ACTIONS(1051), 1, - anon_sym_not, - STATE(952), 1, + ACTIONS(1059), 1, + anon_sym_STAR_STAR, + ACTIONS(1061), 1, + anon_sym_type, + STATE(859), 1, sym_primary_expression, - STATE(984), 1, + STATE(960), 1, sym_string, - STATE(1372), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1737), 1, sym_expression, - STATE(2402), 1, + STATE(1900), 1, sym_type, - STATE(2729), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(375), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2074), 5, + STATE(1908), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33080,7 +33470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33097,71 +33487,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6273] = 28, - ACTIONS(789), 1, + [6152] = 26, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(1063), 1, + sym_identifier, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(857), 1, - anon_sym_not, - ACTIONS(859), 1, - anon_sym_lambda, - ACTIONS(861), 1, - anon_sym_yield, + ACTIONS(1069), 1, + anon_sym_match, ACTIONS(1071), 1, - sym_identifier, + anon_sym_STAR_STAR, ACTIONS(1073), 1, - anon_sym_LPAREN, + anon_sym_type, ACTIONS(1075), 1, - anon_sym_RPAREN, - ACTIONS(1081), 1, + anon_sym_not, + ACTIONS(1077), 1, + anon_sym_lambda, + ACTIONS(1079), 1, anon_sym_await, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1687), 1, + STATE(1747), 1, sym_expression, - STATE(2474), 1, - sym_with_item, - STATE(2476), 1, - sym_yield, - STATE(2641), 1, - sym__collection_elements, - STATE(2698), 1, + STATE(1979), 1, + sym_type, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - STATE(2287), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1957), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33169,7 +33557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33186,61 +33574,81 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6390] = 22, - ACTIONS(299), 1, + [6265] = 26, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(304), 1, - anon_sym_TILDE, - ACTIONS(316), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1085), 1, - anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1093), 1, - anon_sym_LBRACK, - ACTIONS(1095), 1, + ACTIONS(1069), 1, + anon_sym_match, + ACTIONS(1071), 1, + anon_sym_STAR_STAR, + ACTIONS(1073), 1, + anon_sym_type, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, + anon_sym_lambda, + ACTIONS(1079), 1, anon_sym_await, - STATE(984), 1, + STATE(963), 1, + sym_primary_expression, + STATE(1026), 1, sym_string, - STATE(1475), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1618), 1, - sym_primary_expression, - STATE(1636), 1, - sym_pattern, + STATE(1747), 1, + sym_expression, + STATE(2066), 1, + sym_type, + STATE(2661), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(660), 2, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1091), 2, - anon_sym_match, - anon_sym_type, - STATE(1476), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1089), 3, + anon_sym_TILDE, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1957), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1733), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -33253,86 +33661,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(957), 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, - [6495] = 27, - ACTIONS(789), 1, + [6378] = 26, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(857), 1, - anon_sym_not, - ACTIONS(859), 1, - anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(811), 1, anon_sym_STAR_STAR, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(991), 1, sym_identifier, - ACTIONS(1099), 1, - anon_sym_RPAREN, - ACTIONS(1101), 1, - anon_sym_COMMA, - ACTIONS(1103), 1, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(1109), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - STATE(950), 1, + STATE(974), 1, sym_primary_expression, - STATE(985), 1, + STATE(1111), 1, sym_string, - STATE(1320), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1688), 1, + STATE(1758), 1, sym_expression, - STATE(2368), 1, - sym_parenthesized_list_splat, - STATE(2698), 1, + STATE(2004), 1, + sym_type, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1107), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1105), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2479), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(777), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(2068), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33340,7 +33731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33357,61 +33748,82 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6610] = 22, - ACTIONS(299), 1, + [6491] = 27, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(304), 1, - anon_sym_TILDE, - ACTIONS(316), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(879), 1, + anon_sym_not, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(1023), 1, sym_identifier, - ACTIONS(1085), 1, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1087), 1, + ACTIONS(1031), 1, anon_sym_STAR, - ACTIONS(1093), 1, - anon_sym_LBRACK, - ACTIONS(1095), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1039), 1, anon_sym_await, - STATE(984), 1, + ACTIONS(1081), 1, + anon_sym_RPAREN, + ACTIONS(1083), 1, + anon_sym_COMMA, + STATE(961), 1, + sym_primary_expression, + STATE(1037), 1, sym_string, - STATE(1475), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1618), 1, - sym_primary_expression, - STATE(1636), 1, - sym_pattern, + STATE(1698), 1, + sym_expression, + STATE(2289), 1, + sym_parenthesized_list_splat, + STATE(2673), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(660), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1091), 2, + ACTIONS(1035), 2, anon_sym_match, anon_sym_type, - STATE(1476), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(1089), 3, + ACTIONS(791), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1033), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + STATE(2288), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1827), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -33424,85 +33836,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - ACTIONS(971), 15, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [6715] = 26, - ACTIONS(67), 1, + [6606] = 26, + ACTIONS(255), 1, + sym_identifier, + ACTIONS(277), 1, + anon_sym_match, + ACTIONS(282), 1, + anon_sym_type, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - anon_sym_match, - ACTIONS(398), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(325), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1041), 1, - sym_identifier, - ACTIONS(1043), 1, + ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1045), 1, - anon_sym_STAR_STAR, - ACTIONS(1047), 1, - anon_sym_type, - STATE(845), 1, + ACTIONS(1087), 1, + anon_sym_not, + STATE(962), 1, sym_primary_expression, - STATE(954), 1, + STATE(990), 1, sym_string, - STATE(1047), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1772), 1, sym_expression, - STATE(1940), 1, + STATE(2240), 1, sym_type, - STATE(2616), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1973), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1649), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33510,7 +33906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33527,7 +33923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6828] = 26, + [6719] = 26, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -33552,17 +33948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1758), 1, sym_expression, - STATE(2040), 1, + STATE(2034), 1, sym_type, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -33583,13 +33979,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33597,7 +33993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33614,70 +34010,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [6941] = 27, - ACTIONS(789), 1, + [6832] = 25, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(1089), 1, sym_identifier, - ACTIONS(1103), 1, - anon_sym_STAR, - ACTIONS(1109), 1, + ACTIONS(1091), 1, + anon_sym_from, + ACTIONS(1099), 1, anon_sym_await, - ACTIONS(1111), 1, - anon_sym_RPAREN, - ACTIONS(1113), 1, - anon_sym_COMMA, - STATE(950), 1, + STATE(911), 1, sym_primary_expression, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1320), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1700), 1, + STATE(1730), 1, sym_expression, - STATE(2405), 1, - sym_parenthesized_list_splat, - STATE(2698), 1, + STATE(2053), 1, + sym_expression_list, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1107), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1105), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2404), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(777), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + ACTIONS(1093), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33685,7 +34079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33702,69 +34096,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7056] = 26, - ACTIONS(263), 1, + [6943] = 26, + ACTIONS(255), 1, sym_identifier, - ACTIONS(285), 1, + ACTIONS(277), 1, anon_sym_match, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_type, - ACTIONS(299), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(333), 1, + ACTIONS(325), 1, anon_sym_STAR_STAR, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1772), 1, sym_expression, - STATE(2235), 1, + STATE(2243), 1, sym_type, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2074), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33772,7 +34166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33789,69 +34183,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7169] = 26, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(285), 1, - anon_sym_match, - ACTIONS(290), 1, - anon_sym_type, - ACTIONS(299), 1, + [7056] = 27, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(333), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(879), 1, + anon_sym_not, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(1023), 1, + sym_identifier, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1031), 1, anon_sym_STAR, - ACTIONS(1051), 1, - anon_sym_not, - STATE(952), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1039), 1, + anon_sym_await, + ACTIONS(1101), 1, + anon_sym_RPAREN, + ACTIONS(1103), 1, + anon_sym_COMMA, + STATE(961), 1, sym_primary_expression, - STATE(984), 1, + STATE(1037), 1, sym_string, - STATE(1372), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1714), 1, sym_expression, - STATE(2265), 1, - sym_type, - STATE(2729), 1, + STATE(2260), 1, + sym_parenthesized_list_splat, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(1035), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(1033), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2259), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2074), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1723), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33859,7 +34254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33876,69 +34271,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7282] = 26, - ACTIONS(263), 1, + [7171] = 26, + ACTIONS(255), 1, sym_identifier, - ACTIONS(285), 1, + ACTIONS(277), 1, anon_sym_match, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_type, - ACTIONS(299), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(333), 1, + ACTIONS(325), 1, anon_sym_STAR_STAR, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1772), 1, sym_expression, - STATE(2449), 1, + STATE(1999), 1, sym_type, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2074), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -33946,7 +34341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -33963,69 +34358,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7395] = 26, - ACTIONS(67), 1, + [7284] = 26, + ACTIONS(255), 1, + sym_identifier, + ACTIONS(277), 1, + anon_sym_match, + ACTIONS(282), 1, + anon_sym_type, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - anon_sym_match, - ACTIONS(398), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(325), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1041), 1, - sym_identifier, - ACTIONS(1043), 1, + ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1045), 1, - anon_sym_STAR_STAR, - ACTIONS(1047), 1, - anon_sym_type, - STATE(845), 1, + ACTIONS(1087), 1, + anon_sym_not, + STATE(962), 1, sym_primary_expression, - STATE(954), 1, + STATE(990), 1, sym_string, - STATE(1047), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1772), 1, sym_expression, - STATE(1885), 1, + STATE(2451), 1, sym_type, - STATE(2616), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1973), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1649), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34033,7 +34428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34050,7 +34445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7508] = 26, + [7397] = 26, ACTIONS(713), 1, anon_sym_LPAREN, ACTIONS(721), 1, @@ -34059,33 +34454,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1023), 1, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1025), 1, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1029), 1, + ACTIONS(1069), 1, anon_sym_match, - ACTIONS(1031), 1, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1033), 1, + ACTIONS(1073), 1, anon_sym_type, - ACTIONS(1035), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1747), 1, sym_expression, - STATE(1924), 1, + STATE(1944), 1, sym_type, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -34097,7 +34492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -34106,13 +34501,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1922), 5, + STATE(1957), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34120,7 +34515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34137,69 +34532,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7621] = 26, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [7510] = 26, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ACTIONS(1023), 1, + ACTIONS(379), 1, + anon_sym_match, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1055), 1, sym_identifier, - ACTIONS(1025), 1, + ACTIONS(1057), 1, anon_sym_STAR, - ACTIONS(1029), 1, - anon_sym_match, - ACTIONS(1031), 1, + ACTIONS(1059), 1, anon_sym_STAR_STAR, - ACTIONS(1033), 1, + ACTIONS(1061), 1, anon_sym_type, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - STATE(953), 1, + STATE(859), 1, sym_primary_expression, - STATE(995), 1, + STATE(960), 1, sym_string, - STATE(1301), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1733), 1, + STATE(1737), 1, sym_expression, - STATE(2100), 1, + STATE(1996), 1, sym_type, - STATE(2638), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(723), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1922), 5, + STATE(1908), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1722), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34207,7 +34602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34224,42 +34619,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7734] = 27, + [7623] = 27, ACTIONS(789), 1, anon_sym_LBRACK, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1057), 1, - anon_sym_RPAREN, - ACTIONS(1059), 1, - anon_sym_COMMA, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(1023), 1, sym_identifier, - ACTIONS(1103), 1, + ACTIONS(1025), 1, + anon_sym_LPAREN, + ACTIONS(1031), 1, anon_sym_STAR, - ACTIONS(1109), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1039), 1, anon_sym_await, - STATE(950), 1, + ACTIONS(1105), 1, + anon_sym_RPAREN, + ACTIONS(1107), 1, + anon_sym_COMMA, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1668), 1, + STATE(1703), 1, sym_expression, - STATE(2242), 1, + STATE(2302), 1, sym_parenthesized_list_splat, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -34267,18 +34662,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1107), 2, + ACTIONS(1035), 2, anon_sym_match, anon_sym_type, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1105), 3, + ACTIONS(1033), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2241), 3, + STATE(2301), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -34287,7 +34682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34295,7 +34690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34312,70 +34707,158 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7849] = 27, + [7738] = 26, + ACTIONS(255), 1, + sym_identifier, + ACTIONS(277), 1, + anon_sym_match, + ACTIONS(282), 1, + anon_sym_type, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(298), 1, + anon_sym_lambda, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(325), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1085), 1, + anon_sym_STAR, + ACTIONS(1087), 1, + anon_sym_not, + STATE(962), 1, + sym_primary_expression, + STATE(990), 1, + sym_string, + STATE(1402), 1, + sym_list_splat_pattern, + STATE(1772), 1, + sym_expression, + STATE(2250), 1, + sym_type, + STATE(2653), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(2093), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1734), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1419), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [7851] = 28, ACTIONS(789), 1, anon_sym_LBRACK, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1073), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1103), 1, - anon_sym_STAR, ACTIONS(1109), 1, - anon_sym_await, - ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1111), 1, anon_sym_RPAREN, ACTIONS(1117), 1, - anon_sym_COMMA, - STATE(950), 1, + anon_sym_await, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1677), 1, + STATE(1706), 1, sym_expression, - STATE(2286), 1, - sym_parenthesized_list_splat, - STATE(2698), 1, + STATE(2248), 1, + sym_yield, + STATE(2480), 1, + sym_with_item, + STATE(2673), 1, sym__named_expression_lhs, + STATE(2727), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1107), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, + STATE(2309), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1105), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2285), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34383,7 +34866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34400,69 +34883,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [7964] = 26, - ACTIONS(263), 1, - sym_identifier, - ACTIONS(285), 1, - anon_sym_match, - ACTIONS(290), 1, - anon_sym_type, - ACTIONS(299), 1, + [7968] = 27, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(333), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 1, + ACTIONS(879), 1, + anon_sym_not, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(1023), 1, + sym_identifier, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1031), 1, anon_sym_STAR, - ACTIONS(1051), 1, - anon_sym_not, - STATE(952), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1039), 1, + anon_sym_await, + ACTIONS(1119), 1, + anon_sym_RPAREN, + ACTIONS(1121), 1, + anon_sym_COMMA, + STATE(961), 1, sym_primary_expression, - STATE(984), 1, + STATE(1037), 1, sym_string, - STATE(1372), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1676), 1, sym_expression, - STATE(2301), 1, - sym_type, - STATE(2729), 1, + STATE(2341), 1, + sym_parenthesized_list_splat, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(1035), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(1033), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2340), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2074), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1723), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34470,7 +34954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34487,42 +34971,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8077] = 27, + [8083] = 27, ACTIONS(789), 1, anon_sym_LBRACK, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(1023), 1, sym_identifier, - ACTIONS(1103), 1, + ACTIONS(1025), 1, + anon_sym_LPAREN, + ACTIONS(1031), 1, anon_sym_STAR, - ACTIONS(1109), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1119), 1, + ACTIONS(1123), 1, anon_sym_RPAREN, - ACTIONS(1121), 1, + ACTIONS(1125), 1, anon_sym_COMMA, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1684), 1, + STATE(1681), 1, sym_expression, - STATE(2333), 1, + STATE(2363), 1, sym_parenthesized_list_splat, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -34530,18 +35014,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1107), 2, + ACTIONS(1035), 2, anon_sym_match, anon_sym_type, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1105), 3, + ACTIONS(1033), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2332), 3, + STATE(2362), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -34550,7 +35034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34558,7 +35042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34575,69 +35059,152 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8192] = 26, - ACTIONS(263), 1, + [8198] = 22, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(296), 1, + anon_sym_TILDE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1041), 1, + sym_identifier, + ACTIONS(1043), 1, + anon_sym_LPAREN, + ACTIONS(1045), 1, + anon_sym_STAR, + ACTIONS(1051), 1, + anon_sym_LBRACK, + ACTIONS(1053), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1467), 1, + sym_list_splat_pattern, + STATE(1620), 1, + sym_primary_expression, + STATE(1644), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(660), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1049), 2, + anon_sym_match, + anon_sym_type, + STATE(1476), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(1047), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + ACTIONS(971), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [8303] = 26, + ACTIONS(255), 1, sym_identifier, - ACTIONS(285), 1, + ACTIONS(277), 1, anon_sym_match, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_type, - ACTIONS(299), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(333), 1, + ACTIONS(325), 1, anon_sym_STAR_STAR, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1772), 1, sym_expression, - STATE(1987), 1, + STATE(2349), 1, sym_type, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2074), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34645,7 +35212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34662,69 +35229,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8305] = 26, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, + [8416] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(991), 1, - sym_identifier, - ACTIONS(993), 1, - anon_sym_STAR, - ACTIONS(997), 1, - anon_sym_match, - ACTIONS(999), 1, - anon_sym_type, - ACTIONS(1003), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1007), 1, + ACTIONS(1023), 1, + sym_identifier, + ACTIONS(1025), 1, + anon_sym_LPAREN, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1039), 1, anon_sym_await, - STATE(963), 1, + ACTIONS(1127), 1, + anon_sym_RPAREN, + ACTIONS(1129), 1, + anon_sym_COMMA, + STATE(961), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1037), 1, sym_string, - STATE(1444), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1689), 1, sym_expression, - STATE(2084), 1, - sym_type, - STATE(2585), 1, + STATE(2393), 1, + sym_parenthesized_list_splat, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(767), 3, + ACTIONS(1035), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(1033), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + STATE(2392), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2046), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1748), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34732,7 +35300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34749,42 +35317,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8418] = 27, + [8531] = 27, ACTIONS(789), 1, anon_sym_LBRACK, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1097), 1, + ACTIONS(1023), 1, sym_identifier, - ACTIONS(1103), 1, + ACTIONS(1025), 1, + anon_sym_LPAREN, + ACTIONS(1031), 1, anon_sym_STAR, - ACTIONS(1109), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1039), 1, anon_sym_await, - ACTIONS(1123), 1, + ACTIONS(1131), 1, anon_sym_RPAREN, - ACTIONS(1125), 1, + ACTIONS(1133), 1, anon_sym_COMMA, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1690), 1, + STATE(1696), 1, sym_expression, - STATE(2232), 1, + STATE(2413), 1, sym_parenthesized_list_splat, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -34792,18 +35360,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1107), 2, + ACTIONS(1035), 2, anon_sym_match, anon_sym_type, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1105), 3, + ACTIONS(1033), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2361), 3, + STATE(2412), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -34812,7 +35380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34820,7 +35388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34837,7 +35405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8533] = 26, + [8646] = 26, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -34862,17 +35430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1758), 1, sym_expression, - STATE(2085), 1, + STATE(1982), 1, sym_type, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -34893,13 +35461,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34907,7 +35475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -34924,70 +35492,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8646] = 27, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [8759] = 26, + ACTIONS(255), 1, + sym_identifier, + ACTIONS(277), 1, + anon_sym_match, + ACTIONS(282), 1, + anon_sym_type, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(857), 1, - anon_sym_not, - ACTIONS(859), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(1067), 1, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(325), 1, anon_sym_STAR_STAR, - ACTIONS(1073), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(1097), 1, - sym_identifier, - ACTIONS(1103), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1109), 1, - anon_sym_await, - ACTIONS(1127), 1, - anon_sym_RPAREN, - ACTIONS(1129), 1, - anon_sym_COMMA, - STATE(950), 1, + ACTIONS(1087), 1, + anon_sym_not, + STATE(962), 1, sym_primary_expression, - STATE(985), 1, + STATE(990), 1, sym_string, - STATE(1320), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1695), 1, + STATE(1772), 1, sym_expression, - STATE(2384), 1, - sym_parenthesized_list_splat, - STATE(2698), 1, + STATE(2001), 1, + sym_type, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(1107), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1105), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2383), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(777), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(2093), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -34995,7 +35562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35012,70 +35579,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8761] = 27, - ACTIONS(789), 1, + [8872] = 27, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1073), 1, - anon_sym_LPAREN, - ACTIONS(1097), 1, - sym_identifier, + ACTIONS(1101), 1, + anon_sym_RPAREN, ACTIONS(1103), 1, + anon_sym_COMMA, + ACTIONS(1135), 1, + sym_identifier, + ACTIONS(1137), 1, + anon_sym_LPAREN, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1109), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1131), 1, - anon_sym_RPAREN, - ACTIONS(1133), 1, - anon_sym_COMMA, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1701), 1, + STATE(1886), 1, sym_expression, - STATE(2409), 1, + STATE(2260), 1, sym_parenthesized_list_splat, - STATE(2698), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1107), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1105), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2408), 3, + STATE(2259), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, - ACTIONS(777), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35083,7 +35650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35100,68 +35667,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8876] = 25, - ACTIONS(666), 1, + [8987] = 26, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(977), 1, + ACTIONS(811), 1, + anon_sym_STAR_STAR, + ACTIONS(991), 1, + sym_identifier, + ACTIONS(993), 1, anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(997), 1, + anon_sym_match, + ACTIONS(999), 1, + anon_sym_type, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1137), 1, - anon_sym_from, - ACTIONS(1145), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(901), 1, + STATE(974), 1, sym_primary_expression, - STATE(975), 1, + STATE(1111), 1, sym_string, - STATE(1197), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1734), 1, + STATE(1758), 1, sym_expression, - STATE(2021), 1, - sym_expression_list, - STATE(2650), 1, + STATE(1935), 1, + sym_type, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1139), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1769), 7, + STATE(2068), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35169,7 +35737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35186,7 +35754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [8987] = 26, + [9100] = 26, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -35211,17 +35779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1758), 1, sym_expression, - STATE(1945), 1, + STATE(1918), 1, sym_type, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -35242,13 +35810,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35256,7 +35824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35273,7 +35841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9100] = 26, + [9213] = 26, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -35298,17 +35866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1756), 1, + STATE(1758), 1, sym_expression, - STATE(1914), 1, + STATE(1922), 1, sym_type, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -35329,13 +35897,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2046), 5, + STATE(2068), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35343,94 +35911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [9213] = 26, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(811), 1, - anon_sym_STAR_STAR, - ACTIONS(991), 1, - sym_identifier, - ACTIONS(993), 1, - anon_sym_STAR, - ACTIONS(997), 1, - anon_sym_match, - ACTIONS(999), 1, - anon_sym_type, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - STATE(963), 1, - sym_primary_expression, - STATE(1081), 1, - sym_string, - STATE(1444), 1, - sym_list_splat_pattern, - STATE(1756), 1, - sym_expression, - STATE(1895), 1, - sym_type, - STATE(2585), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(995), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(755), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(2046), 5, - sym_splat_type, - sym_generic_type, - sym_union_type, - sym_constrained_type, - sym_member_type, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35448,68 +35929,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9326] = 26, - ACTIONS(263), 1, + ACTIONS(255), 1, sym_identifier, - ACTIONS(285), 1, + ACTIONS(277), 1, anon_sym_match, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_type, - ACTIONS(299), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(333), 1, + ACTIONS(325), 1, anon_sym_STAR_STAR, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1772), 1, sym_expression, - STATE(2445), 1, + STATE(2447), 1, sym_type, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2074), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35517,7 +35998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35535,68 +36016,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9439] = 26, - ACTIONS(263), 1, + ACTIONS(255), 1, sym_identifier, - ACTIONS(285), 1, + ACTIONS(277), 1, anon_sym_match, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_type, - ACTIONS(299), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(333), 1, + ACTIONS(325), 1, anon_sym_STAR_STAR, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1772), 1, sym_expression, - STATE(2447), 1, + STATE(2448), 1, sym_type, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2074), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35604,7 +36085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35622,68 +36103,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9552] = 26, - ACTIONS(263), 1, + ACTIONS(255), 1, sym_identifier, - ACTIONS(285), 1, + ACTIONS(277), 1, anon_sym_match, - ACTIONS(290), 1, + ACTIONS(282), 1, anon_sym_type, - ACTIONS(299), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(333), 1, + ACTIONS(325), 1, anon_sym_STAR_STAR, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1049), 1, + ACTIONS(1085), 1, anon_sym_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1762), 1, + STATE(1772), 1, sym_expression, - STATE(2448), 1, + STATE(2450), 1, sym_type, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(2074), 5, + STATE(2093), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35691,7 +36172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35709,68 +36190,68 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [9665] = 26, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(387), 1, - anon_sym_match, - ACTIONS(398), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(1041), 1, + ACTIONS(725), 1, + anon_sym_LBRACE, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1063), 1, sym_identifier, - ACTIONS(1043), 1, + ACTIONS(1065), 1, anon_sym_STAR, - ACTIONS(1045), 1, + ACTIONS(1069), 1, + anon_sym_match, + ACTIONS(1071), 1, anon_sym_STAR_STAR, - ACTIONS(1047), 1, + ACTIONS(1073), 1, anon_sym_type, - STATE(845), 1, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, + anon_sym_lambda, + ACTIONS(1079), 1, + anon_sym_await, + STATE(963), 1, sym_primary_expression, - STATE(954), 1, + STATE(1026), 1, sym_string, - STATE(1047), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1724), 1, + STATE(1747), 1, sym_expression, - STATE(1883), 1, + STATE(1942), 1, sym_type, - STATE(2616), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(65), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1973), 5, + STATE(1957), 5, sym_splat_type, sym_generic_type, sym_union_type, sym_constrained_type, sym_member_type, - STATE(1649), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35778,7 +36259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35795,70 +36276,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9778] = 28, - ACTIONS(789), 1, + [9778] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(849), 1, - anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(861), 1, - anon_sym_yield, - ACTIONS(1071), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1139), 1, + anon_sym_STAR, + ACTIONS(1145), 1, anon_sym_await, ACTIONS(1147), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1683), 1, + STATE(1969), 1, sym_expression, - STATE(2238), 1, - sym_list_splat, - STATE(2239), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2322), 1, - sym_yield, - STATE(2659), 1, - sym__collection_elements, - STATE(2698), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + STATE(2517), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35866,7 +36345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35883,46 +36362,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [9894] = 28, + [9890] = 27, ACTIONS(789), 1, anon_sym_LBRACK, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, - anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1111), 1, anon_sym_RPAREN, - STATE(950), 1, + ACTIONS(1117), 1, + anon_sym_await, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1678), 1, + STATE(1711), 1, sym_expression, - STATE(2318), 1, - sym_list_splat, - STATE(2325), 1, - sym_parenthesized_list_splat, - STATE(2456), 1, + STATE(2248), 1, sym_yield, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, - STATE(2712), 1, + STATE(2727), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, @@ -35930,14 +36405,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, + STATE(2309), 2, + sym_list_splat, + sym_parenthesized_list_splat, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -35946,7 +36424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -35954,7 +36432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -35971,40 +36449,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10010] = 26, + [10004] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1151), 1, + ACTIONS(1149), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36012,18 +36490,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -36032,7 +36510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36040,7 +36518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36057,40 +36535,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10122] = 26, + [10116] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1153), 1, + ACTIONS(1151), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36098,18 +36576,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -36118,7 +36596,93 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1299), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [10228] = 26, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, + anon_sym_lambda, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1155), 1, + anon_sym_RBRACK, + STATE(879), 1, + sym_primary_expression, + STATE(968), 1, + sym_string, + STATE(1165), 1, + sym_list_splat_pattern, + STATE(1720), 1, + sym_expression, + STATE(2746), 1, + sym__collection_elements, + STATE(2784), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(809), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(701), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(807), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2375), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36126,7 +36690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36143,42 +36707,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10234] = 27, + [10340] = 27, ACTIONS(789), 1, anon_sym_LBRACK, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1075), 1, - anon_sym_RPAREN, - ACTIONS(1081), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - STATE(950), 1, + ACTIONS(1157), 1, + anon_sym_RPAREN, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1718), 1, + STATE(1687), 1, sym_expression, - STATE(2476), 1, + STATE(2384), 1, sym_yield, - STATE(2641), 1, + STATE(2667), 1, sym__collection_elements, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36186,17 +36750,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2287), 2, + STATE(2309), 2, sym_list_splat, sym_parenthesized_list_splat, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -36205,7 +36769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36213,7 +36777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36230,7 +36794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10348] = 26, + [10454] = 26, ACTIONS(699), 1, anon_sym_LBRACK, ACTIONS(703), 1, @@ -36239,8 +36803,6 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(803), 1, anon_sym_LPAREN, - ACTIONS(815), 1, - anon_sym_RBRACK, ACTIONS(817), 1, anon_sym_not, ACTIONS(819), 1, @@ -36249,21 +36811,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(823), 1, anon_sym_await, - ACTIONS(829), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(1155), 1, + ACTIONS(1153), 1, sym_identifier, - STATE(857), 1, + ACTIONS(1159), 1, + anon_sym_RBRACK, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1283), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1707), 1, + STATE(1712), 1, sym_expression, - STATE(2689), 1, + STATE(2703), 1, sym__collection_elements, - STATE(2716), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36282,7 +36846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2375), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -36291,7 +36855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36299,7 +36863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36316,68 +36880,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10460] = 26, - ACTIONS(721), 1, + [10566] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1055), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, - anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1157), 1, + ACTIONS(1161), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(961), 1, sym_primary_expression, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1701), 1, sym_expression, - STATE(2516), 1, + STATE(2272), 1, + sym_list_splat, + STATE(2273), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2293), 1, + sym_yield, + STATE(2673), 1, sym__named_expression_lhs, + STATE(2744), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36385,7 +36951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36402,68 +36968,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10572] = 26, - ACTIONS(721), 1, + [10682] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(815), 1, + anon_sym_RBRACK, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1055), 1, - anon_sym_LPAREN, - ACTIONS(1061), 1, - anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1159), 1, - anon_sym_RPAREN, - STATE(953), 1, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1153), 1, + sym_identifier, + STATE(879), 1, sym_primary_expression, - STATE(995), 1, + STATE(968), 1, sym_string, - STATE(1301), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1705), 1, sym_expression, - STATE(2516), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2630), 1, + sym__collection_elements, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2375), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36471,7 +37037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36488,40 +37054,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10684] = 26, + [10794] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1161), 1, + ACTIONS(1163), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36529,18 +37095,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -36549,7 +37115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36557,7 +37123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36574,40 +37140,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10796] = 26, + [10906] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1163), 1, + ACTIONS(1165), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -36615,18 +37181,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -36635,7 +37201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36643,7 +37209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36660,69 +37226,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [10908] = 27, - ACTIONS(789), 1, + [11018] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(849), 1, - anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(861), 1, - anon_sym_yield, - ACTIONS(1071), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1139), 1, + anon_sym_STAR, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1165), 1, + ACTIONS(1167), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1969), 1, sym_expression, - STATE(2378), 1, - sym_yield, - STATE(2647), 1, - sym__collection_elements, - STATE(2698), 1, + STATE(2534), 1, + sym_parenthesized_list_splat, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - STATE(2287), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + STATE(2517), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36730,7 +37295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36747,68 +37312,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11022] = 26, - ACTIONS(699), 1, + [11130] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(829), 1, - anon_sym_STAR, - ACTIONS(1155), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1167), 1, - anon_sym_RBRACK, - STATE(857), 1, + ACTIONS(1137), 1, + anon_sym_LPAREN, + ACTIONS(1139), 1, + anon_sym_STAR, + ACTIONS(1145), 1, + anon_sym_await, + ACTIONS(1169), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1026), 1, sym_string, - STATE(1283), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1712), 1, + STATE(1969), 1, sym_expression, - STATE(2666), 1, - sym__collection_elements, - STATE(2716), 1, + STATE(2534), 1, + sym_parenthesized_list_splat, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2517), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(689), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36816,7 +37381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36833,46 +37398,46 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11134] = 28, + [11242] = 28, ACTIONS(789), 1, anon_sym_LBRACK, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1169), 1, + ACTIONS(1171), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1685), 1, sym_expression, - STATE(2273), 1, - sym_yield, - STATE(2466), 1, + STATE(2378), 1, sym_list_splat, - STATE(2467), 1, + STATE(2381), 1, sym_parenthesized_list_splat, - STATE(2698), 1, + STATE(2456), 1, + sym_yield, + STATE(2673), 1, sym__named_expression_lhs, - STATE(2743), 1, + STATE(2717), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, @@ -36880,14 +37445,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -36896,7 +37461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36904,7 +37469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -36921,68 +37486,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11250] = 26, - ACTIONS(721), 1, + [11358] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1055), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, - anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, ACTIONS(1171), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(961), 1, sym_primary_expression, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1685), 1, sym_expression, - STATE(2516), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2456), 1, + sym_yield, + STATE(2673), 1, sym__named_expression_lhs, + STATE(2717), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + STATE(2309), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -36990,7 +37556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37007,68 +37573,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11362] = 26, - ACTIONS(721), 1, + [11472] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1055), 1, - anon_sym_LPAREN, - ACTIONS(1061), 1, - anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, anon_sym_await, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1153), 1, + sym_identifier, ACTIONS(1173), 1, - anon_sym_RPAREN, - STATE(953), 1, + anon_sym_RBRACK, + STATE(879), 1, sym_primary_expression, - STATE(995), 1, + STATE(968), 1, sym_string, - STATE(1301), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1718), 1, sym_expression, - STATE(2516), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2670), 1, + sym__collection_elements, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2375), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37076,7 +37642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37093,68 +37659,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11474] = 26, - ACTIONS(721), 1, + [11584] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1055), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, - anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1175), 1, + ACTIONS(1157), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(961), 1, sym_primary_expression, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1687), 1, sym_expression, - STATE(2516), 1, + STATE(2378), 1, + sym_list_splat, + STATE(2381), 1, sym_parenthesized_list_splat, - STATE(2638), 1, - sym__named_expression_lhs, + STATE(2384), 1, + sym_yield, + STATE(2667), 1, + sym__collection_elements, + STATE(2673), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37162,7 +37730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37179,40 +37747,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11586] = 26, + [11700] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1177), 1, + ACTIONS(1175), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -37220,18 +37788,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -37240,7 +37808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37248,7 +37816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37265,69 +37833,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11698] = 27, - ACTIONS(789), 1, + [11812] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(849), 1, - anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(861), 1, - anon_sym_yield, - ACTIONS(1071), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1139), 1, + anon_sym_STAR, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1149), 1, + ACTIONS(1177), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1678), 1, + STATE(1969), 1, sym_expression, - STATE(2456), 1, - sym_yield, - STATE(2698), 1, + STATE(2534), 1, + sym_parenthesized_list_splat, + STATE(2661), 1, sym__named_expression_lhs, - STATE(2712), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - STATE(2287), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + STATE(2517), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37335,7 +37902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37352,68 +37919,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11812] = 26, - ACTIONS(699), 1, + [11924] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(829), 1, - anon_sym_STAR, - ACTIONS(1155), 1, + ACTIONS(1135), 1, sym_identifier, + ACTIONS(1137), 1, + anon_sym_LPAREN, + ACTIONS(1139), 1, + anon_sym_STAR, + ACTIONS(1145), 1, + anon_sym_await, ACTIONS(1179), 1, - anon_sym_RBRACK, - STATE(857), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1026), 1, sym_string, - STATE(1283), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1715), 1, + STATE(1969), 1, sym_expression, - STATE(2657), 1, - sym__collection_elements, - STATE(2716), 1, + STATE(2534), 1, + sym_parenthesized_list_splat, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2517), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(689), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37421,7 +37988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37438,70 +38005,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [11924] = 28, - ACTIONS(789), 1, + [12036] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(849), 1, - anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(861), 1, - anon_sym_yield, - ACTIONS(1071), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1139), 1, + anon_sym_STAR, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1165), 1, + ACTIONS(1181), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1693), 1, + STATE(1969), 1, sym_expression, - STATE(2318), 1, - sym_list_splat, - STATE(2325), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2378), 1, - sym_yield, - STATE(2647), 1, - sym__collection_elements, - STATE(2698), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + STATE(2517), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37509,7 +38074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37526,40 +38091,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12040] = 26, + [12148] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1181), 1, + ACTIONS(1183), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -37567,18 +38132,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -37587,7 +38152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37595,7 +38160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37612,68 +38177,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12152] = 26, - ACTIONS(721), 1, + [12260] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1055), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, - anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1183), 1, + ACTIONS(1185), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(961), 1, sym_primary_expression, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1695), 1, sym_expression, - STATE(2516), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2409), 1, + sym_yield, + STATE(2598), 1, + sym__collection_elements, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + STATE(2309), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37681,7 +38247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37698,68 +38264,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12264] = 26, - ACTIONS(721), 1, + [12374] = 26, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1055), 1, - anon_sym_LPAREN, - ACTIONS(1061), 1, - anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1185), 1, - anon_sym_RPAREN, - STATE(953), 1, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1187), 1, + anon_sym_RBRACK, + STATE(879), 1, sym_primary_expression, - STATE(995), 1, + STATE(968), 1, sym_string, - STATE(1301), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1700), 1, sym_expression, - STATE(2516), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2665), 1, + sym__collection_elements, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2375), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37767,7 +38333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37784,40 +38350,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12376] = 26, + [12486] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1187), 1, + ACTIONS(1189), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -37825,18 +38391,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -37845,7 +38411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -37853,7 +38419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -37870,155 +38436,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12488] = 27, - ACTIONS(789), 1, + [12598] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(849), 1, - anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(861), 1, - anon_sym_yield, - ACTIONS(1071), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1139), 1, + anon_sym_STAR, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1191), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1969), 1, sym_expression, - STATE(2401), 1, - sym_yield, - STATE(2589), 1, - sym__collection_elements, - STATE(2698), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(795), 2, - sym_ellipsis, - sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - STATE(2287), 2, - sym_list_splat, + STATE(2534), 1, sym_parenthesized_list_splat, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1077), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(777), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1807), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1331), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [12602] = 26, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(829), 1, - anon_sym_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1191), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_primary_expression, - STATE(969), 1, - sym_string, - STATE(1283), 1, - sym_list_splat_pattern, - STATE(1705), 1, - sym_expression, - STATE(2716), 1, + STATE(2661), 1, sym__named_expression_lhs, - STATE(2719), 1, - sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2517), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(689), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38026,7 +38505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38043,70 +38522,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12714] = 28, - ACTIONS(789), 1, + [12710] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(849), 1, - anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(861), 1, - anon_sym_yield, - ACTIONS(1071), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1139), 1, + anon_sym_STAR, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1189), 1, + ACTIONS(1193), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1699), 1, + STATE(1969), 1, sym_expression, - STATE(2401), 1, - sym_yield, - STATE(2466), 1, - sym_list_splat, - STATE(2467), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2589), 1, - sym__collection_elements, - STATE(2698), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + STATE(2517), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38114,7 +38591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38131,40 +38608,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12830] = 26, + [12822] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1193), 1, + ACTIONS(1195), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -38172,18 +38649,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -38192,7 +38669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38200,7 +38677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38217,40 +38694,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [12942] = 26, + [12934] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1195), 1, + ACTIONS(1197), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -38258,18 +38735,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -38278,7 +38755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38286,7 +38763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38303,40 +38780,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13054] = 26, + [13046] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1197), 1, + ACTIONS(1199), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -38344,18 +38821,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -38364,7 +38841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38372,7 +38849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38389,42 +38866,42 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13166] = 27, + [13158] = 27, ACTIONS(789), 1, anon_sym_LBRACK, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1169), 1, + ACTIONS(1161), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1676), 1, + STATE(1701), 1, sym_expression, - STATE(2273), 1, + STATE(2293), 1, sym_yield, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, - STATE(2743), 1, + STATE(2744), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, @@ -38432,17 +38909,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2287), 2, + STATE(2309), 2, sym_list_splat, sym_parenthesized_list_splat, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -38451,7 +38928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38459,7 +38936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38476,7 +38953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13280] = 26, + [13272] = 26, ACTIONS(699), 1, anon_sym_LBRACK, ACTIONS(703), 1, @@ -38493,24 +38970,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(823), 1, anon_sym_await, - ACTIONS(829), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(1155), 1, + ACTIONS(1153), 1, sym_identifier, - ACTIONS(1199), 1, + ACTIONS(1201), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1283), 1, + STATE(1165), 1, sym_list_splat_pattern, STATE(1709), 1, sym_expression, - STATE(2716), 1, - sym__named_expression_lhs, - STATE(2775), 1, + STATE(2617), 1, sym__collection_elements, + STATE(2784), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -38528,7 +39005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2375), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -38537,7 +39014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38545,7 +39022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38562,61 +39039,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13392] = 28, + [13384] = 28, ACTIONS(789), 1, anon_sym_LBRACK, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1201), 1, + ACTIONS(1203), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1665), 1, + STATE(1680), 1, sym_expression, - STATE(2238), 1, + STATE(2255), 1, sym_list_splat, - STATE(2239), 1, + STATE(2256), 1, sym_parenthesized_list_splat, - STATE(2352), 1, + STATE(2356), 1, sym_yield, - STATE(2602), 1, - sym__collection_elements, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, + STATE(2736), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -38625,7 +39102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38633,7 +39110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38650,40 +39127,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13508] = 26, + [13500] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1203), 1, + ACTIONS(1205), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -38691,18 +39168,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -38711,7 +39188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38719,7 +39196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38736,40 +39213,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13620] = 26, + [13612] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1205), 1, + ACTIONS(1207), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -38777,18 +39254,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -38797,7 +39274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38805,7 +39282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38822,40 +39299,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13732] = 26, + [13724] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1207), 1, + ACTIONS(1209), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -38863,18 +39340,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -38883,7 +39360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38891,7 +39368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38908,40 +39385,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13844] = 26, + [13836] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1209), 1, + ACTIONS(1211), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -38949,18 +39426,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -38969,7 +39446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -38977,7 +39454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -38994,155 +39471,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [13956] = 27, - ACTIONS(789), 1, + [13948] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(849), 1, - anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(861), 1, - anon_sym_yield, - ACTIONS(1071), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1139), 1, + anon_sym_STAR, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1201), 1, + ACTIONS(1213), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1665), 1, + STATE(1969), 1, sym_expression, - STATE(2352), 1, - sym_yield, - STATE(2602), 1, - sym__collection_elements, - STATE(2698), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(795), 2, - sym_ellipsis, - sym_float, - ACTIONS(1079), 2, - anon_sym_match, - anon_sym_type, - STATE(2287), 2, - sym_list_splat, + STATE(2534), 1, sym_parenthesized_list_splat, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1077), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(777), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1807), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1331), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [14070] = 26, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, - anon_sym_lambda, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(829), 1, - anon_sym_STAR, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1211), 1, - anon_sym_RBRACK, - STATE(857), 1, - sym_primary_expression, - STATE(969), 1, - sym_string, - STATE(1283), 1, - sym_list_splat_pattern, - STATE(1716), 1, - sym_expression, - STATE(2592), 1, - sym__collection_elements, - STATE(2716), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2517), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(689), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39150,7 +39540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39167,42 +39557,46 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14182] = 27, + [14060] = 28, ACTIONS(789), 1, anon_sym_LBRACK, ACTIONS(793), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(849), 1, + ACTIONS(871), 1, anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1213), 1, + ACTIONS(1215), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1717), 1, + STATE(1675), 1, sym_expression, - STATE(2316), 1, + STATE(2255), 1, + sym_list_splat, + STATE(2256), 1, + sym_parenthesized_list_splat, + STATE(2334), 1, sym_yield, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, - STATE(2737), 1, + STATE(2697), 1, sym__collection_elements, ACTIONS(3), 2, sym_comment, @@ -39210,17 +39604,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2287), 2, - sym_list_splat, - sym_parenthesized_list_splat, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -39229,7 +39620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39237,7 +39628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39254,68 +39645,155 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14296] = 26, - ACTIONS(721), 1, + [14176] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1055), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, - anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1215), 1, + ACTIONS(1203), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(961), 1, sym_primary_expression, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1680), 1, sym_expression, - STATE(2516), 1, + STATE(2356), 1, + sym_yield, + STATE(2673), 1, + sym__named_expression_lhs, + STATE(2736), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(795), 2, + sym_ellipsis, + sym_float, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + STATE(2309), 2, + sym_list_splat, sym_parenthesized_list_splat, - STATE(2638), 1, + ACTIONS(791), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1113), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1827), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1390), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [14290] = 26, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(803), 1, + anon_sym_LPAREN, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, + anon_sym_lambda, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1217), 1, + anon_sym_RBRACK, + STATE(879), 1, + sym_primary_expression, + STATE(968), 1, + sym_string, + STATE(1165), 1, + sym_list_splat_pattern, + STATE(1722), 1, + sym_expression, + STATE(2601), 1, + sym__collection_elements, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2375), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39323,7 +39801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39340,40 +39818,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14408] = 26, + [14402] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1217), 1, + ACTIONS(1219), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -39381,18 +39859,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -39401,7 +39879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39409,7 +39887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39426,40 +39904,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14520] = 26, + [14514] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1219), 1, + ACTIONS(1221), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -39467,18 +39945,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -39487,7 +39965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39495,7 +39973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39512,40 +39990,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14632] = 26, + [14626] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1221), 1, + ACTIONS(1223), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -39553,18 +40031,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -39573,7 +40051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39581,7 +40059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39598,69 +40076,68 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14744] = 27, - ACTIONS(789), 1, + [14738] = 26, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(849), 1, - anon_sym_STAR, - ACTIONS(857), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(861), 1, - anon_sym_yield, - ACTIONS(1071), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1073), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1081), 1, + ACTIONS(1139), 1, + anon_sym_STAR, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1147), 1, + ACTIONS(1225), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1683), 1, + STATE(1969), 1, sym_expression, - STATE(2322), 1, - sym_yield, - STATE(2659), 1, - sym__collection_elements, - STATE(2698), 1, + STATE(2534), 1, + sym_parenthesized_list_splat, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - STATE(2287), 2, - sym_list_splat, - sym_parenthesized_list_splat, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + STATE(2517), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39668,7 +40145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39685,68 +40162,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14858] = 26, - ACTIONS(699), 1, + [14850] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(803), 1, - anon_sym_LPAREN, - ACTIONS(817), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(821), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(829), 1, - anon_sym_STAR, - ACTIONS(1155), 1, + ACTIONS(1025), 1, + anon_sym_LPAREN, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1223), 1, - anon_sym_RBRACK, - STATE(857), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1215), 1, + anon_sym_RPAREN, + STATE(961), 1, sym_primary_expression, - STATE(969), 1, + STATE(1037), 1, sym_string, - STATE(1283), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1713), 1, + STATE(1675), 1, sym_expression, - STATE(2614), 1, - sym__collection_elements, - STATE(2716), 1, + STATE(2334), 1, + sym_yield, + STATE(2673), 1, sym__named_expression_lhs, + STATE(2697), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + STATE(2309), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(689), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39754,7 +40232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39771,7 +40249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [14970] = 26, + [14964] = 26, ACTIONS(699), 1, anon_sym_LBRACK, ACTIONS(703), 1, @@ -39788,23 +40266,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_yield, ACTIONS(823), 1, anon_sym_await, - ACTIONS(829), 1, + ACTIONS(853), 1, anon_sym_STAR, - ACTIONS(1155), 1, + ACTIONS(1153), 1, sym_identifier, - ACTIONS(1225), 1, + ACTIONS(1227), 1, anon_sym_RBRACK, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1283), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1714), 1, + STATE(1715), 1, sym_expression, - STATE(2700), 1, + STATE(2745), 1, sym__collection_elements, - STATE(2716), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -39823,7 +40301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2280), 3, + STATE(2375), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -39832,7 +40310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39840,7 +40318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39857,40 +40335,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15082] = 26, + [15076] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1227), 1, + ACTIONS(1229), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -39898,18 +40376,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -39918,7 +40396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -39926,7 +40404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -39943,40 +40421,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15194] = 26, + [15188] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1229), 1, + ACTIONS(1231), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -39984,18 +40462,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -40004,7 +40482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40012,7 +40490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40029,40 +40507,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15306] = 26, + [15300] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1231), 1, + ACTIONS(1233), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40070,18 +40548,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -40090,7 +40568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40098,7 +40576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40115,40 +40593,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15418] = 26, + [15412] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1233), 1, + ACTIONS(1235), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40156,18 +40634,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -40176,7 +40654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40184,7 +40662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40201,68 +40679,69 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15530] = 26, - ACTIONS(721), 1, + [15524] = 27, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1055), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, - anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1235), 1, + ACTIONS(1237), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(961), 1, sym_primary_expression, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1723), 1, sym_expression, - STATE(2516), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2401), 1, + sym_yield, + STATE(2673), 1, sym__named_expression_lhs, + STATE(2776), 1, + sym__collection_elements, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + STATE(2309), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40270,7 +40749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40287,40 +40766,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15642] = 26, + [15638] = 26, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1139), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1145), 1, anon_sym_await, - ACTIONS(1237), 1, + ACTIONS(1239), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1969), 1, sym_expression, - STATE(2516), 1, + STATE(2534), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40328,18 +40807,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2517), 3, sym_list_splat, sym_dictionary_splat, sym_keyword_argument, @@ -40348,7 +40827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40356,7 +40835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40373,68 +40852,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [15754] = 26, - ACTIONS(721), 1, + [15750] = 28, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(871), 1, + anon_sym_STAR, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1053), 1, - sym_identifier, - ACTIONS(1055), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1025), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, - anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1239), 1, + ACTIONS(1185), 1, anon_sym_RPAREN, - STATE(953), 1, + STATE(961), 1, sym_primary_expression, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1695), 1, sym_expression, - STATE(2516), 1, + STATE(2272), 1, + sym_list_splat, + STATE(2273), 1, sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2409), 1, + sym_yield, + STATE(2598), 1, + sym__collection_elements, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, - sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40442,7 +40923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40468,11 +40949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1117), 1, anon_sym_await, ACTIONS(1241), 1, anon_sym_RPAREN, @@ -40480,15 +40961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(1247), 1, anon_sym_lambda, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1804), 1, sym_expression, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40496,13 +40977,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1113), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2075), 2, + STATE(2023), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(791), 3, @@ -40518,7 +40999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40526,7 +41007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40552,11 +41033,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1117), 1, anon_sym_await, ACTIONS(1243), 1, anon_sym_STAR, @@ -40564,15 +41045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1249), 1, anon_sym_RPAREN, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1804), 1, sym_expression, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40580,13 +41061,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(1113), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2075), 2, + STATE(2023), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(791), 3, @@ -40602,7 +41083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40610,7 +41091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40628,9 +41109,9 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16084] = 19, - ACTIONS(299), 1, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, @@ -40640,25 +41121,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(662), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1116), 1, + STATE(1048), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(259), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -40666,19 +41147,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(308), 5, + ACTIONS(300), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(312), 5, + ACTIONS(304), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(265), 9, + ACTIONS(257), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -40688,7 +41169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40712,15 +41193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(1035), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, ACTIONS(1253), 1, sym_identifier, @@ -40728,15 +41209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, ACTIONS(1257), 1, anon_sym_STAR, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1882), 1, + STATE(1887), 1, sym_expression, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -40744,18 +41225,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2507), 3, + STATE(2532), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -40764,7 +41245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40772,7 +41253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40790,52 +41271,52 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16290] = 25, - ACTIONS(779), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1081), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1247), 1, + ACTIONS(1263), 1, + anon_sym_RBRACK, + ACTIONS(1265), 1, anon_sym_lambda, - ACTIONS(1259), 1, - anon_sym_RPAREN, - STATE(950), 1, + STATE(879), 1, sym_primary_expression, - STATE(985), 1, + STATE(968), 1, sym_string, - STATE(1320), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1828), 1, sym_expression, - STATE(2698), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(807), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1079), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2075), 2, + STATE(2000), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(791), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -40843,12 +41324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(777), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40856,7 +41337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40874,65 +41355,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16399] = 25, - ACTIONS(721), 1, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(861), 1, - anon_sym_yield, - ACTIONS(1035), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1055), 1, - anon_sym_LPAREN, - ACTIONS(1253), 1, + ACTIONS(1153), 1, sym_identifier, - ACTIONS(1257), 1, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1263), 1, - anon_sym_RPAREN, - STATE(953), 1, + ACTIONS(1265), 1, + anon_sym_lambda, + ACTIONS(1269), 1, + anon_sym_RBRACK, + STATE(879), 1, sym_primary_expression, - STATE(995), 1, + STATE(968), 1, sym_string, - STATE(1301), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1882), 1, + STATE(1828), 1, sym_expression, - STATE(2638), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(807), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + STATE(2000), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, - anon_sym_print, + ACTIONS(1267), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - STATE(2507), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(711), 4, + anon_sym_for, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -40940,7 +41421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -40958,65 +41439,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16508] = 25, - ACTIONS(779), 1, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1081), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1249), 1, + anon_sym_RBRACK, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1247), 1, - anon_sym_lambda, ACTIONS(1265), 1, - anon_sym_RPAREN, - STATE(950), 1, + anon_sym_lambda, + STATE(879), 1, sym_primary_expression, - STATE(985), 1, + STATE(968), 1, sym_string, - STATE(1320), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1828), 1, sym_expression, - STATE(2698), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1077), 2, + ACTIONS(807), 2, anon_sym_print, anon_sym_exec, - ACTIONS(1079), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2075), 2, + STATE(2000), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(791), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, + ACTIONS(1251), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(777), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41024,7 +41505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41042,65 +41523,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16617] = 25, - ACTIONS(691), 1, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1249), 1, - anon_sym_RBRACK, - ACTIONS(1269), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1247), 1, anon_sym_lambda, - STATE(857), 1, + ACTIONS(1269), 1, + anon_sym_RPAREN, + STATE(961), 1, sym_primary_expression, - STATE(969), 1, + STATE(1037), 1, sym_string, - STATE(1283), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1804), 1, sym_expression, - STATE(2716), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(807), 2, + ACTIONS(1113), 2, anon_sym_print, anon_sym_exec, - ACTIONS(809), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2072), 2, + STATE(2023), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(701), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1251), 3, + ACTIONS(1267), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(689), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41108,7 +41589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41126,65 +41607,65 @@ static const uint16_t ts_small_parse_table[] = { sym_concatenated_string, sym_await, [16726] = 25, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(893), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1259), 1, - anon_sym_RBRACE, + ACTIONS(1255), 1, + anon_sym_RBRACK, + ACTIONS(1271), 1, + sym_identifier, ACTIONS(1273), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(1275), 1, - anon_sym_lambda, - STATE(893), 1, + anon_sym_STAR, + STATE(974), 1, sym_primary_expression, - STATE(958), 1, + STATE(1111), 1, sym_string, - STATE(1259), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(1936), 1, sym_expression, - STATE(2645), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(881), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - STATE(2094), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1261), 3, - anon_sym_if, + ACTIONS(995), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(733), 4, + anon_sym_exec, + STATE(2576), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41192,7 +41673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41209,66 +41690,148 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16835] = 25, - ACTIONS(735), 1, + [16835] = 23, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, - anon_sym_not, - ACTIONS(893), 1, - anon_sym_await, - ACTIONS(1241), 1, - anon_sym_RBRACE, - ACTIONS(1273), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(985), 1, + anon_sym_not, + ACTIONS(987), 1, anon_sym_lambda, - STATE(893), 1, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, + anon_sym_await, + STATE(911), 1, sym_primary_expression, - STATE(958), 1, + STATE(984), 1, sym_string, - STATE(1259), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(1770), 1, sym_expression, - STATE(2645), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(1097), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1095), 3, anon_sym_print, + anon_sym_async, anon_sym_exec, - ACTIONS(881), 2, + ACTIONS(664), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1277), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1769), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1162), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [16940] = 25, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(985), 1, + anon_sym_not, + ACTIONS(987), 1, + anon_sym_lambda, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, + anon_sym_await, + ACTIONS(1279), 1, + anon_sym_LPAREN, + ACTIONS(1281), 1, + anon_sym_STAR, + ACTIONS(1283), 1, + anon_sym_RBRACE, + STATE(911), 1, + sym_primary_expression, + STATE(984), 1, + sym_string, + STATE(1232), 1, + sym_list_splat_pattern, + STATE(1947), 1, + sym_expression, + STATE(2756), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - STATE(2094), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1245), 3, - anon_sym_if, + ACTIONS(1095), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(733), 4, + anon_sym_exec, + STATE(2500), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41276,7 +41839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41293,7 +41856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [16944] = 25, + [17049] = 25, ACTIONS(735), 1, anon_sym_LPAREN, ACTIONS(743), 1, @@ -41302,27 +41865,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(753), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(887), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(893), 1, + ACTIONS(847), 1, anon_sym_await, ACTIONS(1249), 1, anon_sym_RBRACE, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_lambda, - STATE(893), 1, + STATE(880), 1, sym_primary_expression, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(1795), 1, sym_expression, - STATE(2645), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -41330,13 +41893,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(833), 2, anon_sym_print, anon_sym_exec, - ACTIONS(881), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - STATE(2094), 2, + STATE(2019), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(745), 3, @@ -41352,7 +41915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41360,7 +41923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41377,38 +41940,34 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17053] = 25, + [17158] = 23, + ACTIONS(666), 1, + anon_sym_LPAREN, ACTIONS(674), 1, anon_sym_LBRACK, ACTIONS(678), 1, anon_sym_LBRACE, ACTIONS(684), 1, sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, + ACTIONS(977), 1, + anon_sym_STAR, ACTIONS(985), 1, anon_sym_not, ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1135), 1, + ACTIONS(1089), 1, sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1099), 1, anon_sym_await, - ACTIONS(1263), 1, - anon_sym_RBRACE, - ACTIONS(1277), 1, - anon_sym_LPAREN, - ACTIONS(1279), 1, - anon_sym_STAR, - STATE(901), 1, + STATE(911), 1, sym_primary_expression, - STATE(975), 1, + STATE(984), 1, sym_string, - STATE(1197), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1968), 1, + STATE(1770), 1, sym_expression, - STATE(2650), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -41416,26 +41975,28 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2529), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, + ACTIONS(1289), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, STATE(1769), 7, sym_named_expression, sym_as_pattern, @@ -41444,7 +42005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41461,66 +42022,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17162] = 25, - ACTIONS(721), 1, + [17263] = 25, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1053), 1, + ACTIONS(1007), 1, + anon_sym_await, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1055), 1, + ACTIONS(1273), 1, anon_sym_LPAREN, - ACTIONS(1061), 1, + ACTIONS(1275), 1, anon_sym_STAR, - ACTIONS(1067), 1, - anon_sym_STAR_STAR, - ACTIONS(1069), 1, - anon_sym_await, - STATE(953), 1, + ACTIONS(1283), 1, + anon_sym_RBRACK, + STATE(974), 1, sym_primary_expression, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1952), 1, + STATE(1936), 1, sym_expression, - STATE(2516), 1, - sym_parenthesized_list_splat, - STATE(2638), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1065), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1063), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2512), 3, + STATE(2576), 3, sym_list_splat, - sym_dictionary_splat, - sym_keyword_argument, - ACTIONS(711), 4, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41528,7 +42089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41545,66 +42106,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17271] = 25, - ACTIONS(691), 1, + [17372] = 25, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(823), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1265), 1, - anon_sym_RBRACK, - ACTIONS(1269), 1, + ACTIONS(1241), 1, + anon_sym_RBRACE, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_lambda, - STATE(857), 1, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(971), 1, sym_string, - STATE(1283), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1795), 1, sym_expression, - STATE(2716), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(807), 2, + ACTIONS(833), 2, anon_sym_print, anon_sym_exec, - ACTIONS(809), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - STATE(2072), 2, + STATE(2019), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(701), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1267), 3, + ACTIONS(1245), 3, anon_sym_if, anon_sym_async, anon_sym_for, - ACTIONS(689), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41612,7 +42173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41629,66 +42190,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17380] = 25, - ACTIONS(765), 1, + [17481] = 25, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(821), 1, - anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(1037), 1, + anon_sym_STAR_STAR, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1263), 1, - anon_sym_RBRACK, - ACTIONS(1281), 1, + ACTIONS(1135), 1, sym_identifier, - ACTIONS(1283), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1139), 1, anon_sym_STAR, + ACTIONS(1145), 1, + anon_sym_await, STATE(963), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1026), 1, sym_string, - STATE(1444), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1954), 1, + STATE(1969), 1, sym_expression, - STATE(2585), 1, + STATE(2534), 1, + sym_parenthesized_list_splat, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(1143), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(1141), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2574), 3, + STATE(2517), 3, sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(755), 4, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41696,7 +42257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41713,64 +42274,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17489] = 23, - ACTIONS(666), 1, + [17590] = 25, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(1135), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1117), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1243), 1, + anon_sym_STAR, + ACTIONS(1247), 1, + anon_sym_lambda, + ACTIONS(1263), 1, + anon_sym_RPAREN, + STATE(961), 1, sym_primary_expression, - STATE(975), 1, + STATE(1037), 1, sym_string, - STATE(1197), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1804), 1, sym_expression, - STATE(2650), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(1113), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + STATE(2023), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, - anon_sym_print, + ACTIONS(1261), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(664), 4, + anon_sym_for, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1287), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1769), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41778,7 +42341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41795,66 +42358,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17594] = 25, - ACTIONS(765), 1, + [17699] = 25, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(821), 1, + ACTIONS(845), 1, anon_sym_yield, - ACTIONS(1003), 1, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1007), 1, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, anon_sym_await, ACTIONS(1255), 1, - anon_sym_RBRACK, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1283), 1, + anon_sym_RBRACE, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1281), 1, anon_sym_STAR, - STATE(963), 1, + STATE(911), 1, sym_primary_expression, - STATE(1081), 1, + STATE(984), 1, sym_string, - STATE(1444), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1954), 1, + STATE(1947), 1, sym_expression, - STATE(2585), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2574), 3, + STATE(2500), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, - ACTIONS(755), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41862,7 +42425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41879,64 +42442,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17703] = 23, - ACTIONS(666), 1, + [17808] = 25, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(1135), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(1145), 1, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(847), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1263), 1, + anon_sym_RBRACE, + ACTIONS(1285), 1, + anon_sym_STAR, + ACTIONS(1287), 1, + anon_sym_lambda, + STATE(880), 1, sym_primary_expression, - STATE(975), 1, + STATE(971), 1, sym_string, - STATE(1197), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1795), 1, sym_expression, - STATE(2650), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(833), 2, + anon_sym_print, + anon_sym_exec, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + STATE(2019), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, - anon_sym_print, + ACTIONS(1261), 3, + anon_sym_if, anon_sym_async, - anon_sym_exec, - ACTIONS(664), 4, + anon_sym_for, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(1289), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1769), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -41944,7 +42509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -41961,7 +42526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17808] = 25, + [17917] = 25, ACTIONS(735), 1, anon_sym_LPAREN, ACTIONS(743), 1, @@ -41970,27 +42535,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(753), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(887), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(893), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1265), 1, + ACTIONS(1269), 1, anon_sym_RBRACE, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_lambda, - STATE(893), 1, + STATE(880), 1, sym_primary_expression, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(1795), 1, sym_expression, - STATE(2645), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -41998,13 +42563,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(879), 2, + ACTIONS(833), 2, anon_sym_print, anon_sym_exec, - ACTIONS(881), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - STATE(2094), 2, + STATE(2019), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(745), 3, @@ -42020,7 +42585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42028,7 +42593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42045,66 +42610,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [17917] = 25, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, + [18026] = 25, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(883), 1, + anon_sym_yield, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(823), 1, + ACTIONS(1077), 1, + anon_sym_lambda, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1137), 1, + anon_sym_LPAREN, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1259), 1, - anon_sym_RBRACK, - ACTIONS(1269), 1, + ACTIONS(1257), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(857), 1, + ACTIONS(1283), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(969), 1, + STATE(1026), 1, sym_string, - STATE(1283), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1887), 1, sym_expression, - STATE(2716), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(807), 2, - anon_sym_print, - anon_sym_exec, - ACTIONS(809), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - STATE(2072), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(701), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1261), 3, - anon_sym_if, + ACTIONS(1067), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - ACTIONS(689), 4, + anon_sym_exec, + STATE(2532), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42112,7 +42677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42129,7 +42694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18026] = 25, + [18135] = 25, ACTIONS(691), 1, anon_sym_LPAREN, ACTIONS(699), 1, @@ -42142,23 +42707,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(823), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1153), 1, sym_identifier, ACTIONS(1241), 1, anon_sym_RBRACK, - ACTIONS(1269), 1, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1265), 1, anon_sym_lambda, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1283), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1828), 1, sym_expression, - STATE(2716), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -42172,7 +42737,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2072), 2, + STATE(2000), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(701), 3, @@ -42188,7 +42753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42196,7 +42761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42213,66 +42778,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18135] = 25, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [18244] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(1255), 1, - anon_sym_RBRACE, - ACTIONS(1277), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(1279), 1, + ACTIONS(652), 1, anon_sym_STAR, - STATE(901), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(837), 1, + anon_sym_STAR_STAR, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1291), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_primary_expression, - STATE(975), 1, + STATE(990), 1, sym_string, - STATE(1197), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1968), 1, + STATE(2039), 1, sym_expression, - STATE(2650), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, - sym_ellipsis, - sym_float, - ACTIONS(1143), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + STATE(2579), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2529), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(664), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42280,7 +42844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42297,65 +42861,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18244] = 25, - ACTIONS(67), 1, + [18352] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(392), 1, sym_identifier, - ACTIONS(398), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1291), 1, - anon_sym_from, + ACTIONS(837), 1, + anon_sym_STAR_STAR, + ACTIONS(1087), 1, + anon_sym_not, ACTIONS(1293), 1, - anon_sym_STAR, - STATE(845), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_primary_expression, - STATE(954), 1, + STATE(990), 1, sym_string, - STATE(1047), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1793), 1, + STATE(2039), 1, sym_expression, - STATE(2523), 1, - sym_expression_list, - STATE(2616), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(387), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(1139), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + STATE(2579), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42363,7 +42927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42380,16 +42944,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18352] = 25, - ACTIONS(299), 1, + [18460] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, @@ -42397,48 +42961,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, ACTIONS(1295), 1, anon_sym_RBRACE, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2039), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - STATE(2498), 2, + STATE(2579), 2, sym_dictionary_splat, sym_pair, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42446,7 +43010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42463,16 +43027,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18460] = 25, - ACTIONS(299), 1, + [18568] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, @@ -42480,48 +43044,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, ACTIONS(1297), 1, anon_sym_RBRACE, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2039), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - STATE(2498), 2, + STATE(2579), 2, sym_dictionary_splat, sym_pair, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42529,7 +43093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42546,64 +43110,148 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18568] = 24, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [18676] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(891), 1, - anon_sym_yield, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(1277), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(1279), 1, + ACTIONS(652), 1, anon_sym_STAR, - STATE(901), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(837), 1, + anon_sym_STAR_STAR, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1299), 1, + anon_sym_RBRACE, + STATE(962), 1, sym_primary_expression, - STATE(975), 1, + STATE(990), 1, sym_string, - STATE(1197), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1968), 1, + STATE(2039), 1, sym_expression, - STATE(2650), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, - sym_ellipsis, - sym_float, - ACTIONS(1143), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + STATE(2579), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(270), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1734), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1419), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [18784] = 25, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(298), 1, + anon_sym_lambda, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(837), 1, + anon_sym_STAR_STAR, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1301), 1, + anon_sym_RBRACE, + STATE(962), 1, + sym_primary_expression, + STATE(990), 1, + sym_string, + STATE(1402), 1, + sym_list_splat_pattern, + STATE(2039), 1, + sym_expression, + STATE(2653), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(277), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + STATE(2579), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2529), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, - ACTIONS(664), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42611,7 +43259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42628,16 +43276,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18674] = 25, - ACTIONS(299), 1, + [18892] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, @@ -42645,48 +43293,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1299), 1, + ACTIONS(1303), 1, anon_sym_RBRACE, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2039), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - STATE(2498), 2, + STATE(2579), 2, sym_dictionary_splat, sym_pair, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1734), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1419), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19000] = 24, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(821), 1, + anon_sym_yield, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, + anon_sym_await, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1273), 1, + anon_sym_LPAREN, + ACTIONS(1275), 1, + anon_sym_STAR, + STATE(974), 1, + sym_primary_expression, + STATE(1111), 1, + sym_string, + STATE(1446), 1, + sym_list_splat_pattern, + STATE(1936), 1, + sym_expression, + STATE(2594), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2576), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42694,7 +43424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42711,36 +43441,36 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18782] = 24, + [19106] = 24, ACTIONS(721), 1, anon_sym_LBRACK, ACTIONS(725), 1, anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(861), 1, + ACTIONS(883), 1, anon_sym_yield, - ACTIONS(1035), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1055), 1, + ACTIONS(1137), 1, anon_sym_LPAREN, ACTIONS(1253), 1, sym_identifier, ACTIONS(1257), 1, anon_sym_STAR, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1882), 1, + STATE(1887), 1, sym_expression, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -42748,18 +43478,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2507), 3, + STATE(2532), 3, sym_list_splat, sym_parenthesized_list_splat, sym_yield, @@ -42768,7 +43498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42776,7 +43506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42793,65 +43523,148 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18888] = 25, - ACTIONS(713), 1, + [19212] = 25, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(298), 1, + anon_sym_lambda, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(652), 1, + anon_sym_STAR, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(837), 1, + anon_sym_STAR_STAR, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1305), 1, + anon_sym_RBRACE, + STATE(962), 1, + sym_primary_expression, + STATE(990), 1, + sym_string, + STATE(1402), 1, + sym_list_splat_pattern, + STATE(2039), 1, + sym_expression, + STATE(2653), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(277), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + STATE(2579), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(270), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1734), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1419), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [19320] = 25, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1035), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1301), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1307), 1, anon_sym_from, - ACTIONS(1303), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(953), 1, + STATE(859), 1, sym_primary_expression, - STATE(995), 1, + STATE(960), 1, sym_string, - STATE(1301), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1857), 1, + STATE(1815), 1, sym_expression, - STATE(2549), 1, + STATE(2547), 1, sym_expression_list, - STATE(2638), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(1139), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(723), 3, + ACTIONS(1093), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42859,7 +43672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42876,7 +43689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [18996] = 25, + [19428] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -42891,23 +43704,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1305), 1, + ACTIONS(1311), 1, anon_sym_from, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1862), 1, + STATE(1859), 1, sym_expression, - STATE(2527), 1, + STATE(2572), 1, sym_expression_list, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -42918,7 +43731,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1139), 2, + ACTIONS(1093), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(767), 3, @@ -42934,7 +43747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -42942,7 +43755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -42959,16 +43772,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19104] = 25, - ACTIONS(299), 1, + [19536] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, @@ -42976,48 +43789,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1309), 1, + ACTIONS(1315), 1, anon_sym_RBRACE, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2039), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - STATE(2498), 2, + STATE(2579), 2, sym_dictionary_splat, sym_pair, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43025,7 +43838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43042,16 +43855,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19212] = 25, - ACTIONS(299), 1, + [19644] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, @@ -43059,48 +43872,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1311), 1, + ACTIONS(1317), 1, anon_sym_RBRACE, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2039), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - STATE(2498), 2, + STATE(2579), 2, sym_dictionary_splat, sym_pair, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43108,7 +43921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43125,65 +43938,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19320] = 25, - ACTIONS(299), 1, + [19752] = 25, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1319), 1, + anon_sym_from, + ACTIONS(1321), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(883), 1, - anon_sym_STAR_STAR, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1313), 1, - anon_sym_RBRACE, - STATE(952), 1, + STATE(963), 1, sym_primary_expression, - STATE(984), 1, + STATE(1026), 1, sym_string, - STATE(1372), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(1860), 1, sym_expression, - STATE(2729), 1, + STATE(2530), 1, + sym_expression_list, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - STATE(2498), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(1069), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1093), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(1067), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43191,7 +44004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43208,7 +44021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19428] = 25, + [19860] = 25, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -43217,29 +44030,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(390), 1, anon_sym_await, ACTIONS(629), 1, anon_sym_LPAREN, ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1317), 1, + ACTIONS(1325), 1, anon_sym_from, - STATE(845), 1, + STATE(859), 1, sym_primary_expression, - STATE(954), 1, + STATE(960), 1, sym_string, - STATE(1047), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1775), 1, + STATE(1767), 1, sym_expression, - STATE(2278), 1, + STATE(2478), 1, sym_expression_list, - STATE(2616), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -43247,17 +44060,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(1315), 2, + ACTIONS(1323), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -43266,7 +44079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43274,7 +44087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43291,65 +44104,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19536] = 25, - ACTIONS(299), 1, + [19968] = 24, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(845), 1, + anon_sym_yield, + ACTIONS(985), 1, + anon_sym_not, + ACTIONS(987), 1, + anon_sym_lambda, + ACTIONS(1089), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(1099), 1, + anon_sym_await, + ACTIONS(1279), 1, anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1281), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(883), 1, - anon_sym_STAR_STAR, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1319), 1, - anon_sym_RBRACE, - STATE(952), 1, + STATE(911), 1, sym_primary_expression, STATE(984), 1, sym_string, - STATE(1372), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(1947), 1, sym_expression, - STATE(2729), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - STATE(2498), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(1097), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(1095), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + STATE(2500), 3, + sym_list_splat, + sym_parenthesized_list_splat, + sym_yield, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43357,7 +44169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43374,16 +44186,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19644] = 25, - ACTIONS(299), 1, + [20074] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, @@ -43391,48 +44203,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1321), 1, + ACTIONS(1327), 1, anon_sym_RBRACE, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2039), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - STATE(2498), 2, + STATE(2579), 2, sym_dictionary_splat, sym_pair, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43440,7 +44252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43457,16 +44269,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19752] = 25, - ACTIONS(299), 1, + [20182] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, @@ -43474,48 +44286,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1323), 1, + ACTIONS(1329), 1, anon_sym_RBRACE, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2039), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - STATE(2498), 2, + STATE(2579), 2, sym_dictionary_splat, sym_pair, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43523,7 +44335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43540,16 +44352,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19860] = 25, - ACTIONS(299), 1, + [20290] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, @@ -43557,48 +44369,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1325), 1, + ACTIONS(1331), 1, anon_sym_RBRACE, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2039), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - STATE(2498), 2, + STATE(2579), 2, sym_dictionary_splat, sym_pair, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43606,7 +44418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43623,16 +44435,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [19968] = 25, - ACTIONS(299), 1, + [20398] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, @@ -43640,48 +44452,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1327), 1, + ACTIONS(1333), 1, anon_sym_RBRACE, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2039), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - STATE(2498), 2, + STATE(2579), 2, sym_dictionary_splat, sym_pair, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43689,7 +44501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43706,16 +44518,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20076] = 25, - ACTIONS(299), 1, + [20506] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, @@ -43723,48 +44535,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1329), 1, + ACTIONS(1335), 1, anon_sym_RBRACE, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2039), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - STATE(2498), 2, + STATE(2579), 2, sym_dictionary_splat, sym_pair, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43772,7 +44584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43789,16 +44601,16 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20184] = 25, - ACTIONS(299), 1, + [20614] = 25, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, @@ -43806,48 +44618,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(883), 1, + ACTIONS(837), 1, anon_sym_STAR_STAR, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1331), 1, + ACTIONS(1337), 1, anon_sym_RBRACE, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(2039), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - STATE(2498), 2, + STATE(2579), 2, sym_dictionary_splat, sym_pair, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43855,7 +44667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43872,65 +44684,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20292] = 25, - ACTIONS(299), 1, + [20722] = 24, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(883), 1, - anon_sym_STAR_STAR, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1333), 1, - anon_sym_RBRACE, - STATE(952), 1, + ACTIONS(1341), 1, + anon_sym_COLON, + STATE(974), 1, sym_primary_expression, - STATE(984), 1, + STATE(1111), 1, sym_string, - STATE(1372), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(1840), 1, sym_expression, - STATE(2729), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - STATE(2498), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1339), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -43938,7 +44748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -43955,36 +44765,40 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20400] = 24, + [20827] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, ACTIONS(765), 1, anon_sym_LBRACK, ACTIONS(769), 1, anon_sym_LBRACE, ACTIONS(775), 1, sym_string_start, - ACTIONS(821), 1, - anon_sym_yield, ACTIONS(1003), 1, anon_sym_not, ACTIONS(1005), 1, anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1285), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(963), 1, + ACTIONS(1343), 1, + anon_sym_COLON, + ACTIONS(1345), 1, + anon_sym_RBRACK, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1954), 1, + STATE(1834), 1, sym_expression, - STATE(2585), 1, + STATE(2491), 1, + sym_slice, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -44003,16 +44817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - STATE(2574), 3, - sym_list_splat, - sym_parenthesized_list_splat, - sym_yield, ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44020,7 +44830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44037,148 +44847,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20506] = 25, - ACTIONS(299), 1, + [20934] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(883), 1, - anon_sym_STAR_STAR, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1335), 1, - anon_sym_RBRACE, - STATE(952), 1, + ACTIONS(1343), 1, + anon_sym_COLON, + ACTIONS(1347), 1, + anon_sym_RBRACK, + STATE(974), 1, sym_primary_expression, - STATE(984), 1, + STATE(1111), 1, sym_string, - STATE(1372), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(1834), 1, sym_expression, - STATE(2729), 1, + STATE(2491), 1, + sym_slice, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - STATE(2498), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1723), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1377), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [20614] = 25, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, - sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(883), 1, - anon_sym_STAR_STAR, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1337), 1, - anon_sym_RBRACE, - STATE(952), 1, - sym_primary_expression, - STATE(984), 1, - sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(2069), 1, - sym_expression, - STATE(2729), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - STATE(2498), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(278), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44186,7 +44912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44203,7 +44929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20722] = 25, + [21041] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -44218,25 +44944,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1341), 1, + ACTIONS(1349), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -44260,7 +44986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44268,7 +44994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44285,72 +45011,66 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20829] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [21148] = 19, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1307), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1343), 1, - anon_sym_RBRACK, - STATE(963), 1, - sym_primary_expression, - STATE(1081), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(990), 1, sym_string, - STATE(1444), 1, + STATE(1048), 1, + sym_primary_expression, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1865), 1, - sym_expression, - STATE(2539), 1, - sym_slice, - STATE(2585), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(259), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(1351), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(304), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1441), 16, + ACTIONS(257), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44367,7 +45087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [20936] = 24, + [21243] = 24, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -44382,21 +45102,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1347), 1, + ACTIONS(1355), 1, anon_sym_COLON, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, STATE(1845), 1, sym_expression, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -44407,7 +45127,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1345), 2, + ACTIONS(1353), 2, anon_sym_COMMA, anon_sym_RBRACK, ACTIONS(767), 3, @@ -44423,7 +45143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44431,7 +45151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44448,7 +45168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21041] = 25, + [21348] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -44463,25 +45183,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1349), 1, + ACTIONS(1357), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -44505,7 +45225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44513,7 +45233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44530,7 +45250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21148] = 25, + [21455] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -44545,25 +45265,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1351), 1, + ACTIONS(1359), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -44587,7 +45307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44595,7 +45315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44612,7 +45332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21255] = 25, + [21562] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -44627,25 +45347,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1353), 1, + ACTIONS(1361), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -44669,7 +45389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44677,7 +45397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44694,7 +45414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21362] = 25, + [21669] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -44709,25 +45429,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1355), 1, + ACTIONS(1363), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -44751,7 +45471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44759,7 +45479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44776,88 +45496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21469] = 24, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1307), 1, - anon_sym_STAR, - ACTIONS(1359), 1, - anon_sym_COLON, - STATE(963), 1, - sym_primary_expression, - STATE(1081), 1, - sym_string, - STATE(1444), 1, - sym_list_splat_pattern, - STATE(1866), 1, - sym_expression, - STATE(2585), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(997), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(1357), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(995), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(755), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1441), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [21574] = 24, + [21776] = 24, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -44866,27 +45505,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(390), 1, anon_sym_await, ACTIONS(629), 1, anon_sym_LPAREN, ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1361), 1, + ACTIONS(1365), 1, anon_sym_from, - STATE(845), 1, + STATE(859), 1, sym_primary_expression, - STATE(954), 1, + STATE(960), 1, sym_string, - STATE(1047), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1791), 1, sym_expression, - STATE(2616), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -44894,17 +45533,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(1287), 2, + ACTIONS(1289), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -44913,7 +45552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -44921,7 +45560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -44938,66 +45577,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21679] = 19, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, + [21881] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1116), 1, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1313), 1, + anon_sym_STAR, + ACTIONS(1343), 1, + anon_sym_COLON, + ACTIONS(1367), 1, + anon_sym_RBRACK, + STATE(974), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1111), 1, + sym_string, + STATE(1446), 1, sym_list_splat_pattern, + STATE(1834), 1, + sym_expression, + STATE(2491), 1, + sym_slice, + STATE(2594), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(310), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(643), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(654), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(755), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(265), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1377), 16, + STATE(1761), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45014,63 +45659,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21774] = 24, - ACTIONS(299), 1, + [21988] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(883), 1, - anon_sym_STAR_STAR, - ACTIONS(1051), 1, - anon_sym_not, - STATE(952), 1, + ACTIONS(1343), 1, + anon_sym_COLON, + ACTIONS(1369), 1, + anon_sym_RBRACK, + STATE(974), 1, sym_primary_expression, - STATE(984), 1, + STATE(1111), 1, sym_string, - STATE(1372), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(2069), 1, + STATE(1834), 1, sym_expression, - STATE(2729), 1, + STATE(2491), 1, + sym_slice, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - STATE(2498), 2, - sym_dictionary_splat, - sym_pair, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45078,7 +45724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45095,63 +45741,146 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21879] = 24, - ACTIONS(67), 1, + [22095] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(629), 1, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1313), 1, + anon_sym_STAR, + ACTIONS(1343), 1, + anon_sym_COLON, + ACTIONS(1371), 1, + anon_sym_RBRACK, + STATE(974), 1, + sym_primary_expression, + STATE(1111), 1, + sym_string, + STATE(1446), 1, + sym_list_splat_pattern, + STATE(1834), 1, + sym_expression, + STATE(2491), 1, + sym_slice, + STATE(2594), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1761), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1449), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [22202] = 25, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, + anon_sym_await, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(845), 1, + ACTIONS(1343), 1, + anon_sym_COLON, + ACTIONS(1373), 1, + anon_sym_RBRACK, + STATE(974), 1, sym_primary_expression, - STATE(954), 1, + STATE(1111), 1, sym_string, - STATE(1047), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1823), 1, + STATE(1834), 1, sym_expression, - STATE(2490), 1, - sym_expression_list, - STATE(2616), 1, + STATE(2491), 1, + sym_slice, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1363), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45159,7 +45888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45176,7 +45905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [21984] = 25, + [22309] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -45191,25 +45920,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1365), 1, + ACTIONS(1375), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -45233,7 +45962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45241,7 +45970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45258,7 +45987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22091] = 25, + [22416] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -45273,25 +46002,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1367), 1, + ACTIONS(1377), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -45315,7 +46044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45323,7 +46052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45340,7 +46069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22198] = 25, + [22523] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -45355,25 +46084,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1369), 1, + ACTIONS(1379), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -45397,7 +46126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45405,7 +46134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45422,10 +46151,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22305] = 19, - ACTIONS(299), 1, + [22630] = 19, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, @@ -45435,43 +46164,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(662), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1116), 1, + STATE(1048), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(259), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, + ACTIONS(643), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(1371), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(312), 5, + ACTIONS(304), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(265), 9, + ACTIONS(257), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -45481,7 +46210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45498,63 +46227,64 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22400] = 24, - ACTIONS(67), 1, + [22725] = 25, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1373), 1, - anon_sym_from, - STATE(845), 1, + ACTIONS(1343), 1, + anon_sym_COLON, + ACTIONS(1381), 1, + anon_sym_RBRACK, + STATE(974), 1, sym_primary_expression, - STATE(954), 1, + STATE(1111), 1, sym_string, - STATE(1047), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1834), 1, sym_expression, - STATE(2616), 1, + STATE(2491), 1, + sym_slice, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1289), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45562,7 +46292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45579,7 +46309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22505] = 25, + [22832] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -45594,25 +46324,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1375), 1, + ACTIONS(1383), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -45636,7 +46366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45644,7 +46374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45661,7 +46391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22612] = 25, + [22939] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -45676,25 +46406,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1377), 1, + ACTIONS(1385), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -45718,7 +46448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45726,7 +46456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45743,7 +46473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22719] = 25, + [23046] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -45758,25 +46488,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1379), 1, + ACTIONS(1387), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -45800,7 +46530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45808,7 +46538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45825,7 +46555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22826] = 25, + [23153] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -45840,25 +46570,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1381), 1, + ACTIONS(1389), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -45882,7 +46612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45890,7 +46620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45907,7 +46637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [22933] = 25, + [23260] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -45922,25 +46652,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1383), 1, + ACTIONS(1391), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -45964,7 +46694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -45972,7 +46702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -45989,7 +46719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23040] = 25, + [23367] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -46004,25 +46734,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1385), 1, + ACTIONS(1393), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -46046,7 +46776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46054,7 +46784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46071,7 +46801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23147] = 25, + [23474] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -46086,25 +46816,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1387), 1, + ACTIONS(1395), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -46128,7 +46858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46136,7 +46866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46153,64 +46883,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23254] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [23581] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1389), 1, - anon_sym_RBRACK, - STATE(963), 1, + ACTIONS(1397), 1, + anon_sym_from, + STATE(859), 1, sym_primary_expression, - STATE(1081), 1, + STATE(960), 1, sym_string, - STATE(1444), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1791), 1, sym_expression, - STATE(2539), 1, - sym_slice, - STATE(2585), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(1277), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46218,7 +46947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46235,7 +46964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23361] = 25, + [23686] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -46250,25 +46979,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1391), 1, + ACTIONS(1399), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -46292,7 +47021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46300,7 +47029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46317,7 +47046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23468] = 25, + [23793] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -46332,25 +47061,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1393), 1, + ACTIONS(1401), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -46374,7 +47103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46382,7 +47111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46399,64 +47128,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23575] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [23900] = 24, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1395), 1, - anon_sym_RBRACK, - STATE(963), 1, + STATE(859), 1, sym_primary_expression, - STATE(1081), 1, + STATE(960), 1, sym_string, - STATE(1444), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1806), 1, sym_expression, - STATE(2539), 1, - sym_slice, - STATE(2585), 1, + STATE(2524), 1, + sym_expression_list, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(1403), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46464,7 +47192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46481,7 +47209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23682] = 25, + [24005] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -46496,25 +47224,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1397), 1, + ACTIONS(1405), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -46538,7 +47266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46546,7 +47274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46563,7 +47291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23789] = 25, + [24112] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -46578,25 +47306,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1399), 1, + ACTIONS(1407), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -46620,7 +47348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46628,7 +47356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46645,7 +47373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [23896] = 25, + [24219] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -46660,25 +47388,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1401), 1, + ACTIONS(1409), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -46702,7 +47430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46710,7 +47438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46727,146 +47455,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24003] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [24326] = 24, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(1007), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1403), 1, - anon_sym_RBRACK, - STATE(963), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(837), 1, + anon_sym_STAR_STAR, + ACTIONS(1087), 1, + anon_sym_not, + STATE(962), 1, sym_primary_expression, - STATE(1081), 1, + STATE(990), 1, sym_string, - STATE(1444), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(2039), 1, sym_expression, - STATE(2539), 1, - sym_slice, - STATE(2585), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(997), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + STATE(2579), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1441), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [24110] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1307), 1, - anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1405), 1, - anon_sym_RBRACK, - STATE(963), 1, - sym_primary_expression, - STATE(1081), 1, - sym_string, - STATE(1444), 1, - sym_list_splat_pattern, - STATE(1865), 1, - sym_expression, - STATE(2539), 1, - sym_slice, - STATE(2585), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(997), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(767), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46874,7 +47519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46891,7 +47536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24217] = 25, + [24431] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -46906,25 +47551,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1407), 1, + ACTIONS(1411), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -46948,7 +47593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -46956,7 +47601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -46973,7 +47618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24324] = 25, + [24538] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -46988,25 +47633,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1409), 1, + ACTIONS(1413), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -47030,7 +47675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47038,7 +47683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47055,7 +47700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24431] = 25, + [24645] = 25, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -47070,25 +47715,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - ACTIONS(1411), 1, + ACTIONS(1415), 1, anon_sym_RBRACK, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1834), 1, sym_expression, - STATE(2539), 1, + STATE(2491), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -47112,7 +47757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47120,7 +47765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47137,72 +47782,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24538] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [24752] = 19, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1307), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1413), 1, - anon_sym_RBRACK, - STATE(963), 1, - sym_primary_expression, - STATE(1081), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(990), 1, sym_string, - STATE(1444), 1, + STATE(1048), 1, + sym_primary_expression, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1865), 1, - sym_expression, - STATE(2539), 1, - sym_slice, - STATE(2585), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(259), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(1351), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(304), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1441), 16, + ACTIONS(257), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47219,64 +47857,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24645] = 25, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [24846] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - ACTIONS(1415), 1, - anon_sym_RBRACK, - STATE(963), 1, + STATE(859), 1, sym_primary_expression, - STATE(1081), 1, + STATE(960), 1, sym_string, - STATE(1444), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1791), 1, sym_expression, - STATE(2539), 1, - sym_slice, - STATE(2585), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(1417), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47284,7 +47919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47301,7 +47936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24752] = 24, + [24948] = 23, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -47316,23 +47951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1803), 1, + STATE(1937), 1, sym_expression, - STATE(2386), 1, - sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -47343,6 +47974,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(997), 2, anon_sym_match, anon_sym_type, + ACTIONS(1353), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, @@ -47356,7 +47990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47364,7 +47998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47381,61 +48015,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24856] = 23, - ACTIONS(691), 1, + [25050] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1269), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1247), 1, anon_sym_lambda, - STATE(857), 1, + STATE(961), 1, sym_primary_expression, - STATE(969), 1, + STATE(1037), 1, sym_string, - STATE(1283), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1804), 1, sym_expression, - STATE(2716), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(2072), 2, + STATE(1974), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(701), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47443,7 +48077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47460,66 +48094,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [24958] = 20, - ACTIONS(292), 1, - anon_sym_in, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(308), 1, - anon_sym_COMMA, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, + [25152] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, + anon_sym_not, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1116), 1, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1313), 1, + anon_sym_STAR, + ACTIONS(1343), 1, + anon_sym_COLON, + STATE(974), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1111), 1, + sym_string, + STATE(1446), 1, sym_list_splat_pattern, + STATE(1832), 1, + sym_expression, + STATE(2297), 1, + sym_slice, + STATE(2594), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(310), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(755), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(265), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1377), 16, + STATE(1761), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47536,61 +48174,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25054] = 23, - ACTIONS(757), 1, + [25256] = 24, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1007), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1321), 1, anon_sym_STAR, + ACTIONS(1419), 1, + anon_sym_RPAREN, STATE(963), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1026), 1, sym_string, - STATE(1444), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1877), 1, + STATE(1904), 1, sym_expression, - STATE(2585), 1, + STATE(2569), 1, + sym_with_item, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(1417), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(767), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47598,7 +48237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47615,61 +48254,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25156] = 23, - ACTIONS(779), 1, + [25360] = 23, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1077), 1, + anon_sym_lambda, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, anon_sym_STAR, - ACTIONS(1247), 1, - anon_sym_lambda, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1913), 1, sym_expression, - STATE(2698), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - STATE(1955), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(791), 3, + ACTIONS(1289), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47677,7 +48316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47694,61 +48333,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25258] = 23, - ACTIONS(67), 1, + [25462] = 23, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(845), 1, + STATE(963), 1, sym_primary_expression, - STATE(954), 1, + STATE(1026), 1, sym_string, - STATE(1047), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1913), 1, sym_expression, - STATE(2616), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(1419), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(1277), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47756,7 +48395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47773,69 +48412,65 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25360] = 23, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [25564] = 19, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1307), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - STATE(963), 1, - sym_primary_expression, - STATE(1081), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(662), 1, + anon_sym_await, + STATE(990), 1, sym_string, - STATE(1444), 1, + STATE(1048), 1, + sym_primary_expression, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1913), 1, - sym_expression, - STATE(2585), 1, - sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(259), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(643), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(1287), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(767), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(304), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1441), 16, + ACTIONS(257), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47852,62 +48487,136 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25462] = 24, - ACTIONS(299), 1, + [25658] = 19, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, - sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, + ACTIONS(652), 1, + anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(662), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1048), 1, + sym_primary_expression, + STATE(1402), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(259), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(300), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(257), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1419), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [25752] = 23, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, + anon_sym_LBRACE, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, + anon_sym_await, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1423), 1, - anon_sym_COLON, - STATE(952), 1, + STATE(974), 1, sym_primary_expression, - STATE(984), 1, + STATE(1111), 1, sym_string, - STATE(1372), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1880), 1, + STATE(1921), 1, sym_expression, - STATE(2506), 1, - sym_with_item, - STATE(2729), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(997), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1289), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(995), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47915,7 +48624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -47932,7 +48641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25566] = 24, + [25854] = 23, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -47947,23 +48656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1813), 1, + STATE(1921), 1, sym_expression, - STATE(2417), 1, - sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -47974,6 +48679,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(997), 2, anon_sym_match, anon_sym_type, + ACTIONS(1277), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, @@ -47987,7 +48695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -47995,7 +48703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48012,127 +48720,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25670] = 10, - ACTIONS(1429), 1, - anon_sym_else, - ACTIONS(1431), 1, - anon_sym_except, - ACTIONS(1433), 1, - anon_sym_except_STAR, - ACTIONS(1435), 1, - anon_sym_finally, - STATE(690), 1, - sym_else_clause, - STATE(753), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(413), 3, - sym_except_clause, - sym_except_group_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1425), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [25956] = 24, + ACTIONS(291), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1427), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(298), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(306), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [25746] = 23, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(823), 1, - anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(392), 1, sym_identifier, - ACTIONS(1269), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_LPAREN, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(857), 1, + STATE(962), 1, sym_primary_expression, - STATE(969), 1, + STATE(990), 1, sym_string, - STATE(1283), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1782), 1, + STATE(1920), 1, sym_expression, - STATE(2716), 1, + STATE(2414), 1, + sym_with_item, + STATE(2653), 1, sym__named_expression_lhs, + STATE(2731), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, - sym_ellipsis, - sym_float, - ACTIONS(809), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - STATE(2052), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48140,7 +48783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48157,7 +48800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25848] = 24, + [26060] = 23, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -48172,23 +48815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1865), 1, + STATE(1959), 1, sym_expression, - STATE(2539), 1, - sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -48199,6 +48838,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(997), 2, anon_sym_match, anon_sym_type, + ACTIONS(1425), 2, + anon_sym_COMMA, + anon_sym_RBRACK, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, @@ -48212,7 +48854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48220,7 +48862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48237,127 +48879,140 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [25952] = 10, - ACTIONS(1429), 1, - anon_sym_else, - ACTIONS(1431), 1, - anon_sym_except, - ACTIONS(1433), 1, - anon_sym_except_STAR, - ACTIONS(1435), 1, - anon_sym_finally, - STATE(681), 1, - sym_else_clause, - STATE(771), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(482), 3, - sym_except_clause, - sym_except_group_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1437), 12, + [26162] = 23, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(367), 1, + sym_identifier, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(637), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(859), 1, + sym_primary_expression, + STATE(960), 1, + sym_string, + STATE(1128), 1, + sym_list_splat_pattern, + STATE(1867), 1, + sym_expression, + STATE(2709), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(379), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(1427), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1439), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(375), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(77), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [26028] = 23, - ACTIONS(713), 1, + STATE(1659), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1091), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26264] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(953), 1, + ACTIONS(1247), 1, + anon_sym_lambda, + STATE(961), 1, sym_primary_expression, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1938), 1, + STATE(1804), 1, sym_expression, - STATE(2638), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(1289), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(723), 3, + STATE(1892), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48365,7 +49020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48382,127 +49037,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26130] = 10, - ACTIONS(1441), 1, - anon_sym_else, - ACTIONS(1443), 1, - anon_sym_except, - ACTIONS(1445), 1, - anon_sym_except_STAR, - ACTIONS(1447), 1, - anon_sym_finally, - STATE(692), 1, - sym_else_clause, - STATE(794), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(587), 3, - sym_except_clause, - sym_except_group_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1437), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [26366] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1439), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(69), 1, anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, + ACTIONS(390), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [26206] = 23, - ACTIONS(757), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(963), 1, + STATE(859), 1, sym_primary_expression, - STATE(1081), 1, + STATE(960), 1, sym_string, - STATE(1444), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1900), 1, + STATE(1867), 1, sym_expression, - STATE(2585), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(1449), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(767), 3, + ACTIONS(1429), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48510,7 +49099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48527,193 +49116,141 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26308] = 10, - ACTIONS(1441), 1, - anon_sym_else, - ACTIONS(1443), 1, - anon_sym_except, - ACTIONS(1445), 1, - anon_sym_except_STAR, - ACTIONS(1447), 1, - anon_sym_finally, - STATE(695), 1, - sym_else_clause, - STATE(795), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(418), 3, - sym_except_clause, - sym_except_group_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1453), 12, - sym__dedent, + [26468] = 24, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(298), 1, + anon_sym_lambda, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, sym_string_start, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(648), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(658), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1451), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + ACTIONS(1087), 1, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [26384] = 10, - ACTIONS(1441), 1, - anon_sym_else, - ACTIONS(1443), 1, - anon_sym_except, - ACTIONS(1445), 1, - anon_sym_except_STAR, - ACTIONS(1447), 1, - anon_sym_finally, - STATE(701), 1, - sym_else_clause, - STATE(811), 1, - sym_finally_clause, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(1431), 1, + anon_sym_COLON, + STATE(962), 1, + sym_primary_expression, + STATE(990), 1, + sym_string, + STATE(1402), 1, + sym_list_splat_pattern, + STATE(1920), 1, + sym_expression, + STATE(2507), 1, + sym_with_item, + STATE(2653), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(587), 3, - sym_except_clause, - sym_except_group_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1457), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, + ACTIONS(277), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(1455), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(270), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [26460] = 23, - ACTIONS(779), 1, + STATE(1734), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1419), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [26572] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1081), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1247), 1, + ACTIONS(1265), 1, anon_sym_lambda, - STATE(950), 1, + STATE(879), 1, sym_primary_expression, - STATE(985), 1, + STATE(968), 1, sym_string, - STATE(1320), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1828), 1, sym_expression, - STATE(2698), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(2075), 2, + STATE(1898), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(791), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48721,7 +49258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48738,61 +49275,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26562] = 23, - ACTIONS(779), 1, + [26674] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1247), 1, - anon_sym_lambda, - STATE(950), 1, + STATE(974), 1, sym_primary_expression, - STATE(985), 1, + STATE(1111), 1, sym_string, - STATE(1320), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1779), 1, + STATE(1980), 1, sym_expression, - STATE(2698), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - STATE(2055), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(791), 3, + ACTIONS(1433), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48800,7 +49337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48817,61 +49354,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26664] = 23, - ACTIONS(691), 1, + [26776] = 24, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(823), 1, + ACTIONS(1005), 1, + anon_sym_lambda, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1269), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(857), 1, + ACTIONS(1343), 1, + anon_sym_COLON, + STATE(974), 1, sym_primary_expression, - STATE(969), 1, + STATE(1111), 1, sym_string, - STATE(1283), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1834), 1, sym_expression, - STATE(2716), 1, + STATE(2491), 1, + sym_slice, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - STATE(1929), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(701), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48879,7 +49417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48896,7 +49434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26766] = 23, + [26880] = 23, ACTIONS(779), 1, anon_sym_LPAREN, ACTIONS(789), 1, @@ -48905,25 +49443,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1117), 1, anon_sym_await, ACTIONS(1243), 1, anon_sym_STAR, ACTIONS(1247), 1, anon_sym_lambda, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1822), 1, + STATE(1811), 1, sym_expression, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -48931,17 +49469,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(1907), 2, + STATE(2022), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -48950,7 +49488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -48958,7 +49496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -48975,62 +49513,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26868] = 24, - ACTIONS(713), 1, + [26982] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1153), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1459), 1, - anon_sym_RPAREN, - STATE(953), 1, + ACTIONS(1265), 1, + anon_sym_lambda, + STATE(879), 1, sym_primary_expression, - STATE(995), 1, + STATE(968), 1, sym_string, - STATE(1301), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1950), 1, + STATE(1828), 1, sym_expression, - STATE(2483), 1, - sym_with_item, - STATE(2638), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + STATE(1906), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49038,7 +49575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49055,62 +49592,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [26972] = 24, - ACTIONS(299), 1, + [27084] = 23, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(400), 1, - sym_identifier, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LPAREN, - STATE(952), 1, + ACTIONS(1265), 1, + anon_sym_lambda, + STATE(879), 1, sym_primary_expression, - STATE(984), 1, + STATE(968), 1, sym_string, - STATE(1372), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1880), 1, + STATE(1799), 1, sym_expression, - STATE(2424), 1, - sym_with_item, - STATE(2623), 1, - sym_with_clause, - STATE(2729), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(809), 2, + anon_sym_match, + anon_sym_type, + STATE(1998), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(807), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49118,7 +49654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49135,65 +49671,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27076] = 19, - ACTIONS(299), 1, + [27186] = 24, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(298), 1, + anon_sym_lambda, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, sym_string_start, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, + ACTIONS(392), 1, + sym_identifier, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1116), 1, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_LPAREN, + ACTIONS(1423), 1, + anon_sym_STAR, + STATE(962), 1, sym_primary_expression, - STATE(1372), 1, + STATE(990), 1, + sym_string, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1920), 1, + sym_expression, + STATE(2414), 1, + sym_with_item, + STATE(2653), 1, + sym__named_expression_lhs, + STATE(2666), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(308), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(265), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1377), 16, + STATE(1734), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49210,127 +49751,140 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27170] = 10, - ACTIONS(1429), 1, - anon_sym_else, - ACTIONS(1431), 1, - anon_sym_except, - ACTIONS(1433), 1, - anon_sym_except_STAR, - ACTIONS(1435), 1, - anon_sym_finally, - STATE(699), 1, - sym_else_clause, - STATE(824), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(428), 3, - sym_except_clause, - sym_except_group_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1453), 12, - sym_string_start, - ts_builtin_sym_end, + [27290] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - anon_sym_STAR, + ACTIONS(699), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(703), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1451), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1265), 1, + anon_sym_lambda, + STATE(879), 1, + sym_primary_expression, + STATE(968), 1, + sym_string, + STATE(1165), 1, + sym_list_splat_pattern, + STATE(1817), 1, + sym_expression, + STATE(2784), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(809), 2, anon_sym_match, + anon_sym_type, + STATE(2013), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(701), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(807), 3, + anon_sym_print, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(689), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [27246] = 23, - ACTIONS(735), 1, + STATE(1719), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1143), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [27392] = 23, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(893), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1265), 1, anon_sym_lambda, - STATE(893), 1, + STATE(879), 1, sym_primary_expression, - STATE(958), 1, + STATE(968), 1, sym_string, - STATE(1259), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(1828), 1, sym_expression, - STATE(2645), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - STATE(1943), 2, + STATE(2000), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49338,7 +49892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49355,73 +49909,83 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27348] = 10, - ACTIONS(1429), 1, - anon_sym_else, - ACTIONS(1431), 1, - anon_sym_except, - ACTIONS(1433), 1, - anon_sym_except_STAR, - ACTIONS(1435), 1, - anon_sym_finally, - STATE(687), 1, - sym_else_clause, - STATE(722), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(482), 3, - sym_except_clause, - sym_except_group_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1457), 12, + [27494] = 20, + ACTIONS(284), 1, + anon_sym_in, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(300), 1, + anon_sym_COMMA, + ACTIONS(308), 1, sym_string_start, - ts_builtin_sym_end, + ACTIONS(648), 1, anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, + ACTIONS(658), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(662), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1048), 1, + sym_primary_expression, + STATE(1402), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(259), 2, + anon_sym_DOT, + anon_sym_SLASH, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(296), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1455), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(654), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(304), 5, sym_integer, sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [27424] = 23, + ACTIONS(257), 9, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PIPE, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + STATE(1419), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [27590] = 23, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -49430,25 +49994,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(390), 1, anon_sym_await, ACTIONS(629), 1, anon_sym_LPAREN, ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(845), 1, + STATE(859), 1, sym_primary_expression, - STATE(954), 1, + STATE(960), 1, sym_string, - STATE(1047), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1791), 1, sym_expression, - STATE(2616), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49456,17 +50020,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(1463), 2, + ACTIONS(1435), 2, sym__newline, anon_sym_SEMI, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49475,7 +50039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49483,7 +50047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49500,61 +50064,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27526] = 23, - ACTIONS(735), 1, + [27692] = 23, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(893), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1247), 1, anon_sym_lambda, - STATE(893), 1, + STATE(961), 1, sym_primary_expression, - STATE(958), 1, + STATE(1037), 1, sym_string, - STATE(1259), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(1803), 1, sym_expression, - STATE(2645), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - STATE(1953), 2, + STATE(2040), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(745), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49562,7 +50126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49579,7 +50143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27628] = 23, + [27794] = 23, ACTIONS(735), 1, anon_sym_LPAREN, ACTIONS(743), 1, @@ -49588,25 +50152,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(753), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(887), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(893), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_lambda, - STATE(893), 1, + STATE(880), 1, sym_primary_expression, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1821), 1, + STATE(1795), 1, sym_expression, - STATE(2645), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49614,17 +50178,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - STATE(2005), 2, + STATE(1965), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49633,7 +50197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49641,7 +50205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49658,7 +50222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27730] = 23, + [27896] = 23, ACTIONS(735), 1, anon_sym_LPAREN, ACTIONS(743), 1, @@ -49667,25 +50231,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(753), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(887), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(893), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1275), 1, + ACTIONS(1287), 1, anon_sym_lambda, - STATE(893), 1, + STATE(880), 1, sym_primary_expression, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1798), 1, + STATE(1813), 1, sym_expression, - STATE(2645), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -49693,17 +50257,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - STATE(2066), 2, + STATE(2016), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -49712,7 +50276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49720,7 +50284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49737,61 +50301,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27832] = 23, - ACTIONS(691), 1, + [27998] = 23, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(823), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1269), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1271), 1, + ACTIONS(1287), 1, anon_sym_lambda, - STATE(857), 1, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(971), 1, sym_string, - STATE(1283), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1784), 1, + STATE(1820), 1, sym_expression, - STATE(2716), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - STATE(2014), 2, + STATE(2028), 2, sym__expression_within_for_in_clause, sym_lambda_within_for_in_clause, - ACTIONS(701), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49799,7 +50363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49816,61 +50380,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [27934] = 23, - ACTIONS(757), 1, + [28100] = 23, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1007), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(963), 1, + ACTIONS(1287), 1, + anon_sym_lambda, + STATE(880), 1, sym_primary_expression, - STATE(1081), 1, + STATE(971), 1, sym_string, - STATE(1444), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1963), 1, + STATE(1795), 1, sym_expression, - STATE(2585), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - ACTIONS(1345), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(767), 3, + STATE(2019), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49878,7 +50442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49895,62 +50459,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28036] = 24, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [28202] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1035), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1465), 1, - anon_sym_RPAREN, - STATE(953), 1, + STATE(859), 1, sym_primary_expression, - STATE(995), 1, + STATE(960), 1, sym_string, - STATE(1301), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1950), 1, + STATE(1867), 1, sym_expression, - STATE(2483), 1, - sym_with_item, - STATE(2638), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(1437), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -49958,7 +50521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -49975,61 +50538,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28140] = 23, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [28304] = 23, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(857), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1071), 1, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(390), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(1247), 1, - anon_sym_lambda, - STATE(950), 1, + STATE(859), 1, sym_primary_expression, - STATE(985), 1, + STATE(960), 1, sym_string, - STATE(1320), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1802), 1, + STATE(1867), 1, sym_expression, - STATE(2698), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - STATE(2065), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(791), 3, + ACTIONS(1439), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50037,7 +50600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50054,61 +50617,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28242] = 23, - ACTIONS(67), 1, + [28406] = 23, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(879), 1, + anon_sym_not, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(845), 1, + ACTIONS(1247), 1, + anon_sym_lambda, + STATE(961), 1, sym_primary_expression, - STATE(954), 1, + STATE(1037), 1, sym_string, - STATE(1047), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1804), 1, sym_expression, - STATE(2616), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(1467), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + STATE(2023), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50116,7 +50679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50133,62 +50696,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28344] = 24, - ACTIONS(299), 1, + [28508] = 24, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, + ACTIONS(652), 1, + anon_sym_STAR, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1469), 1, + ACTIONS(1441), 1, anon_sym_COLON, - STATE(952), 1, + ACTIONS(1443), 1, + anon_sym_STAR2, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1880), 1, + STATE(1857), 1, sym_expression, - STATE(2506), 1, - sym_with_item, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50196,7 +50759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50213,62 +50776,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28448] = 24, - ACTIONS(299), 1, + [28612] = 24, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1321), 1, anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LPAREN, - STATE(952), 1, + ACTIONS(1445), 1, + anon_sym_RPAREN, + STATE(963), 1, sym_primary_expression, - STATE(984), 1, + STATE(1026), 1, sym_string, - STATE(1372), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1880), 1, + STATE(1904), 1, sym_expression, - STATE(2424), 1, + STATE(2569), 1, sym_with_item, - STATE(2637), 1, - sym_with_clause, - STATE(2729), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(1069), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(1067), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50276,7 +50839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50293,127 +50856,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28552] = 10, - ACTIONS(1441), 1, - anon_sym_else, - ACTIONS(1443), 1, - anon_sym_except, - ACTIONS(1445), 1, - anon_sym_except_STAR, - ACTIONS(1447), 1, - anon_sym_finally, - STATE(685), 1, - sym_else_clause, - STATE(783), 1, - sym_finally_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(415), 3, - sym_except_clause, - sym_except_group_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1425), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [28716] = 24, + ACTIONS(291), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1427), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(298), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(306), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [28628] = 23, - ACTIONS(713), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1253), 1, - sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(953), 1, + ACTIONS(1447), 1, + anon_sym_COLON, + STATE(962), 1, sym_primary_expression, - STATE(995), 1, + STATE(990), 1, sym_string, - STATE(1301), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1938), 1, + STATE(1920), 1, sym_expression, - STATE(2638), 1, + STATE(2507), 1, + sym_with_item, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, - sym_ellipsis, - sym_float, - ACTIONS(1029), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(1287), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50421,7 +50919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50438,10 +50936,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28730] = 19, - ACTIONS(299), 1, + [28820] = 19, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, @@ -50451,103 +50949,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(662), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1116), 1, + STATE(1048), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(259), 2, anon_sym_DOT, anon_sym_SLASH, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(643), 2, + ACTIONS(300), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(656), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - ACTIONS(265), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1377), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [28824] = 19, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1116), 1, - sym_primary_expression, - STATE(1372), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(267), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(1371), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -50555,13 +50978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(304), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(265), 9, + ACTIONS(257), 9, anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_AT, @@ -50571,7 +50994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50588,7 +51011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [28918] = 24, + [28914] = 24, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -50603,23 +51026,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1786), 1, + STATE(1789), 1, sym_expression, - STATE(2233), 1, + STATE(2320), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -50643,7 +51066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50651,7 +51074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50668,61 +51091,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29022] = 23, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [29018] = 24, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(823), 1, + ACTIONS(298), 1, + anon_sym_lambda, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, sym_identifier, - ACTIONS(1269), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(652), 1, anon_sym_STAR, - ACTIONS(1271), 1, - anon_sym_lambda, - STATE(857), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1449), 1, + anon_sym_COLON, + ACTIONS(1451), 1, + anon_sym_STAR2, + STATE(962), 1, sym_primary_expression, - STATE(969), 1, + STATE(990), 1, sym_string, - STATE(1283), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1814), 1, + STATE(1871), 1, sym_expression, - STATE(2716), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, - sym_ellipsis, - sym_float, - ACTIONS(809), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - STATE(1892), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50730,7 +51154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50747,7 +51171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29124] = 24, + [29122] = 24, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -50762,23 +51186,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1780), 1, + STATE(1823), 1, sym_expression, - STATE(2245), 1, + STATE(2261), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -50802,7 +51226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50810,7 +51234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50827,61 +51251,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29228] = 23, - ACTIONS(67), 1, + [29226] = 24, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(845), 1, + ACTIONS(1343), 1, + anon_sym_COLON, + STATE(974), 1, sym_primary_expression, - STATE(954), 1, + STATE(1111), 1, sym_string, - STATE(1047), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1810), 1, sym_expression, - STATE(2616), 1, + STATE(2304), 1, + sym_slice, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1471), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50889,7 +51314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50921,23 +51346,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1777), 1, + STATE(1825), 1, sym_expression, - STATE(2288), 1, + STATE(2342), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -50961,7 +51386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -50969,7 +51394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -50986,7 +51411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29434] = 23, + [29434] = 24, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -51001,19 +51426,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(963), 1, + ACTIONS(1343), 1, + anon_sym_COLON, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1913), 1, + STATE(1786), 1, sym_expression, - STATE(2585), 1, + STATE(2366), 1, + sym_slice, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -51024,9 +51453,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(1289), 2, - anon_sym_COMMA, - anon_sym_RBRACK, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, @@ -51040,7 +51466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51048,7 +51474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51065,7 +51491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29536] = 24, + [29538] = 24, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -51080,23 +51506,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1792), 1, + STATE(1794), 1, sym_expression, - STATE(2335), 1, + STATE(2396), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -51120,7 +51546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51128,7 +51554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51145,7 +51571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29640] = 24, + [29642] = 24, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -51160,23 +51586,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1800), 1, + STATE(1802), 1, sym_expression, - STATE(2363), 1, + STATE(2416), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -51200,7 +51626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51208,7 +51634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51225,7 +51651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29744] = 24, + [29746] = 24, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -51240,23 +51666,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1809), 1, + STATE(1805), 1, sym_expression, - STATE(2411), 1, + STATE(2425), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -51280,7 +51706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51288,7 +51714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51305,7 +51731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29848] = 24, + [29850] = 24, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -51320,23 +51746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1339), 1, + ACTIONS(1343), 1, anon_sym_COLON, - STATE(963), 1, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1811), 1, + STATE(1807), 1, sym_expression, - STATE(2421), 1, + STATE(2431), 1, sym_slice, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -51360,7 +51786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51368,7 +51794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51385,62 +51811,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [29952] = 24, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [29954] = 24, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(1007), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_LPAREN, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(1339), 1, - anon_sym_COLON, - STATE(963), 1, + STATE(962), 1, sym_primary_expression, - STATE(1081), 1, + STATE(990), 1, sym_string, - STATE(1444), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1812), 1, + STATE(1920), 1, sym_expression, - STATE(2426), 1, - sym_slice, - STATE(2585), 1, + STATE(2414), 1, + sym_with_item, + STATE(2591), 1, + sym_with_clause, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(997), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51448,7 +51874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51465,65 +51891,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30056] = 19, - ACTIONS(299), 1, + [30058] = 24, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(298), 1, + anon_sym_lambda, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, sym_string_start, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(652), 1, - anon_sym_STAR, + ACTIONS(392), 1, + sym_identifier, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1116), 1, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1421), 1, + anon_sym_LPAREN, + ACTIONS(1423), 1, + anon_sym_STAR, + STATE(962), 1, sym_primary_expression, - STATE(1372), 1, + STATE(990), 1, + sym_string, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1920), 1, + sym_expression, + STATE(2414), 1, + sym_with_item, + STATE(2653), 1, + sym__named_expression_lhs, + STATE(2672), 1, + sym_with_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, - anon_sym_DOT, - anon_sym_SLASH, - ACTIONS(308), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - ACTIONS(265), 9, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_PIPE, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - STATE(1377), 16, + STATE(1734), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51540,62 +51971,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30150] = 24, - ACTIONS(299), 1, + [30162] = 23, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(847), 1, + anon_sym_await, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LPAREN, - STATE(952), 1, + ACTIONS(1287), 1, + anon_sym_lambda, + STATE(880), 1, sym_primary_expression, - STATE(984), 1, + STATE(971), 1, sym_string, - STATE(1372), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1880), 1, + STATE(1795), 1, sym_expression, - STATE(2424), 1, - sym_with_item, - STATE(2656), 1, - sym_with_clause, - STATE(2729), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(835), 2, + anon_sym_match, + anon_sym_type, + STATE(1907), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(833), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51603,7 +52033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51620,62 +52050,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30254] = 24, - ACTIONS(299), 1, + [30264] = 23, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1289), 1, + anon_sym_COLON, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(1461), 1, - anon_sym_LPAREN, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1880), 1, + STATE(1948), 1, sym_expression, - STATE(2424), 1, - sym_with_item, - STATE(2663), 1, - sym_with_clause, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51683,7 +52111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51700,61 +52128,190 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30358] = 23, - ACTIONS(67), 1, + [30365] = 10, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(1453), 1, + anon_sym_for, + ACTIONS(1455), 1, + anon_sym_with, + ACTIONS(1457), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(284), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(300), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(259), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(257), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [30440] = 10, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(1459), 1, + anon_sym_for, + ACTIONS(1461), 1, + anon_sym_with, + ACTIONS(1463), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(284), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(300), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(259), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(257), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [30515] = 23, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(845), 1, + STATE(963), 1, sym_primary_expression, - STATE(954), 1, + STATE(1026), 1, sym_string, - STATE(1047), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1904), 1, sym_expression, - STATE(2616), 1, + STATE(2569), 1, + sym_with_item, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(1473), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51762,7 +52319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51779,61 +52336,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30460] = 23, - ACTIONS(67), 1, + [30616] = 23, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(392), 1, sym_identifier, - ACTIONS(398), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(845), 1, + ACTIONS(1465), 1, + anon_sym_COLON, + STATE(962), 1, sym_primary_expression, - STATE(954), 1, + STATE(990), 1, sym_string, - STATE(1047), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1983), 1, sym_expression, - STATE(2616), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(387), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(1475), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51841,7 +52397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51858,61 +52414,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30562] = 23, - ACTIONS(735), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_LBRACK, - ACTIONS(747), 1, + [30717] = 23, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(298), 1, + anon_sym_lambda, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(392), 1, sym_identifier, - ACTIONS(887), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(893), 1, - anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(1275), 1, - anon_sym_lambda, - STATE(893), 1, + ACTIONS(1467), 1, + anon_sym_COLON, + STATE(962), 1, sym_primary_expression, - STATE(958), 1, + STATE(990), 1, sym_string, - STATE(1259), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1820), 1, + STATE(1983), 1, sym_expression, - STATE(2645), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, - sym_ellipsis, - sym_float, - ACTIONS(881), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - STATE(2094), 2, - sym__expression_within_for_in_clause, - sym_lambda_within_for_in_clause, - ACTIONS(745), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51920,7 +52475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -51937,60 +52492,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30664] = 23, - ACTIONS(299), 1, + [30818] = 23, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + ACTIONS(1469), 1, + anon_sym_COLON, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1826), 1, + STATE(1873), 1, sym_expression, - STATE(2631), 1, - sym_expression_list, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -51998,7 +52553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52015,50 +52570,127 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30765] = 11, - ACTIONS(272), 1, - anon_sym_COMMA, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(282), 1, - anon_sym_COLON, - ACTIONS(292), 1, - anon_sym_EQ, - ACTIONS(1477), 1, - sym_identifier, - ACTIONS(1479), 1, + [30919] = 23, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(298), 1, + anon_sym_lambda, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, sym_string_start, - STATE(2435), 1, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, + anon_sym_STAR, + STATE(962), 1, + sym_primary_expression, + STATE(990), 1, sym_string, + STATE(1402), 1, + sym_list_splat_pattern, + STATE(1880), 1, + sym_expression, + STATE(2618), 1, + sym_expression_list, + STATE(2653), 1, + sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(265), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(308), 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, + ACTIONS(277), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1734), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1419), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [31020] = 10, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(1471), 1, + sym_identifier, + ACTIONS(1473), 1, + sym_string_start, + STATE(2283), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(284), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(257), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(300), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(267), 22, + ACTIONS(259), 22, anon_sym_as, anon_sym_STAR, anon_sym_GT_GT, @@ -52081,60 +52713,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_LT, anon_sym_GT, - [30842] = 23, - ACTIONS(299), 1, + [31095] = 23, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + ACTIONS(1475), 1, + anon_sym_COLON, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1880), 1, + STATE(1983), 1, sym_expression, - STATE(2506), 1, - sym_with_item, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52142,7 +52774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52159,60 +52791,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [30943] = 23, - ACTIONS(299), 1, + [31196] = 23, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1481), 1, + ACTIONS(1277), 1, anon_sym_COLON, - STATE(952), 1, + ACTIONS(1423), 1, + anon_sym_STAR, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1969), 1, + STATE(1948), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52220,7 +52852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52237,7 +52869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31044] = 23, + [31297] = 23, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -52246,27 +52878,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(390), 1, anon_sym_await, ACTIONS(629), 1, anon_sym_LPAREN, ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(845), 1, + STATE(859), 1, sym_primary_expression, - STATE(954), 1, + STATE(960), 1, sym_string, - STATE(1047), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1778), 1, + STATE(1821), 1, sym_expression, - STATE(2535), 1, + STATE(2528), 1, sym_expression_list, - STATE(2616), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -52274,14 +52906,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -52290,7 +52922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52298,7 +52930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52315,60 +52947,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31145] = 23, - ACTIONS(299), 1, + [31398] = 23, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(1483), 1, + ACTIONS(1477), 1, anon_sym_COLON, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(1983), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52376,7 +53008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52393,125 +53025,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31246] = 10, - ACTIONS(272), 1, - anon_sym_COMMA, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(1477), 1, - sym_identifier, - ACTIONS(1479), 1, - sym_string_start, - STATE(2435), 1, - sym_string, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(292), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(265), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(308), 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(267), 22, - anon_sym_as, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT, - anon_sym_GT, - [31321] = 23, - ACTIONS(299), 1, + [31499] = 23, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1287), 1, - anon_sym_COLON, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1923), 1, + STATE(1868), 1, sym_expression, - STATE(2729), 1, + STATE(2608), 1, + sym_expression_list, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52519,7 +53086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52536,60 +53103,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31422] = 23, - ACTIONS(299), 1, + [31600] = 23, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(1485), 1, - anon_sym_COLON, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(1920), 1, sym_expression, - STATE(2729), 1, + STATE(2507), 1, + sym_with_item, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52597,7 +53164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52614,60 +53181,126 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31523] = 23, - ACTIONS(713), 1, + [31701] = 11, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(274), 1, + anon_sym_COLON, + ACTIONS(284), 1, + anon_sym_EQ, + ACTIONS(1471), 1, + sym_identifier, + ACTIONS(1473), 1, + sym_string_start, + STATE(2283), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(257), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1035), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(300), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(259), 22, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(1037), 1, + anon_sym_and, + anon_sym_or, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT, + anon_sym_GT, + [31778] = 23, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(953), 1, + ACTIONS(1479), 1, + anon_sym_COLON, + STATE(962), 1, sym_primary_expression, - STATE(995), 1, + STATE(990), 1, sym_string, - STATE(1301), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1950), 1, + STATE(1855), 1, sym_expression, - STATE(2483), 1, - sym_with_item, - STATE(2638), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, - sym_ellipsis, - sym_float, - ACTIONS(1029), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52675,7 +53308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52692,60 +53325,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31624] = 23, - ACTIONS(299), 1, + [31879] = 23, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(1487), 1, - anon_sym_COLON, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(1869), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, + STATE(2680), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52753,7 +53386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52770,60 +53403,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31725] = 23, - ACTIONS(299), 1, + [31980] = 23, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1289), 1, - anon_sym_COLON, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1923), 1, + STATE(1870), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, + STATE(2689), 1, + sym_expression_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52831,7 +53464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52848,60 +53481,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31826] = 23, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, - sym_identifier, - ACTIONS(648), 1, + [32081] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, anon_sym_STAR, - STATE(952), 1, + ACTIONS(985), 1, + anon_sym_not, + ACTIONS(987), 1, + anon_sym_lambda, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, + anon_sym_await, + STATE(911), 1, sym_primary_expression, STATE(984), 1, sym_string, - STATE(1372), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1849), 1, + STATE(1897), 1, sym_expression, - STATE(2671), 1, - sym_expression_list, - STATE(2729), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(1097), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(1095), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52909,7 +53540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -52926,60 +53557,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [31927] = 23, - ACTIONS(299), 1, + [32179] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1850), 1, + STATE(2101), 1, sym_expression, - STATE(2680), 1, - sym_expression_list, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -52987,7 +53616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53004,60 +53633,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32028] = 23, - ACTIONS(299), 1, + [32277] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(1489), 1, - anon_sym_COLON, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1936), 1, + STATE(1983), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53065,7 +53692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53082,60 +53709,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32129] = 23, - ACTIONS(299), 1, + [32375] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(952), 1, + STATE(963), 1, sym_primary_expression, - STATE(984), 1, + STATE(1026), 1, sym_string, - STATE(1372), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1854), 1, + STATE(1952), 1, sym_expression, - STATE(2662), 1, - sym_expression_list, - STATE(2729), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(1069), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(1067), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53143,7 +53768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53160,125 +53785,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32230] = 10, - ACTIONS(272), 1, - anon_sym_COMMA, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(1491), 1, - anon_sym_for, - ACTIONS(1493), 1, - anon_sym_with, - ACTIONS(1495), 1, - anon_sym_def, + [32473] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(703), 1, + sym_else_clause, + STATE(842), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(292), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(308), 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(267), 15, + STATE(618), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1481), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(265), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [32305] = 23, - ACTIONS(299), 1, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [32545] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(1497), 1, - anon_sym_COLON, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(1736), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53286,7 +53907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53303,123 +53924,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32406] = 10, - ACTIONS(272), 1, - anon_sym_COMMA, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(1499), 1, - anon_sym_for, - ACTIONS(1501), 1, - anon_sym_with, - ACTIONS(1503), 1, - anon_sym_def, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(292), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(308), 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(267), 15, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(265), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [32481] = 22, - ACTIONS(299), 1, + [32643] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2002), 1, + STATE(1739), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53427,7 +53983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53444,58 +54000,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32579] = 22, - ACTIONS(299), 1, + [32741] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2086), 1, + STATE(1740), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53503,7 +54059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53520,118 +54076,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32677] = 6, - ACTIONS(1509), 1, - anon_sym_except, - ACTIONS(1512), 1, - anon_sym_except_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(482), 3, - sym_except_clause, - sym_except_group_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1505), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [32839] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1507), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(298), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(306), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [32743] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(392), 1, sym_identifier, - ACTIONS(398), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(845), 1, + STATE(962), 1, sym_primary_expression, - STATE(954), 1, + STATE(990), 1, sym_string, - STATE(1047), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1946), 1, + STATE(1741), 1, sym_expression, - STATE(2616), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(387), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53639,7 +54135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53656,58 +54152,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32841] = 22, - ACTIONS(299), 1, + [32937] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1725), 1, + STATE(1748), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53715,7 +54211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53732,58 +54228,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [32939] = 22, - ACTIONS(299), 1, + [33035] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1075), 1, + anon_sym_not, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(952), 1, + STATE(963), 1, sym_primary_expression, - STATE(984), 1, + STATE(1026), 1, sym_string, - STATE(1372), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1726), 1, + STATE(1895), 1, sym_expression, - STATE(2729), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(1069), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(1067), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53791,7 +54287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53808,58 +54304,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33037] = 22, - ACTIONS(299), 1, + [33133] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1728), 1, + STATE(1948), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53867,7 +54363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53884,58 +54380,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33135] = 22, - ACTIONS(299), 1, + [33231] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1729), 1, + STATE(1742), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -53943,7 +54439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -53960,58 +54456,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33233] = 22, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, - sym_identifier, - ACTIONS(648), 1, + [33329] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(881), 1, + anon_sym_lambda, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(952), 1, + STATE(961), 1, sym_primary_expression, - STATE(984), 1, + STATE(1037), 1, sym_string, - STATE(1372), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1730), 1, + STATE(1819), 1, sym_expression, - STATE(2729), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(1115), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(1113), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54019,7 +54515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54036,58 +54532,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33331] = 22, - ACTIONS(299), 1, + [33427] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1923), 1, + STATE(1729), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54095,7 +54591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54112,58 +54608,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33429] = 22, - ACTIONS(67), 1, + [33525] = 22, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(845), 1, + STATE(879), 1, sym_primary_expression, - STATE(954), 1, + STATE(968), 1, sym_string, - STATE(1047), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1805), 1, + STATE(1726), 1, sym_expression, - STATE(2616), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54171,7 +54667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54188,58 +54684,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33527] = 22, - ACTIONS(299), 1, + [33623] = 22, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, + ACTIONS(1153), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(952), 1, + STATE(879), 1, sym_primary_expression, - STATE(984), 1, + STATE(968), 1, sym_string, - STATE(1372), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1739), 1, + STATE(1690), 1, sym_expression, - STATE(2729), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(809), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(807), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54247,7 +54743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54264,58 +54760,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33625] = 22, - ACTIONS(299), 1, + [33721] = 22, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, + ACTIONS(1153), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(952), 1, + STATE(879), 1, sym_primary_expression, - STATE(984), 1, + STATE(968), 1, sym_string, - STATE(1372), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1731), 1, + STATE(1704), 1, sym_expression, - STATE(2729), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(809), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(807), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54323,7 +54819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54340,58 +54836,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33723] = 22, - ACTIONS(67), 1, + [33819] = 22, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(845), 1, + STATE(879), 1, sym_primary_expression, - STATE(954), 1, + STATE(968), 1, sym_string, - STATE(1047), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1781), 1, + STATE(1710), 1, sym_expression, - STATE(2616), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54399,7 +54895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54416,58 +54912,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33821] = 22, - ACTIONS(299), 1, + [33917] = 22, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, + ACTIONS(1153), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(952), 1, + STATE(879), 1, sym_primary_expression, - STATE(984), 1, + STATE(968), 1, sym_string, - STATE(1372), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1975), 1, + STATE(1713), 1, sym_expression, - STATE(2729), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(809), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(807), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54475,7 +54971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54492,58 +54988,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [33919] = 22, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [34015] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, sym_identifier, - ACTIONS(1269), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(857), 1, + STATE(962), 1, sym_primary_expression, - STATE(969), 1, + STATE(990), 1, sym_string, - STATE(1283), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1694), 1, + STATE(2017), 1, sym_expression, - STATE(2716), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, - sym_ellipsis, - sym_float, - ACTIONS(809), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54551,7 +55047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54568,7 +55064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34017] = 22, + [34113] = 22, ACTIONS(691), 1, anon_sym_LPAREN, ACTIONS(699), 1, @@ -54583,19 +55079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(823), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1153), 1, sym_identifier, - ACTIONS(1269), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1283), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1704), 1, + STATE(1683), 1, sym_expression, - STATE(2716), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -54619,7 +55115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54627,7 +55123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54644,58 +55140,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34115] = 22, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [34211] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(817), 1, - anon_sym_not, - ACTIONS(819), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, sym_identifier, - ACTIONS(1269), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(857), 1, + STATE(962), 1, sym_primary_expression, - STATE(969), 1, + STATE(990), 1, sym_string, - STATE(1283), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1711), 1, + STATE(1910), 1, sym_expression, - STATE(2716), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, - sym_ellipsis, - sym_float, - ACTIONS(809), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54703,7 +55199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54720,7 +55216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34213] = 22, + [34309] = 22, ACTIONS(691), 1, anon_sym_LPAREN, ACTIONS(699), 1, @@ -54735,19 +55231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(823), 1, anon_sym_await, - ACTIONS(1155), 1, + ACTIONS(1153), 1, sym_identifier, - ACTIONS(1269), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(857), 1, + STATE(879), 1, sym_primary_expression, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1283), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1674), 1, + STATE(1692), 1, sym_expression, - STATE(2716), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -54771,7 +55267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54779,7 +55275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54796,58 +55292,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34311] = 22, - ACTIONS(691), 1, + [34407] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1269), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(857), 1, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(971), 1, sym_string, - STATE(1283), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1680), 1, + STATE(1775), 1, sym_expression, - STATE(2716), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54855,7 +55351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54872,58 +55368,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34409] = 22, - ACTIONS(666), 1, + [34505] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(847), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1285), 1, + anon_sym_STAR, + STATE(880), 1, sym_primary_expression, - STATE(975), 1, + STATE(971), 1, sym_string, - STATE(1197), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1920), 1, + STATE(1779), 1, sym_expression, - STATE(2650), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -54931,7 +55427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -54948,7 +55444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34507] = 22, + [34603] = 22, ACTIONS(735), 1, anon_sym_LPAREN, ACTIONS(743), 1, @@ -54957,25 +55453,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(753), 1, sym_string_start, - ACTIONS(871), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(887), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(893), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(893), 1, + STATE(880), 1, sym_primary_expression, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1789), 1, + STATE(1780), 1, sym_expression, - STATE(2645), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -54983,14 +55479,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -54999,7 +55495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55007,7 +55503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55024,58 +55520,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34605] = 22, - ACTIONS(691), 1, + [34701] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1269), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(857), 1, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(971), 1, sym_string, - STATE(1283), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1670), 1, + STATE(1782), 1, sym_expression, - STATE(2716), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55083,7 +55579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55100,58 +55596,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34703] = 22, - ACTIONS(691), 1, + [34799] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1269), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(857), 1, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(971), 1, sym_string, - STATE(1283), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1673), 1, + STATE(1751), 1, sym_expression, - STATE(2716), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55159,7 +55655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55176,58 +55672,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34801] = 22, - ACTIONS(299), 1, + [34897] = 22, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(847), 1, + anon_sym_await, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(952), 1, + STATE(880), 1, sym_primary_expression, - STATE(984), 1, + STATE(971), 1, sym_string, - STATE(1372), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1935), 1, + STATE(1759), 1, sym_expression, - STATE(2729), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(835), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(833), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55235,7 +55731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55252,58 +55748,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34899] = 22, - ACTIONS(67), 1, + [34995] = 22, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(743), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(825), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(841), 1, + anon_sym_not, + ACTIONS(843), 1, + anon_sym_lambda, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(845), 1, + STATE(880), 1, sym_primary_expression, - STATE(954), 1, + STATE(971), 1, sym_string, - STATE(1047), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1648), 1, + STATE(1763), 1, sym_expression, - STATE(2616), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55311,7 +55807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55328,58 +55824,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [34997] = 22, - ACTIONS(735), 1, + [35093] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(893), 1, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - STATE(893), 1, + STATE(911), 1, sym_primary_expression, - STATE(958), 1, + STATE(984), 1, sym_string, - STATE(1259), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1763), 1, + STATE(1768), 1, sym_expression, - STATE(2645), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55387,7 +55883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55404,58 +55900,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35095] = 22, - ACTIONS(735), 1, + [35191] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(893), 1, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - STATE(893), 1, + STATE(911), 1, sym_primary_expression, - STATE(958), 1, + STATE(984), 1, sym_string, - STATE(1259), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1768), 1, + STATE(1771), 1, sym_expression, - STATE(2645), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55463,7 +55959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55480,58 +55976,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35193] = 22, - ACTIONS(735), 1, + [35289] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(893), 1, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - STATE(893), 1, + STATE(911), 1, sym_primary_expression, - STATE(958), 1, + STATE(984), 1, sym_string, - STATE(1259), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1742), 1, + STATE(1774), 1, sym_expression, - STATE(2645), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55539,7 +56035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55556,58 +56052,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35291] = 22, - ACTIONS(735), 1, + [35387] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(893), 1, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - STATE(893), 1, + STATE(911), 1, sym_primary_expression, - STATE(958), 1, + STATE(984), 1, sym_string, - STATE(1259), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1743), 1, + STATE(1776), 1, sym_expression, - STATE(2645), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55615,7 +56111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55632,58 +56128,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35389] = 22, - ACTIONS(735), 1, + [35485] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(893), 1, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - STATE(893), 1, + STATE(911), 1, sym_primary_expression, - STATE(958), 1, + STATE(984), 1, sym_string, - STATE(1259), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1749), 1, + STATE(1777), 1, sym_expression, - STATE(2645), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55691,7 +56187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55708,58 +56204,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35487] = 22, - ACTIONS(735), 1, + [35583] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(893), 1, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - STATE(893), 1, + STATE(911), 1, sym_primary_expression, - STATE(958), 1, + STATE(984), 1, sym_string, - STATE(1259), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1755), 1, + STATE(1752), 1, sym_expression, - STATE(2645), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55767,7 +56263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55784,58 +56280,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35585] = 22, - ACTIONS(735), 1, + [35681] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(893), 1, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - STATE(893), 1, + STATE(911), 1, sym_primary_expression, - STATE(958), 1, + STATE(984), 1, sym_string, - STATE(1259), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1752), 1, + STATE(1755), 1, sym_expression, - STATE(2645), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55843,7 +56339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55860,58 +56356,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35683] = 22, - ACTIONS(666), 1, + [35779] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(975), 1, + STATE(1026), 1, sym_string, - STATE(1197), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1760), 1, + STATE(1728), 1, sym_expression, - STATE(2650), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55919,7 +56415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -55936,58 +56432,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35781] = 22, - ACTIONS(666), 1, + [35877] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(975), 1, + STATE(1026), 1, sym_string, - STATE(1197), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1761), 1, + STATE(1743), 1, sym_expression, - STATE(2650), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -55995,7 +56491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56012,58 +56508,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35879] = 22, - ACTIONS(666), 1, + [35975] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(975), 1, + STATE(1026), 1, sym_string, - STATE(1197), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1764), 1, + STATE(1744), 1, sym_expression, - STATE(2650), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56071,7 +56567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56088,58 +56584,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [35977] = 22, - ACTIONS(666), 1, + [36073] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(975), 1, + STATE(1026), 1, sym_string, - STATE(1197), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1765), 1, + STATE(1745), 1, sym_expression, - STATE(2650), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56147,7 +56643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56164,58 +56660,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36075] = 22, - ACTIONS(666), 1, + [36171] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(975), 1, + STATE(1026), 1, sym_string, - STATE(1197), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1766), 1, + STATE(1746), 1, sym_expression, - STATE(2650), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56223,7 +56719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56240,58 +56736,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36173] = 22, - ACTIONS(666), 1, + [36269] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(975), 1, + STATE(1026), 1, sym_string, - STATE(1197), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1759), 1, + STATE(1738), 1, sym_expression, - STATE(2650), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56299,7 +56795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56316,58 +56812,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36271] = 22, - ACTIONS(666), 1, + [36367] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(975), 1, + STATE(1026), 1, sym_string, - STATE(1197), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1757), 1, + STATE(1749), 1, sym_expression, - STATE(2650), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56375,7 +56871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56392,58 +56888,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36369] = 22, - ACTIONS(67), 1, + [36465] = 22, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(845), 1, + STATE(974), 1, sym_primary_expression, - STATE(954), 1, + STATE(1111), 1, sym_string, - STATE(1047), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1658), 1, + STATE(1757), 1, sym_expression, - STATE(2616), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56451,7 +56947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56468,58 +56964,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36467] = 22, - ACTIONS(713), 1, + [36563] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(953), 1, + STATE(974), 1, sym_primary_expression, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1732), 1, + STATE(1762), 1, sym_expression, - STATE(2638), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56527,7 +57023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56544,58 +57040,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36565] = 22, - ACTIONS(713), 1, + [36661] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(953), 1, + STATE(974), 1, sym_primary_expression, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1736), 1, + STATE(1764), 1, sym_expression, - STATE(2638), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56603,7 +57099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56620,58 +57116,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36663] = 22, - ACTIONS(713), 1, + [36759] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(953), 1, + STATE(974), 1, sym_primary_expression, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1737), 1, + STATE(1765), 1, sym_expression, - STATE(2638), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56679,7 +57175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56696,58 +57192,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36761] = 22, - ACTIONS(713), 1, + [36857] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(953), 1, + STATE(974), 1, sym_primary_expression, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1738), 1, + STATE(1785), 1, sym_expression, - STATE(2638), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56755,7 +57251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56772,58 +57268,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36859] = 22, - ACTIONS(713), 1, + [36955] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(953), 1, + STATE(974), 1, sym_primary_expression, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1740), 1, + STATE(1753), 1, sym_expression, - STATE(2638), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56831,7 +57327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56848,58 +57344,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [36957] = 22, - ACTIONS(713), 1, + [37053] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(953), 1, + STATE(974), 1, sym_primary_expression, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1721), 1, + STATE(1750), 1, sym_expression, - STATE(2638), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56907,7 +57403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -56924,58 +57420,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37055] = 22, - ACTIONS(713), 1, + [37151] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(953), 1, + STATE(961), 1, sym_primary_expression, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1727), 1, + STATE(1800), 1, sym_expression, - STATE(2638), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -56983,7 +57479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57000,58 +57496,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37153] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [37249] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(963), 1, + STATE(859), 1, sym_primary_expression, - STATE(1081), 1, + STATE(960), 1, sym_string, - STATE(1444), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1745), 1, + STATE(1791), 1, sym_expression, - STATE(2585), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57059,7 +57555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57076,7 +57572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37251] = 22, + [37347] = 23, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -57089,21 +57585,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(963), 1, + ACTIONS(1491), 1, + sym_identifier, + ACTIONS(1497), 1, + anon_sym_await, + STATE(1029), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1771), 1, + STATE(1971), 1, sym_expression, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -57111,14 +57607,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(1495), 2, anon_sym_match, anon_sym_type, + STATE(1257), 2, + sym_attribute, + sym_subscript, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(1493), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -57127,7 +57626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57135,11 +57634,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1449), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -57152,58 +57649,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37349] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [37447] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(963), 1, + STATE(859), 1, sym_primary_expression, - STATE(1081), 1, + STATE(960), 1, sym_string, - STATE(1444), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1774), 1, + STATE(1967), 1, sym_expression, - STATE(2585), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57211,7 +57708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57228,58 +57725,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37447] = 22, - ACTIONS(757), 1, + [37545] = 23, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(963), 1, + ACTIONS(1499), 1, + sym_identifier, + ACTIONS(1505), 1, + anon_sym_await, + STATE(1025), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1026), 1, sym_string, - STATE(1444), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1744), 1, + STATE(1889), 1, sym_expression, - STATE(2585), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(1503), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + STATE(1398), 2, + sym_attribute, + sym_subscript, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(1501), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57287,11 +57787,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1299), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -57304,58 +57802,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37545] = 22, - ACTIONS(757), 1, + [37645] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1007), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1253), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1321), 1, anon_sym_STAR, STATE(963), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1026), 1, sym_string, - STATE(1444), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1750), 1, + STATE(1992), 1, sym_expression, - STATE(2585), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57363,7 +57861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57380,58 +57878,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37643] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [37743] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(1007), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(963), 1, + STATE(962), 1, sym_primary_expression, - STATE(1081), 1, + STATE(990), 1, sym_string, - STATE(1444), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1751), 1, + STATE(1964), 1, sym_expression, - STATE(2585), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(997), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57439,7 +57937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57456,58 +57954,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37741] = 22, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, + [37841] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(1007), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, sym_identifier, - ACTIONS(1307), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(963), 1, + STATE(962), 1, sym_primary_expression, - STATE(1081), 1, + STATE(990), 1, sym_string, - STATE(1444), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1776), 1, + STATE(1970), 1, sym_expression, - STATE(2585), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(997), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57515,7 +58013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57532,58 +58030,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37839] = 22, - ACTIONS(67), 1, + [37939] = 22, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(845), 1, + STATE(963), 1, sym_primary_expression, - STATE(954), 1, + STATE(1026), 1, sym_string, - STATE(1047), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1898), 1, + STATE(1903), 1, sym_expression, - STATE(2616), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57591,7 +58089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57608,58 +58106,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [37937] = 22, - ACTIONS(779), 1, + [38037] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(693), 1, + sym_else_clause, + STATE(791), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(575), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1507), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(789), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(793), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(857), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1509), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1071), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1243), 1, + sym_true, + sym_false, + sym_none, + [38109] = 22, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, + anon_sym_not, + ACTIONS(819), 1, + anon_sym_lambda, + ACTIONS(823), 1, + anon_sym_await, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(950), 1, + STATE(879), 1, sym_primary_expression, - STATE(985), 1, + STATE(968), 1, sym_string, - STATE(1320), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1788), 1, + STATE(1848), 1, sym_expression, - STATE(2698), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57667,7 +58228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57684,135 +58245,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38035] = 23, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, - anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1307), 1, - anon_sym_STAR, + [38207] = 9, + ACTIONS(1511), 1, + anon_sym_else, + ACTIONS(1513), 1, + anon_sym_except, ACTIONS(1515), 1, - sym_identifier, - ACTIONS(1521), 1, - anon_sym_await, - STATE(1007), 1, - sym_primary_expression, - STATE(1081), 1, - sym_string, - STATE(1444), 1, - sym_list_splat_pattern, - STATE(1932), 1, - sym_expression, - STATE(2585), 1, - sym__named_expression_lhs, + anon_sym_finally, + STATE(700), 1, + sym_else_clause, + STATE(811), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(1519), 2, - anon_sym_match, - anon_sym_type, - STATE(1194), 2, - sym_attribute, - sym_subscript, - ACTIONS(767), 3, + STATE(617), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1481), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1517), 3, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(755), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1748), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1441), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [38135] = 22, - ACTIONS(299), 1, + [38279] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(952), 1, + STATE(859), 1, sym_primary_expression, - STATE(984), 1, + STATE(960), 1, sym_string, - STATE(1372), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(2013), 1, + STATE(1792), 1, sym_expression, - STATE(2729), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(379), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(375), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57820,7 +58367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57837,58 +58384,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38233] = 22, - ACTIONS(299), 1, + [38377] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(952), 1, + STATE(859), 1, sym_primary_expression, - STATE(984), 1, + STATE(960), 1, sym_string, - STATE(1372), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1904), 1, + STATE(1664), 1, sym_expression, - STATE(2729), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(379), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(375), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57896,7 +58443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57913,58 +58460,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38331] = 22, - ACTIONS(299), 1, + [38475] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(952), 1, + STATE(859), 1, sym_primary_expression, - STATE(984), 1, + STATE(960), 1, sym_string, - STATE(1372), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(2070), 1, + STATE(1829), 1, sym_expression, - STATE(2729), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(379), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(375), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -57972,7 +58519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -57989,7 +58536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38429] = 22, + [38573] = 22, ACTIONS(713), 1, anon_sym_LPAREN, ACTIONS(721), 1, @@ -57998,25 +58545,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1079), 1, anon_sym_await, ACTIONS(1253), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1903), 1, + STATE(1955), 1, sym_expression, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58024,14 +58571,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -58040,7 +58587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58048,7 +58595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58065,58 +58612,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38527] = 22, - ACTIONS(299), 1, + [38671] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(952), 1, + STATE(859), 1, sym_primary_expression, - STATE(984), 1, + STATE(960), 1, sym_string, - STATE(1372), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(2037), 1, + STATE(1881), 1, sym_expression, - STATE(2729), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(379), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(375), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58124,7 +58671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58141,58 +58688,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38625] = 22, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [38769] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1035), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(953), 1, + STATE(859), 1, sym_primary_expression, - STATE(995), 1, + STATE(960), 1, sym_string, - STATE(1301), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1928), 1, + STATE(2056), 1, sym_expression, - STATE(2638), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58200,7 +58747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58217,58 +58764,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38723] = 22, - ACTIONS(691), 1, + [38867] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1269), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(857), 1, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(971), 1, sym_string, - STATE(1283), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1840), 1, + STATE(1788), 1, sym_expression, - STATE(2716), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58276,7 +58823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58293,58 +58840,121 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38821] = 22, - ACTIONS(779), 1, + [38965] = 9, + ACTIONS(1511), 1, + anon_sym_else, + ACTIONS(1513), 1, + anon_sym_except, + ACTIONS(1515), 1, + anon_sym_finally, + STATE(702), 1, + sym_else_clause, + STATE(725), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(541), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1519), 12, + sym__dedent, + sym_string_start, anon_sym_LPAREN, - ACTIONS(789), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(793), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(857), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1517), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1071), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1243), 1, + sym_true, + sym_false, + sym_none, + [39037] = 22, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(298), 1, + anon_sym_lambda, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(950), 1, + STATE(962), 1, sym_primary_expression, - STATE(985), 1, + STATE(990), 1, sym_string, - STATE(1320), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1843), 1, + STATE(2036), 1, sym_expression, - STATE(2698), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, - sym_ellipsis, - sym_float, - ACTIONS(1079), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58352,7 +58962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58369,58 +58979,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [38919] = 22, - ACTIONS(67), 1, + [39135] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(392), 1, sym_identifier, - ACTIONS(398), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(845), 1, + STATE(962), 1, sym_primary_expression, - STATE(954), 1, + STATE(990), 1, sym_string, - STATE(1047), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1651), 1, + STATE(1943), 1, sym_expression, - STATE(2616), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(387), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58428,7 +59038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58445,58 +59055,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39017] = 22, - ACTIONS(67), 1, + [39233] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(81), 1, + ACTIONS(306), 1, + anon_sym_await, + ACTIONS(308), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(392), 1, sym_identifier, - ACTIONS(398), 1, - anon_sym_await, - ACTIONS(629), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(845), 1, + STATE(962), 1, sym_primary_expression, - STATE(954), 1, + STATE(990), 1, sym_string, - STATE(1047), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2003), 1, + STATE(1950), 1, sym_expression, - STATE(2616), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(387), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58504,7 +59114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58521,58 +59131,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39115] = 22, - ACTIONS(713), 1, + [39331] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1271), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(953), 1, + STATE(974), 1, sym_primary_expression, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1958), 1, + STATE(1911), 1, sym_expression, - STATE(2638), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58580,7 +59190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58597,7 +59207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39213] = 23, + [39429] = 22, ACTIONS(713), 1, anon_sym_LPAREN, ACTIONS(721), 1, @@ -58606,25 +59216,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1303), 1, - anon_sym_STAR, - ACTIONS(1523), 1, - sym_identifier, - ACTIONS(1529), 1, + ACTIONS(1079), 1, anon_sym_await, - STATE(994), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, + anon_sym_STAR, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1937), 1, + STATE(1913), 1, sym_expression, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58632,17 +59242,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1527), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - STATE(1362), 2, - sym_attribute, - sym_subscript, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1525), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -58651,81 +59258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1381), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [39313] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, - anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_STAR, - STATE(845), 1, - sym_primary_expression, - STATE(954), 1, - sym_string, - STATE(1047), 1, - sym_list_splat_pattern, - STATE(1652), 1, - sym_expression, - STATE(2616), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(387), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(383), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1649), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58733,7 +59266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58750,7 +59283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39411] = 22, + [39527] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -58759,25 +59292,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(390), 1, anon_sym_await, ACTIONS(629), 1, anon_sym_LPAREN, ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(845), 1, + STATE(859), 1, sym_primary_expression, - STATE(954), 1, + STATE(960), 1, sym_string, - STATE(1047), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1664), 1, + STATE(1658), 1, sym_expression, - STATE(2616), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -58785,14 +59318,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -58801,7 +59334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58809,7 +59342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58826,58 +59359,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39509] = 22, - ACTIONS(299), 1, + [39625] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2016), 1, + STATE(1732), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58885,7 +59418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -58902,58 +59435,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39607] = 22, - ACTIONS(67), 1, + [39723] = 23, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, + ACTIONS(1521), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(1527), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_STAR, - STATE(845), 1, - sym_primary_expression, - STATE(954), 1, + STATE(984), 1, sym_string, - STATE(1047), 1, + STATE(1039), 1, + sym_primary_expression, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1654), 1, + STATE(1960), 1, sym_expression, - STATE(2616), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(1525), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1164), 2, + sym_attribute, + sym_subscript, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(1523), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -58961,11 +59497,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1162), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -58978,58 +59512,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39705] = 22, - ACTIONS(757), 1, + [39823] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(1007), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(963), 1, + STATE(880), 1, sym_primary_expression, - STATE(1081), 1, + STATE(971), 1, sym_string, - STATE(1444), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1982), 1, + STATE(1878), 1, sym_expression, - STATE(2585), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59037,7 +59571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59054,58 +59588,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39803] = 22, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [39921] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(953), 1, + STATE(962), 1, sym_primary_expression, - STATE(995), 1, + STATE(990), 1, sym_string, - STATE(1301), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1938), 1, + STATE(2037), 1, sym_expression, - STATE(2638), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, - sym_ellipsis, - sym_float, - ACTIONS(1029), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59113,7 +59647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59130,58 +59664,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39901] = 22, - ACTIONS(299), 1, + [40019] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(952), 1, + STATE(859), 1, sym_primary_expression, - STATE(984), 1, + STATE(960), 1, sym_string, - STATE(1372), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1735), 1, + STATE(1673), 1, sym_expression, - STATE(2729), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(379), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(375), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59189,7 +59723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59206,61 +59740,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [39999] = 23, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [40117] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1531), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1537), 1, + ACTIONS(390), 1, anon_sym_await, - STATE(975), 1, - sym_string, - STATE(989), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(859), 1, sym_primary_expression, - STATE(1197), 1, + STATE(960), 1, + sym_string, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1912), 1, + STATE(1665), 1, sym_expression, - STATE(2650), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1535), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - STATE(1282), 2, - sym_attribute, - sym_subscript, - ACTIONS(676), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1533), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59268,9 +59799,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 14, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59283,58 +59816,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40099] = 22, - ACTIONS(735), 1, + [40215] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(893), 1, + ACTIONS(1089), 1, + sym_identifier, + ACTIONS(1099), 1, anon_sym_await, - ACTIONS(1273), 1, - anon_sym_STAR, - STATE(893), 1, + STATE(911), 1, sym_primary_expression, - STATE(958), 1, + STATE(984), 1, sym_string, - STATE(1259), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1871), 1, + STATE(1766), 1, sym_expression, - STATE(2645), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59342,7 +59875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59359,7 +59892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40197] = 23, + [40313] = 22, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -59372,21 +59905,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1307), 1, - anon_sym_STAR, - ACTIONS(1521), 1, + ACTIONS(1007), 1, anon_sym_await, - ACTIONS(1539), 1, + ACTIONS(1271), 1, sym_identifier, - STATE(1007), 1, + ACTIONS(1313), 1, + anon_sym_STAR, + STATE(974), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1932), 1, + STATE(1921), 1, sym_expression, - STATE(2585), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -59394,17 +59927,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1519), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - STATE(1194), 2, - sym_attribute, - sym_subscript, ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1517), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -59413,7 +59943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59421,9 +59951,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 14, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -59436,58 +59968,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40297] = 22, - ACTIONS(67), 1, + [40411] = 22, + ACTIONS(691), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_LBRACK, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(817), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(819), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, + ACTIONS(823), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1153), 1, + sym_identifier, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(845), 1, + STATE(879), 1, sym_primary_expression, - STATE(954), 1, + STATE(968), 1, sym_string, - STATE(1047), 1, + STATE(1165), 1, sym_list_splat_pattern, - STATE(1653), 1, + STATE(1717), 1, sym_expression, - STATE(2616), 1, + STATE(2784), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(809), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(807), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(689), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1719), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59495,7 +60027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59512,7 +60044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40395] = 22, + [40509] = 23, ACTIONS(713), 1, anon_sym_LPAREN, ACTIONS(721), 1, @@ -59521,25 +60053,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(731), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1039), 1, + ACTIONS(1321), 1, + anon_sym_STAR, + ACTIONS(1505), 1, anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1529), 1, sym_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - STATE(953), 1, + STATE(963), 1, sym_primary_expression, - STATE(995), 1, + STATE(1026), 1, sym_string, - STATE(1301), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1916), 1, + STATE(1889), 1, sym_expression, - STATE(2638), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -59547,14 +60079,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(1533), 2, anon_sym_match, anon_sym_type, + STATE(1483), 2, + sym_attribute, + sym_subscript, ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(1531), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -59563,7 +60098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59571,11 +60106,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1299), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -59588,58 +60121,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40493] = 22, - ACTIONS(713), 1, + [40609] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1303), 1, + ACTIONS(1117), 1, + anon_sym_await, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(953), 1, + STATE(961), 1, sym_primary_expression, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1917), 1, + STATE(1856), 1, sym_expression, - STATE(2638), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59647,7 +60180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59664,58 +60197,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40591] = 22, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, + [40707] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(306), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1087), 1, + anon_sym_not, + ACTIONS(1423), 1, + anon_sym_STAR, + STATE(962), 1, sym_primary_expression, - STATE(975), 1, + STATE(990), 1, sym_string, - STATE(1197), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1770), 1, + STATE(2085), 1, sym_expression, - STATE(2650), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, - sym_ellipsis, - sym_float, - ACTIONS(1143), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59723,7 +60256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59740,58 +60273,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40689] = 22, - ACTIONS(757), 1, + [40805] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, + ACTIONS(1089), 1, sym_identifier, - ACTIONS(1307), 1, - anon_sym_STAR, - STATE(963), 1, + ACTIONS(1099), 1, + anon_sym_await, + STATE(911), 1, sym_primary_expression, - STATE(1081), 1, + STATE(984), 1, sym_string, - STATE(1444), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1913), 1, + STATE(1932), 1, sym_expression, - STATE(2585), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(997), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59799,7 +60332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59816,58 +60349,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40787] = 22, - ACTIONS(691), 1, + [40903] = 22, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(703), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(709), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(817), 1, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(841), 1, anon_sym_not, - ACTIONS(819), 1, + ACTIONS(843), 1, anon_sym_lambda, - ACTIONS(823), 1, + ACTIONS(847), 1, anon_sym_await, - ACTIONS(1155), 1, - sym_identifier, - ACTIONS(1269), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(857), 1, + STATE(880), 1, sym_primary_expression, - STATE(969), 1, + STATE(971), 1, sym_string, - STATE(1283), 1, + STATE(1228), 1, sym_list_splat_pattern, - STATE(1671), 1, + STATE(1781), 1, sym_expression, - STATE(2716), 1, + STATE(2677), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(705), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(809), 2, + ACTIONS(835), 2, anon_sym_match, anon_sym_type, - ACTIONS(701), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(807), 3, + ACTIONS(833), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(689), 4, + ACTIONS(733), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1710), 7, + STATE(1756), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59875,7 +60408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1280), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -59892,61 +60425,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40885] = 23, - ACTIONS(713), 1, + [41001] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(1529), 1, + ACTIONS(1497), 1, anon_sym_await, - ACTIONS(1541), 1, + ACTIONS(1535), 1, sym_identifier, - STATE(953), 1, + STATE(974), 1, sym_primary_expression, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1937), 1, + STATE(1971), 1, sym_expression, - STATE(2638), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1545), 2, + ACTIONS(1539), 2, anon_sym_match, anon_sym_type, - STATE(1472), 2, + STATE(1484), 2, sym_attribute, sym_subscript, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1543), 3, + ACTIONS(1537), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -59954,7 +60487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 14, + STATE(1449), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -59969,58 +60502,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [40985] = 22, - ACTIONS(299), 1, + [41101] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(952), 1, + STATE(859), 1, sym_primary_expression, - STATE(984), 1, + STATE(960), 1, sym_string, - STATE(1372), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(2060), 1, + STATE(1666), 1, sym_expression, - STATE(2729), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(379), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(375), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60028,7 +60561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60045,58 +60578,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41083] = 22, - ACTIONS(779), 1, + [41199] = 23, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1081), 1, - anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(950), 1, + ACTIONS(1497), 1, + anon_sym_await, + ACTIONS(1541), 1, + sym_identifier, + STATE(1029), 1, sym_primary_expression, - STATE(985), 1, + STATE(1111), 1, sym_string, - STATE(1320), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1808), 1, + STATE(1971), 1, sym_expression, - STATE(2698), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1495), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + STATE(1257), 2, + sym_attribute, + sym_subscript, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1493), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60104,11 +60640,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1449), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60121,58 +60655,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41181] = 22, - ACTIONS(713), 1, + [41299] = 22, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(731), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1035), 1, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, anon_sym_not, - ACTIONS(1037), 1, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1253), 1, + ACTIONS(1089), 1, sym_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - STATE(953), 1, + ACTIONS(1099), 1, + anon_sym_await, + STATE(911), 1, sym_primary_expression, - STATE(995), 1, + STATE(984), 1, sym_string, - STATE(1301), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1927), 1, + STATE(1783), 1, sym_expression, - STATE(2638), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1029), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - ACTIONS(723), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(711), 4, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1722), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60180,7 +60714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1381), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60197,58 +60731,61 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41279] = 22, - ACTIONS(299), 1, + [41397] = 23, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, + anon_sym_STAR, + ACTIONS(985), 1, + anon_sym_not, + ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(1527), 1, anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, + ACTIONS(1543), 1, sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, - anon_sym_STAR, - STATE(952), 1, + STATE(911), 1, sym_primary_expression, STATE(984), 1, sym_string, - STATE(1372), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(2008), 1, + STATE(1960), 1, sym_expression, - STATE(2729), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(1547), 2, + anon_sym_match, + anon_sym_type, + STATE(1485), 2, + sym_attribute, + sym_subscript, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(1545), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(664), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1769), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60256,11 +60793,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1162), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -60273,58 +60808,184 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41377] = 22, - ACTIONS(779), 1, + [41497] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(694), 1, + sym_else_clause, + STATE(837), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(618), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1549), 12, + sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(789), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(793), 1, + anon_sym_AT, + anon_sym_DASH, anon_sym_LBRACE, - ACTIONS(799), 1, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1551), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [41569] = 9, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1487), 1, + anon_sym_except, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(698), 1, + sym_else_clause, + STATE(845), 1, + sym_finally_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(482), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1519), 12, sym_string_start, - ACTIONS(857), 1, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1517), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - ACTIONS(859), 1, anon_sym_lambda, - ACTIONS(1071), 1, + anon_sym_yield, + sym_integer, sym_identifier, - ACTIONS(1081), 1, anon_sym_await, - ACTIONS(1243), 1, + sym_true, + sym_false, + sym_none, + [41641] = 22, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, + anon_sym_lambda, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, + sym_identifier, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(950), 1, + STATE(859), 1, sym_primary_expression, - STATE(985), 1, + STATE(960), 1, sym_string, - STATE(1320), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1794), 1, + STATE(1662), 1, sym_expression, - STATE(2698), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60332,7 +60993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60349,58 +61010,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41475] = 22, - ACTIONS(779), 1, + [41739] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1071), 1, - sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(1253), 1, + sym_identifier, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(950), 1, + STATE(963), 1, sym_primary_expression, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1795), 1, + STATE(1735), 1, sym_expression, - STATE(2698), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60408,7 +61069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60425,58 +61086,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41573] = 22, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [41837] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(857), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1071), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(390), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(950), 1, + STATE(859), 1, sym_primary_expression, - STATE(985), 1, + STATE(960), 1, sym_string, - STATE(1320), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1796), 1, + STATE(1867), 1, sym_expression, - STATE(2698), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60484,7 +61145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60501,58 +61162,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41671] = 22, - ACTIONS(779), 1, - anon_sym_LPAREN, - ACTIONS(789), 1, - anon_sym_LBRACK, - ACTIONS(793), 1, + [41935] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(857), 1, + ACTIONS(69), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(1071), 1, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(367), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(390), 1, anon_sym_await, - ACTIONS(1243), 1, + ACTIONS(629), 1, + anon_sym_LPAREN, + ACTIONS(637), 1, + anon_sym_LBRACK, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(950), 1, + STATE(859), 1, sym_primary_expression, - STATE(985), 1, + STATE(960), 1, sym_string, - STATE(1320), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1797), 1, + STATE(1951), 1, sym_expression, - STATE(2698), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(795), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, - ACTIONS(791), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(777), 4, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60560,7 +61221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60577,58 +61238,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41769] = 22, - ACTIONS(735), 1, + [42033] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(753), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(871), 1, - sym_identifier, - ACTIONS(887), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(889), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(893), 1, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(1273), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(893), 1, + STATE(961), 1, sym_primary_expression, - STATE(958), 1, + STATE(1037), 1, sym_string, - STATE(1259), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1741), 1, + STATE(1787), 1, sym_expression, - STATE(2645), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(749), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(881), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(745), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(879), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(733), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1754), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60636,7 +61297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1180), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60653,61 +61314,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41867] = 23, - ACTIONS(757), 1, + [42131] = 22, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(775), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1075), 1, anon_sym_not, - ACTIONS(1005), 1, + ACTIONS(1077), 1, anon_sym_lambda, - ACTIONS(1307), 1, - anon_sym_STAR, - ACTIONS(1521), 1, + ACTIONS(1079), 1, anon_sym_await, - ACTIONS(1547), 1, + ACTIONS(1253), 1, sym_identifier, + ACTIONS(1321), 1, + anon_sym_STAR, STATE(963), 1, sym_primary_expression, - STATE(1081), 1, + STATE(1026), 1, sym_string, - STATE(1444), 1, + STATE(1348), 1, sym_list_splat_pattern, - STATE(1932), 1, + STATE(1890), 1, sym_expression, - STATE(2585), 1, + STATE(2661), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(1551), 2, + ACTIONS(1069), 2, anon_sym_match, anon_sym_type, - STATE(1458), 2, - sym_attribute, - sym_subscript, - ACTIONS(767), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1549), 3, + ACTIONS(1067), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(711), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1733), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60715,9 +61373,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 14, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -60730,58 +61390,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [41967] = 22, - ACTIONS(666), 1, + [42229] = 22, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1135), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1117), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(961), 1, sym_primary_expression, - STATE(975), 1, + STATE(1037), 1, sym_string, - STATE(1197), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1773), 1, + STATE(1830), 1, sym_expression, - STATE(2650), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60789,7 +61449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60806,58 +61466,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42065] = 22, - ACTIONS(67), 1, + [42327] = 22, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(845), 1, + STATE(961), 1, sym_primary_expression, - STATE(954), 1, + STATE(1037), 1, sym_string, - STATE(1047), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1663), 1, + STATE(1816), 1, sym_expression, - STATE(2616), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -60865,7 +61525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -60882,134 +61542,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42163] = 22, - ACTIONS(67), 1, + [42425] = 22, + ACTIONS(779), 1, + anon_sym_LPAREN, + ACTIONS(789), 1, + anon_sym_LBRACK, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(69), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(71), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(1117), 1, anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(845), 1, + STATE(961), 1, sym_primary_expression, - STATE(954), 1, + STATE(1037), 1, sym_string, - STATE(1047), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1825), 1, + STATE(1814), 1, sym_expression, - STATE(2616), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1649), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1099), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [42261] = 22, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, - sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, - anon_sym_STAR, - STATE(952), 1, - sym_primary_expression, - STATE(984), 1, - sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(2027), 1, - sym_expression, - STATE(2729), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(278), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(777), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61017,7 +61601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61034,7 +61618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42359] = 22, + [42523] = 22, ACTIONS(779), 1, anon_sym_LPAREN, ACTIONS(789), 1, @@ -61043,25 +61627,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1117), 1, anon_sym_await, ACTIONS(1243), 1, anon_sym_STAR, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1790), 1, + STATE(1793), 1, sym_expression, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61069,14 +61653,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -61085,7 +61669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61093,7 +61677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61110,58 +61694,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42457] = 22, - ACTIONS(666), 1, + [42621] = 22, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(684), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, + ACTIONS(1003), 1, anon_sym_not, - ACTIONS(987), 1, + ACTIONS(1005), 1, anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, + ACTIONS(1007), 1, anon_sym_await, - STATE(901), 1, + ACTIONS(1271), 1, + sym_identifier, + ACTIONS(1313), 1, + anon_sym_STAR, + STATE(974), 1, sym_primary_expression, - STATE(975), 1, + STATE(1111), 1, sym_string, - STATE(1197), 1, + STATE(1446), 1, sym_list_splat_pattern, - STATE(1758), 1, + STATE(1784), 1, sym_expression, - STATE(2650), 1, + STATE(2594), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(680), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(1143), 2, + ACTIONS(997), 2, anon_sym_match, anon_sym_type, - ACTIONS(676), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1141), 3, + ACTIONS(995), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(664), 4, + ACTIONS(755), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1769), 7, + STATE(1761), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61169,7 +61753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61186,7 +61770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42555] = 23, + [42719] = 22, ACTIONS(666), 1, anon_sym_LPAREN, ACTIONS(674), 1, @@ -61201,19 +61785,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, ACTIONS(987), 1, anon_sym_lambda, - ACTIONS(1537), 1, - anon_sym_await, - ACTIONS(1553), 1, + ACTIONS(1089), 1, sym_identifier, - STATE(901), 1, + ACTIONS(1099), 1, + anon_sym_await, + STATE(911), 1, sym_primary_expression, - STATE(975), 1, + STATE(984), 1, sym_string, - STATE(1197), 1, + STATE(1232), 1, sym_list_splat_pattern, - STATE(1912), 1, + STATE(1770), 1, sym_expression, - STATE(2650), 1, + STATE(2756), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61221,17 +61805,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(1557), 2, + ACTIONS(1097), 2, anon_sym_match, anon_sym_type, - STATE(1473), 2, - sym_attribute, - sym_subscript, ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1555), 3, + ACTIONS(1095), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -61248,9 +61829,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 14, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -61263,58 +61846,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42655] = 22, - ACTIONS(299), 1, + [42817] = 22, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(69), 1, + anon_sym_not, + ACTIONS(71), 1, anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(648), 1, + ACTIONS(390), 1, + anon_sym_await, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(952), 1, + STATE(859), 1, sym_primary_expression, - STATE(984), 1, + STATE(960), 1, sym_string, - STATE(1372), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1902), 1, + STATE(1660), 1, sym_expression, - STATE(2729), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(379), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(375), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61322,7 +61905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61339,83 +61922,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42753] = 22, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1035), 1, - anon_sym_not, - ACTIONS(1037), 1, - anon_sym_lambda, - ACTIONS(1039), 1, - anon_sym_await, - ACTIONS(1253), 1, - sym_identifier, - ACTIONS(1303), 1, - anon_sym_STAR, - STATE(953), 1, - sym_primary_expression, - STATE(995), 1, - sym_string, - STATE(1301), 1, - sym_list_splat_pattern, - STATE(1719), 1, - sym_expression, - STATE(2638), 1, - sym__named_expression_lhs, + [42915] = 9, + ACTIONS(1511), 1, + anon_sym_else, + ACTIONS(1513), 1, + anon_sym_except, + ACTIONS(1515), 1, + anon_sym_finally, + STATE(714), 1, + sym_else_clause, + STATE(827), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(727), 2, - sym_ellipsis, - sym_float, - ACTIONS(1029), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(723), 3, + STATE(603), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1507), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1027), 3, + sym_ellipsis, + sym_float, + ACTIONS(1509), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(711), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1722), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1381), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [42851] = 22, + [42987] = 22, ACTIONS(779), 1, anon_sym_LPAREN, ACTIONS(789), 1, @@ -61424,25 +61994,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(799), 1, sym_string_start, - ACTIONS(857), 1, + ACTIONS(879), 1, anon_sym_not, - ACTIONS(859), 1, + ACTIONS(881), 1, anon_sym_lambda, - ACTIONS(1071), 1, + ACTIONS(1109), 1, sym_identifier, - ACTIONS(1081), 1, + ACTIONS(1117), 1, anon_sym_await, ACTIONS(1243), 1, anon_sym_STAR, - STATE(950), 1, + STATE(961), 1, sym_primary_expression, - STATE(985), 1, + STATE(1037), 1, sym_string, - STATE(1320), 1, + STATE(1387), 1, sym_list_splat_pattern, - STATE(1810), 1, + STATE(1797), 1, sym_expression, - STATE(2698), 1, + STATE(2673), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61450,14 +62020,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(1079), 2, + ACTIONS(1115), 2, anon_sym_match, anon_sym_type, ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1077), 3, + ACTIONS(1113), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -61466,7 +62036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1807), 7, + STATE(1827), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61474,7 +62044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1331), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61491,118 +62061,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [42949] = 6, - ACTIONS(1559), 1, - anon_sym_except, - ACTIONS(1562), 1, - anon_sym_except_STAR, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(587), 3, - sym_except_clause, - sym_except_group_clause, - aux_sym_try_statement_repeat1, - ACTIONS(1505), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + [43085] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1507), 34, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, + ACTIONS(298), 1, anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(306), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [43015] = 22, - ACTIONS(757), 1, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(392), 1, + sym_identifier, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1003), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1005), 1, - anon_sym_lambda, - ACTIONS(1007), 1, - anon_sym_await, - ACTIONS(1281), 1, - sym_identifier, - ACTIONS(1307), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(963), 1, + STATE(962), 1, sym_primary_expression, - STATE(1081), 1, + STATE(990), 1, sym_string, - STATE(1444), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1753), 1, + STATE(2020), 1, sym_expression, - STATE(2585), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(997), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(995), 3, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(755), 4, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1748), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61610,7 +62120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1441), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61627,58 +62137,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43113] = 22, - ACTIONS(299), 1, + [43183] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2006), 1, + STATE(2054), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61686,7 +62196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61703,58 +62213,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43211] = 22, - ACTIONS(299), 1, + [43281] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2029), 1, + STATE(2042), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61762,7 +62272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61779,58 +62289,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43309] = 22, - ACTIONS(299), 1, + [43379] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1992), 1, + STATE(2055), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61838,7 +62348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61855,7 +62365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43407] = 22, + [43477] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -61864,25 +62374,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(390), 1, anon_sym_await, ACTIONS(629), 1, anon_sym_LPAREN, ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(845), 1, + STATE(859), 1, sym_primary_expression, - STATE(954), 1, + STATE(960), 1, sym_string, - STATE(1047), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1785), 1, + STATE(1671), 1, sym_expression, - STATE(2616), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -61890,14 +62400,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -61906,7 +62416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1649), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61914,7 +62424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1099), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -61931,58 +62441,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43505] = 22, - ACTIONS(299), 1, + [43575] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1989), 1, + STATE(2071), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -61990,7 +62500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62007,58 +62517,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43603] = 22, - ACTIONS(299), 1, + [43673] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2035), 1, + STATE(2077), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62066,7 +62576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62083,58 +62593,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43701] = 22, - ACTIONS(299), 1, + [43771] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2071), 1, + STATE(2084), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62142,7 +62652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62159,58 +62669,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43799] = 22, - ACTIONS(299), 1, + [43869] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1990), 1, + STATE(2086), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62218,7 +62728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62235,58 +62745,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43897] = 22, - ACTIONS(299), 1, + [43967] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2020), 1, + STATE(2094), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62294,7 +62804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62311,58 +62821,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [43995] = 22, - ACTIONS(299), 1, + [44065] = 22, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(306), 1, + ACTIONS(298), 1, anon_sym_lambda, - ACTIONS(314), 1, + ACTIONS(306), 1, anon_sym_await, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(400), 1, + ACTIONS(392), 1, sym_identifier, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1051), 1, + ACTIONS(1087), 1, anon_sym_not, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(952), 1, + STATE(962), 1, sym_primary_expression, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(2022), 1, + STATE(2095), 1, sym_expression, - STATE(2729), 1, + STATE(2653), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(285), 2, + ACTIONS(277), 2, anon_sym_match, anon_sym_type, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(270), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1723), 7, + STATE(1734), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62370,7 +62880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62387,159 +62897,70 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44093] = 22, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(69), 1, - anon_sym_not, - ACTIONS(71), 1, - anon_sym_lambda, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(375), 1, - sym_identifier, - ACTIONS(398), 1, - anon_sym_await, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(637), 1, - anon_sym_LBRACK, - ACTIONS(1293), 1, - anon_sym_STAR, - STATE(845), 1, - sym_primary_expression, - STATE(954), 1, - sym_string, - STATE(1047), 1, - sym_list_splat_pattern, - STATE(1847), 1, - sym_expression, - STATE(2616), 1, - sym__named_expression_lhs, + [44163] = 9, + ACTIONS(1511), 1, + anon_sym_else, + ACTIONS(1513), 1, + anon_sym_except, + ACTIONS(1515), 1, + anon_sym_finally, + STATE(690), 1, + sym_else_clause, + STATE(823), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(387), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(383), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(77), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1649), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1099), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [44191] = 22, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, + STATE(617), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1549), 12, + sym__dedent, sym_string_start, - ACTIONS(400), 1, - sym_identifier, - ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, anon_sym_STAR, - STATE(952), 1, - sym_primary_expression, - STATE(984), 1, - sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(2034), 1, - sym_expression, - STATE(2729), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(278), 3, + ACTIONS(1551), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(312), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1723), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1377), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [44289] = 22, + [44235] = 22, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(69), 1, @@ -62548,25 +62969,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_lambda, ACTIONS(81), 1, sym_string_start, - ACTIONS(375), 1, + ACTIONS(367), 1, sym_identifier, - ACTIONS(398), 1, + ACTIONS(390), 1, anon_sym_await, ACTIONS(629), 1, anon_sym_LPAREN, ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1293), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(845), 1, + STATE(859), 1, sym_primary_expression, - STATE(954), 1, + STATE(960), 1, sym_string, - STATE(1047), 1, + STATE(1128), 1, sym_list_splat_pattern, - STATE(1899), 1, + STATE(1927), 1, sym_expression, - STATE(2616), 1, + STATE(2709), 1, sym__named_expression_lhs, ACTIONS(3), 2, sym_comment, @@ -62574,14 +62995,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(387), 2, + ACTIONS(379), 2, anon_sym_match, anon_sym_type, ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(383), 3, + ACTIONS(375), 3, anon_sym_print, anon_sym_async, anon_sym_exec, @@ -62590,159 +63011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1649), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1099), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [44387] = 22, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(306), 1, - anon_sym_lambda, - ACTIONS(314), 1, - anon_sym_await, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(400), 1, - sym_identifier, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1051), 1, - anon_sym_not, - ACTIONS(1421), 1, - anon_sym_STAR, - STATE(952), 1, - sym_primary_expression, - STATE(984), 1, - sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(2036), 1, - sym_expression, - STATE(2729), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(285), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(278), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1723), 7, - sym_named_expression, - sym_as_pattern, - sym_not_operator, - sym_boolean_operator, - sym_comparison_operator, - sym_lambda, - sym_conditional_expression, - STATE(1377), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [44485] = 22, - ACTIONS(666), 1, - anon_sym_LPAREN, - ACTIONS(674), 1, - anon_sym_LBRACK, - ACTIONS(678), 1, - anon_sym_LBRACE, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(977), 1, - anon_sym_STAR, - ACTIONS(985), 1, - anon_sym_not, - ACTIONS(987), 1, - anon_sym_lambda, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1145), 1, - anon_sym_await, - STATE(901), 1, - sym_primary_expression, - STATE(975), 1, - sym_string, - STATE(1197), 1, - sym_list_splat_pattern, - STATE(1896), 1, - sym_expression, - STATE(2650), 1, - sym__named_expression_lhs, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(680), 2, - sym_ellipsis, - sym_float, - ACTIONS(1143), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(676), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1141), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(664), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1769), 7, + STATE(1659), 7, sym_named_expression, sym_as_pattern, sym_not_operator, @@ -62750,7 +63019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comparison_operator, sym_lambda, sym_conditional_expression, - STATE(1279), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -62767,23 +63036,23 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [44583] = 10, - ACTIONS(1567), 1, + [44333] = 10, + ACTIONS(1555), 1, anon_sym_COMMA, - ACTIONS(1572), 1, + ACTIONS(1560), 1, anon_sym_COLON_EQ, - ACTIONS(1574), 1, + ACTIONS(1562), 1, anon_sym_COLON, - ACTIONS(1577), 1, + ACTIONS(1565), 1, anon_sym_EQ, - ACTIONS(1579), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - STATE(2082), 1, + STATE(2109), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 13, + ACTIONS(1569), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -62797,7 +63066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1570), 15, + ACTIONS(1558), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -62813,7 +63082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 16, + ACTIONS(1553), 16, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -62830,83 +63099,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44656] = 8, - ACTIONS(272), 1, - anon_sym_COMMA, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(282), 1, - anon_sym_COLON, - ACTIONS(292), 1, - anon_sym_EQ, + [44406] = 8, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1575), 1, + anon_sym_elif, + STATE(610), 1, + aux_sym_if_statement_repeat1, + STATE(705), 1, + sym_elif_clause, + STATE(775), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(308), 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(267), 15, + ACTIONS(1571), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(265), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1573), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [44724] = 8, - ACTIONS(1429), 1, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [44474] = 8, + ACTIONS(1511), 1, anon_sym_else, - ACTIONS(1587), 1, + ACTIONS(1581), 1, anon_sym_elif, - STATE(610), 1, + STATE(623), 1, aux_sym_if_statement_repeat1, - STATE(704), 1, + STATE(695), 1, sym_elif_clause, - STATE(821), 1, + STATE(826), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 12, + ACTIONS(1579), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -62917,7 +63186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1585), 32, + ACTIONS(1577), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -62950,19 +63219,18 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44792] = 8, - ACTIONS(272), 1, + [44542] = 7, + ACTIONS(264), 1, anon_sym_COMMA, - ACTIONS(280), 1, + ACTIONS(272), 1, anon_sym_COLON_EQ, - ACTIONS(282), 1, - anon_sym_COLON, - ACTIONS(292), 1, - anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(308), 13, + ACTIONS(284), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(300), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -62976,7 +63244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(267), 15, + ACTIONS(259), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -62992,7 +63260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 17, + ACTIONS(257), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63010,18 +63278,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44860] = 7, - ACTIONS(272), 1, + [44608] = 7, + ACTIONS(264), 1, anon_sym_COMMA, - ACTIONS(280), 1, + ACTIONS(272), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(292), 2, + ACTIONS(284), 2, anon_sym_COLON, anon_sym_EQ, - ACTIONS(308), 13, + ACTIONS(300), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63035,7 +63303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(267), 15, + ACTIONS(259), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63051,7 +63319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 17, + ACTIONS(257), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63069,23 +63337,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [44926] = 8, - ACTIONS(1441), 1, + [44674] = 8, + ACTIONS(1485), 1, anon_sym_else, - ACTIONS(1593), 1, + ACTIONS(1575), 1, anon_sym_elif, - STATE(613), 1, + STATE(647), 1, aux_sym_if_statement_repeat1, - STATE(691), 1, + STATE(705), 1, sym_elif_clause, - STATE(787), 1, + STATE(740), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 12, - sym__dedent, + ACTIONS(1579), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63096,7 +63364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1589), 32, + ACTIONS(1577), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63129,21 +63397,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [44994] = 8, - ACTIONS(1429), 1, + [44742] = 8, + ACTIONS(1485), 1, anon_sym_else, - ACTIONS(1587), 1, + ACTIONS(1575), 1, anon_sym_elif, - STATE(665), 1, + STATE(619), 1, aux_sym_if_statement_repeat1, - STATE(704), 1, + STATE(705), 1, sym_elif_clause, - STATE(734), 1, + STATE(825), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1595), 12, + ACTIONS(1583), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -63156,7 +63424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1597), 32, + ACTIONS(1585), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63189,23 +63457,23 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45062] = 8, - ACTIONS(1429), 1, + [44810] = 8, + ACTIONS(1511), 1, anon_sym_else, - ACTIONS(1587), 1, + ACTIONS(1581), 1, anon_sym_elif, - STATE(616), 1, + STATE(623), 1, aux_sym_if_statement_repeat1, - STATE(704), 1, + STATE(695), 1, sym_elif_clause, - STATE(776), 1, + STATE(750), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1591), 12, + ACTIONS(1589), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -63216,7 +63484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1589), 32, + ACTIONS(1587), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63249,93 +63517,34 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45130] = 7, - ACTIONS(1567), 1, - anon_sym_COMMA, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [44878] = 8, + ACTIONS(1511), 1, + anon_sym_else, + ACTIONS(1581), 1, + anon_sym_elif, + STATE(607), 1, + aux_sym_if_statement_repeat1, + STATE(695), 1, + sym_elif_clause, + STATE(757), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1577), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(1581), 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(1570), 15, + ACTIONS(1571), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [45196] = 8, - ACTIONS(1441), 1, - anon_sym_else, - ACTIONS(1593), 1, - anon_sym_elif, - STATE(663), 1, - aux_sym_if_statement_repeat1, - STATE(691), 1, - sym_elif_clause, - STATE(802), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1601), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1599), 32, + ACTIONS(1573), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63368,78 +63577,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45264] = 8, - ACTIONS(1441), 1, - anon_sym_else, - ACTIONS(1593), 1, - anon_sym_elif, - STATE(617), 1, - aux_sym_if_statement_repeat1, - STATE(691), 1, - sym_elif_clause, - STATE(803), 1, - sym_else_clause, + [44946] = 8, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(274), 1, + anon_sym_COLON, + ACTIONS(284), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1583), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(300), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(259), 15, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1585), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(257), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45332] = 7, - ACTIONS(272), 1, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [45014] = 8, + ACTIONS(264), 1, anon_sym_COMMA, - ACTIONS(280), 1, + ACTIONS(272), 1, anon_sym_COLON_EQ, + ACTIONS(274), 1, + anon_sym_COLON, + ACTIONS(284), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(292), 2, - anon_sym_COLON, - anon_sym_EQ, - ACTIONS(308), 13, + ACTIONS(300), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -63453,7 +63663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(267), 15, + ACTIONS(259), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -63469,7 +63679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 17, + ACTIONS(257), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -63487,136 +63697,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45398] = 8, - ACTIONS(1429), 1, - anon_sym_else, - ACTIONS(1587), 1, - anon_sym_elif, - STATE(665), 1, - aux_sym_if_statement_repeat1, - STATE(704), 1, - sym_elif_clause, - STATE(817), 1, - sym_else_clause, + [45082] = 7, + ACTIONS(1555), 1, + anon_sym_COMMA, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1601), 12, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1565), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1569), 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(1558), 15, anon_sym_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1599), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45466] = 8, - ACTIONS(1441), 1, - anon_sym_else, - ACTIONS(1593), 1, - anon_sym_elif, - STATE(663), 1, - aux_sym_if_statement_repeat1, - STATE(691), 1, - sym_elif_clause, - STATE(818), 1, - sym_else_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1595), 12, - sym__dedent, - sym_string_start, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1553), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1597), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_as, anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [45534] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [45148] = 5, + ACTIONS(1595), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 13, + STATE(617), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1593), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -63625,7 +63778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1603), 35, + ACTIONS(1591), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63643,7 +63796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -63661,74 +63813,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45591] = 7, - ACTIONS(1619), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1609), 2, - anon_sym_DOT, - anon_sym_COLON, - ACTIONS(1611), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1617), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1614), 12, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1607), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45656] = 3, + [45210] = 5, + ACTIONS(1598), 1, + anon_sym_except, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 13, - sym__dedent, + STATE(618), 2, + sym_except_clause, + aux_sym_try_statement_repeat1, + ACTIONS(1593), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -63737,7 +63835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1621), 35, + ACTIONS(1591), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63755,7 +63853,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -63773,16 +63870,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45713] = 3, + [45272] = 8, + ACTIONS(1485), 1, + anon_sym_else, + ACTIONS(1575), 1, + anon_sym_elif, + STATE(647), 1, + aux_sym_if_statement_repeat1, + STATE(705), 1, + sym_elif_clause, + STATE(774), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 13, + ACTIONS(1589), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -63791,7 +63897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1627), 35, + ACTIONS(1587), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63803,14 +63909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63827,16 +63930,25 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45770] = 3, + [45340] = 8, + ACTIONS(1511), 1, + anon_sym_else, + ACTIONS(1581), 1, + anon_sym_elif, + STATE(612), 1, + aux_sym_if_statement_repeat1, + STATE(695), 1, + sym_elif_clause, + STATE(803), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 13, + ACTIONS(1583), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -63845,7 +63957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1629), 35, + ACTIONS(1585), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -63857,14 +63969,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -63881,15 +63990,33 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [45827] = 3, + [45408] = 6, + ACTIONS(1565), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 16, + ACTIONS(1555), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1569), 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(1558), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -63902,15 +64029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 32, + ACTIONS(1553), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -63922,46 +64047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [45884] = 6, - ACTIONS(1577), 1, - anon_sym_EQ, + [45471] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1581), 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(1642), 15, + ACTIONS(1603), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -63974,13 +64068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 17, + ACTIONS(1601), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -63992,16 +64088,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [45947] = 6, - ACTIONS(1577), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45528] = 6, + ACTIONS(1609), 1, + anon_sym_elif, + STATE(623), 1, + aux_sym_if_statement_repeat1, + STATE(695), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1607), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1605), 33, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [45591] = 6, + ACTIONS(1565), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, + ACTIONS(1614), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1581), 13, + ACTIONS(1569), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64015,7 +64181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1570), 15, + ACTIONS(1617), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64031,7 +64197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 17, + ACTIONS(1612), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64049,33 +64215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46010] = 6, - ACTIONS(1651), 1, - anon_sym_EQ, + [45654] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1653), 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(1649), 15, + ACTIONS(1621), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64088,13 +64236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 17, + ACTIONS(1619), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64106,16 +64256,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46073] = 6, - ACTIONS(1662), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [45711] = 6, + ACTIONS(1630), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, + ACTIONS(1625), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1664), 13, + ACTIONS(1632), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64129,7 +64292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1660), 15, + ACTIONS(1628), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64145,7 +64308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 17, + ACTIONS(1623), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64163,16 +64326,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46136] = 6, - ACTIONS(1577), 1, + [45774] = 6, + ACTIONS(1641), 1, anon_sym_EQ, - ACTIONS(1639), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 14, + ACTIONS(1636), 2, + anon_sym_COMMA, anon_sym_COLON, + ACTIONS(1643), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64186,7 +64349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1642), 15, + ACTIONS(1639), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64202,7 +64365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 17, + ACTIONS(1634), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64220,16 +64383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46199] = 3, + [45837] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1666), 13, + ACTIONS(1645), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -64238,7 +64400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1668), 35, + ACTIONS(1647), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64250,6 +64412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -64274,16 +64437,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46256] = 3, + [45894] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 13, + ACTIONS(1645), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -64292,7 +64454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1627), 35, + ACTIONS(1647), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64304,6 +64466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -64328,47 +64491,16 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46313] = 3, + [45951] = 6, + ACTIONS(1625), 1, + anon_sym_COMMA, + ACTIONS(1630), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1670), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(1632), 14, anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -64382,15 +64514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46370] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1672), 16, + ACTIONS(1628), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64403,15 +64530,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 32, + ACTIONS(1623), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64423,46 +64548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46427] = 6, - ACTIONS(1657), 1, - anon_sym_COMMA, - ACTIONS(1662), 1, - anon_sym_EQ, + [46014] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1664), 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(1660), 15, + ACTIONS(1651), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64475,13 +64569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 17, + ACTIONS(1649), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64493,16 +64589,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46490] = 3, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46071] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1674), 13, + ACTIONS(1655), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -64511,7 +64619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1676), 35, + ACTIONS(1653), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64523,6 +64631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -64547,16 +64656,69 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46547] = 3, + [46128] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1603), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1601), 32, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46185] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 13, + ACTIONS(1655), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -64565,7 +64727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 35, + ACTIONS(1653), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64577,6 +64739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -64601,16 +64764,72 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46604] = 3, + [46242] = 6, + ACTIONS(1636), 1, + anon_sym_COMMA, + ACTIONS(1641), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1643), 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(1639), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1634), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46305] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 13, + ACTIONS(1657), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -64619,7 +64838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1684), 35, + ACTIONS(1659), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64631,6 +64850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -64655,33 +64875,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46661] = 6, - ACTIONS(1646), 1, - anon_sym_COMMA, - ACTIONS(1651), 1, - anon_sym_EQ, + [46362] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 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(1649), 15, + ACTIONS(1663), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -64694,13 +64896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 17, + ACTIONS(1661), 32, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_LBRACK, anon_sym_not, @@ -64712,15 +64916,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46724] = 6, - ACTIONS(1567), 1, - anon_sym_COMMA, - ACTIONS(1577), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46419] = 6, + ACTIONS(1565), 1, anon_sym_EQ, + ACTIONS(1614), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 14, + ACTIONS(1569), 14, anon_sym_COLON, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -64735,7 +64952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1570), 15, + ACTIONS(1617), 15, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -64751,7 +64968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 17, + ACTIONS(1612), 17, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -64769,70 +64986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [46787] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1688), 13, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1686), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [46844] = 3, + [46482] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 13, + ACTIONS(1665), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -64841,7 +65003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1603), 35, + ACTIONS(1667), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64853,6 +65015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -64877,16 +65040,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46901] = 3, + [46539] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1623), 13, + ACTIONS(1665), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -64895,7 +65057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1621), 35, + ACTIONS(1667), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -64907,6 +65069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -64931,70 +65094,72 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [46958] = 3, + [46596] = 6, + ACTIONS(1555), 1, + anon_sym_COMMA, + ACTIONS(1565), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1682), 13, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, + ACTIONS(1569), 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(1558), 15, anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1684), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1553), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_in, + anon_sym_LBRACK, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47015] = 3, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46659] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 13, + ACTIONS(1671), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65003,7 +65168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1669), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65015,6 +65180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -65039,61 +65205,63 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47072] = 3, + [46716] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 13, - sym__dedent, - sym_string_start, + ACTIONS(650), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 3, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, + ACTIONS(645), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1694), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_COLON, + anon_sym_in, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47129] = 5, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46777] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -65149,16 +65317,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47190] = 3, + [46838] = 7, + ACTIONS(1685), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1675), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1677), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1683), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1680), 12, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1673), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [46903] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1688), 13, + ACTIONS(1657), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65167,7 +65392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1686), 35, + ACTIONS(1659), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65179,6 +65404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -65203,16 +65429,21 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47247] = 3, + [46960] = 6, + ACTIONS(1687), 1, + anon_sym_elif, + STATE(647), 1, + aux_sym_if_statement_repeat1, + STATE(705), 1, + sym_elif_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1696), 13, + ACTIONS(1607), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65221,7 +65452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1694), 35, + ACTIONS(1605), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65239,8 +65470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_except, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -65257,130 +65486,71 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47304] = 3, + [47023] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1698), 13, - sym_string_start, - ts_builtin_sym_end, + ACTIONS(1677), 3, + anon_sym_DOT, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1700), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47361] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1702), 13, - sym_string_start, - ts_builtin_sym_end, - anon_sym_LPAREN, + ACTIONS(1683), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1680), 13, anon_sym_STAR, - anon_sym_except_STAR, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_PIPE, anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1704), 35, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1673), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_else, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_except, - anon_sym_finally, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, + anon_sym_COLON, + anon_sym_in, anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, - anon_sym_await, - sym_true, - sym_false, - sym_none, - [47418] = 5, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [47084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(650), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(645), 13, + ACTIONS(1692), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65391,14 +65561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1690), 32, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65421,22 +65596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47479] = 5, + [47141] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1617), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1614), 13, + ACTIONS(1621), 16, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -65447,14 +65615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1607), 29, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 32, sym__newline, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_LBRACK, anon_sym_not, anon_sym_and, anon_sym_or, @@ -65477,16 +65650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47540] = 3, + [47198] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 13, + ACTIONS(1671), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65495,7 +65667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1669), 36, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65507,6 +65679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, @@ -65531,16 +65704,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47597] = 3, + [47255] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1698), 13, + ACTIONS(1696), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65549,7 +65721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1700), 35, + ACTIONS(1694), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65585,16 +65757,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47654] = 3, + [47311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1702), 13, + ACTIONS(1700), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65603,7 +65774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1704), 35, + ACTIONS(1698), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65639,70 +65810,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47711] = 3, + [47367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1706), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47768] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1712), 13, + ACTIONS(1704), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65711,7 +65827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1710), 35, + ACTIONS(1702), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65747,70 +65863,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47825] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1716), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1714), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47882] = 3, + [47423] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 13, + ACTIONS(1708), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65819,7 +65880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1710), 35, + ACTIONS(1706), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65855,70 +65916,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [47939] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1720), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1718), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [47996] = 3, + [47479] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 13, + ACTIONS(1710), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65927,7 +65933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1712), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -65963,16 +65969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48053] = 3, + [47535] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 13, - sym__dedent, + ACTIONS(1714), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -65981,7 +65986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1716), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66017,73 +66022,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48110] = 3, + [47591] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 16, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_EQ, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1718), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [48167] = 6, - ACTIONS(1730), 1, - anon_sym_elif, - STATE(663), 1, - aux_sym_if_statement_repeat1, - STATE(691), 1, - sym_elif_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1728), 12, - sym__dedent, + ACTIONS(1714), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66094,7 +66039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 33, + ACTIONS(1716), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66112,6 +66057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66128,16 +66075,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48230] = 3, + [47647] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1666), 13, - sym__dedent, + ACTIONS(1718), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66146,7 +66092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1668), 35, + ACTIONS(1720), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66182,19 +66128,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48287] = 6, - ACTIONS(1733), 1, - anon_sym_elif, - STATE(665), 1, - aux_sym_if_statement_repeat1, - STATE(704), 1, - sym_elif_clause, + [47703] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1728), 12, + ACTIONS(1724), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66205,7 +66145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1726), 33, + ACTIONS(1722), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66223,6 +66163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -66239,16 +66181,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48350] = 3, + [47759] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1674), 13, - sym__dedent, + ACTIONS(1726), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66257,7 +66198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1676), 35, + ACTIONS(1728), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66293,16 +66234,86 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48407] = 3, + [47815] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1730), 1, + sym_identifier, + ACTIONS(1732), 1, + anon_sym_LPAREN, + ACTIONS(1734), 1, + anon_sym_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + ACTIONS(1742), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1577), 1, + sym_list_splat_pattern, + STATE(1626), 1, + sym_primary_expression, + STATE(2072), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1678), 13, - sym__dedent, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1738), 2, + anon_sym_match, + anon_sym_type, + STATE(1572), 2, + sym_attribute, + sym_subscript, + STATE(2035), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1736), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(971), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [47907] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1704), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66311,7 +66322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1680), 35, + ACTIONS(1702), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66347,16 +66358,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48464] = 3, + [47963] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1631), 13, + ACTIONS(1744), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, - anon_sym_except_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, @@ -66365,7 +66375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1629), 35, + ACTIONS(1746), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66401,13 +66411,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48521] = 3, + [48019] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, - sym__dedent, + ACTIONS(1748), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66418,7 +66428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1750), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66430,13 +66440,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66454,11 +66464,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48577] = 3, + [48075] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1744), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66471,7 +66481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1746), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66483,13 +66493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66507,13 +66517,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48633] = 3, + [48131] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 12, - sym__dedent, + ACTIONS(1752), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66524,7 +66534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1710), 35, + ACTIONS(1754), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66536,13 +66546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66560,13 +66570,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48689] = 3, + [48187] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 12, + ACTIONS(1726), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66577,7 +66587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1690), 35, + ACTIONS(1728), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66589,13 +66599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66613,82 +66623,170 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48745] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, + [48243] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1724), 12, sym_string_start, - ACTIONS(1736), 1, - sym_identifier, - ACTIONS(1738), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(1740), 1, anon_sym_STAR, - ACTIONS(1746), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1722), 35, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1569), 1, - sym_list_splat_pattern, - STATE(1608), 1, - sym_primary_expression, - STATE(2053), 1, - sym_pattern, + sym_true, + sym_false, + sym_none, + [48299] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(1752), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1744), 2, + ACTIONS(1754), 35, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1567), 2, - sym_attribute, - sym_subscript, - STATE(2068), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 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, + [48355] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1710), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1742), 3, + sym_ellipsis, + sym_float, + ACTIONS(1712), 35, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, + anon_sym_finally, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(312), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - ACTIONS(957), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [48837] = 3, + [48411] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 12, + ACTIONS(1756), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -66701,7 +66799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1603), 35, + ACTIONS(1758), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66713,13 +66811,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66737,13 +66835,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48893] = 3, + [48467] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 12, - sym__dedent, + ACTIONS(1696), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66754,7 +66852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1603), 35, + ACTIONS(1694), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66766,13 +66864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66790,63 +66888,63 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [48949] = 21, - ACTIONS(299), 1, + [48523] = 21, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1736), 1, + ACTIONS(1730), 1, sym_identifier, - ACTIONS(1738), 1, + ACTIONS(1732), 1, anon_sym_LPAREN, - ACTIONS(1740), 1, + ACTIONS(1734), 1, anon_sym_STAR, - ACTIONS(1746), 1, + ACTIONS(1740), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, + ACTIONS(1742), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1569), 1, + STATE(1577), 1, sym_list_splat_pattern, - STATE(1608), 1, + STATE(1626), 1, sym_primary_expression, - STATE(2053), 1, + STATE(2072), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(1744), 2, + ACTIONS(1738), 2, anon_sym_match, anon_sym_type, - STATE(1567), 2, + STATE(1572), 2, sym_attribute, sym_subscript, - STATE(2068), 2, + STATE(2035), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1742), 3, + ACTIONS(1736), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - ACTIONS(971), 4, + ACTIONS(957), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -66861,11 +66959,11 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [49041] = 3, + [48615] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 12, + ACTIONS(1762), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -66878,7 +66976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1627), 35, + ACTIONS(1760), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66890,13 +66988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66914,13 +67012,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49097] = 3, + [48671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 12, + ACTIONS(1766), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66931,7 +67029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1627), 35, + ACTIONS(1764), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66943,13 +67041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -66967,13 +67065,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49153] = 3, + [48727] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 12, + ACTIONS(1766), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -66984,7 +67082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1710), 35, + ACTIONS(1764), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -66996,13 +67094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67020,13 +67118,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49209] = 3, + [48783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 12, + ACTIONS(1714), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67037,7 +67135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1724), 35, + ACTIONS(1716), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67049,13 +67147,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, anon_sym_finally, anon_sym_with, anon_sym_def, @@ -67073,17 +67171,66 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49265] = 5, - ACTIONS(1435), 1, + [48839] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1768), 35, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_except, anon_sym_finally, - STATE(721), 1, - sym_finally_clause, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [48895] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 12, + ACTIONS(1714), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67094,7 +67241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1752), 32, + ACTIONS(1716), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67106,11 +67253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67127,7 +67277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49324] = 3, + [48951] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -67144,7 +67294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 34, + ACTIONS(1758), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67156,13 +67306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67179,15 +67330,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49379] = 5, - ACTIONS(1429), 1, - anon_sym_else, - STATE(762), 1, - sym_else_clause, + [49007] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1758), 12, + ACTIONS(1700), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67200,7 +67347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1760), 32, + ACTIONS(1698), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67212,11 +67359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67233,17 +67383,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49438] = 5, - ACTIONS(1441), 1, - anon_sym_else, - STATE(792), 1, - sym_else_clause, + [49063] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1764), 12, - sym__dedent, + ACTIONS(1708), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67254,7 +67400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1762), 32, + ACTIONS(1706), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67266,11 +67412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67287,15 +67436,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49497] = 5, - ACTIONS(1447), 1, - anon_sym_finally, - STATE(794), 1, - sym_finally_clause, + [49119] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 12, + ACTIONS(1718), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67308,7 +67453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1439), 32, + ACTIONS(1720), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67320,11 +67465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67341,11 +67489,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49556] = 3, + [49175] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1766), 12, + ACTIONS(1762), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67358,7 +67506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1768), 34, + ACTIONS(1760), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67370,13 +67518,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67393,15 +67542,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49611] = 5, - ACTIONS(1435), 1, - anon_sym_finally, - STATE(745), 1, - sym_finally_clause, + [49231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1770), 12, + ACTIONS(1766), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67414,7 +67559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1772), 32, + ACTIONS(1764), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67426,11 +67571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67447,15 +67595,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49670] = 5, - ACTIONS(1429), 1, - anon_sym_else, - STATE(739), 1, - sym_else_clause, + [49287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1774), 12, + ACTIONS(1766), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67468,7 +67612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1776), 32, + ACTIONS(1764), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67480,11 +67624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67501,11 +67648,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49729] = 3, + [49343] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1756), 12, + ACTIONS(1770), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67518,7 +67665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1754), 34, + ACTIONS(1768), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67530,13 +67677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67553,17 +67701,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49784] = 5, - ACTIONS(1435), 1, - anon_sym_finally, - STATE(771), 1, - sym_finally_clause, + [49399] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 12, + ACTIONS(1748), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67574,7 +67718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1439), 32, + ACTIONS(1750), 35, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67586,11 +67730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_except, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -67607,11 +67754,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49843] = 3, + [49455] = 5, + ACTIONS(1515), 1, + anon_sym_finally, + STATE(798), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1774), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -67624,7 +67775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 34, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67636,8 +67787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -67659,17 +67808,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49898] = 5, - ACTIONS(1447), 1, - anon_sym_finally, - STATE(810), 1, - sym_finally_clause, + [49514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 12, - sym__dedent, + ACTIONS(1776), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67680,7 +67825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1752), 32, + ACTIONS(1778), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67692,6 +67837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -67713,17 +67860,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [49957] = 5, - ACTIONS(1441), 1, + [49569] = 5, + ACTIONS(1485), 1, anon_sym_else, - STATE(808), 1, + STATE(783), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1784), 12, - sym__dedent, + ACTIONS(1780), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67767,15 +67914,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50016] = 5, - ACTIONS(1429), 1, - anon_sym_else, - STATE(754), 1, - sym_else_clause, + [49628] = 5, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(837), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, + ACTIONS(1549), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -67788,7 +67935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1788), 32, + ACTIONS(1551), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67821,17 +67968,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50075] = 5, - ACTIONS(1447), 1, + [49687] = 5, + ACTIONS(1489), 1, anon_sym_finally, - STATE(811), 1, + STATE(839), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1457), 12, - sym__dedent, + ACTIONS(1774), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67842,7 +67989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1455), 32, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67875,17 +68022,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50134] = 5, - ACTIONS(1429), 1, - anon_sym_else, - STATE(716), 1, - sym_else_clause, + [49746] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1784), 12, + ACTIONS(1786), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67896,7 +68039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1782), 32, + ACTIONS(1784), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67908,6 +68051,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -67929,17 +68074,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50193] = 5, - ACTIONS(1429), 1, - anon_sym_else, - STATE(757), 1, - sym_else_clause, + [49801] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1790), 12, + ACTIONS(1776), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -67950,7 +68091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1792), 32, + ACTIONS(1778), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -67962,6 +68103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -67983,15 +68126,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50252] = 5, - ACTIONS(1441), 1, + [49856] = 5, + ACTIONS(1511), 1, anon_sym_else, - STATE(823), 1, + STATE(781), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1774), 12, + ACTIONS(1790), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68004,7 +68147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1776), 32, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68037,15 +68180,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50311] = 5, - ACTIONS(1435), 1, + [49915] = 5, + ACTIONS(1489), 1, anon_sym_finally, - STATE(722), 1, + STATE(842), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1457), 12, + ACTIONS(1481), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68058,7 +68201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1455), 32, + ACTIONS(1483), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68091,13 +68234,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50370] = 3, + [49974] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(748), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1766), 12, - sym__dedent, + ACTIONS(1792), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68108,7 +68255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1768), 34, + ACTIONS(1794), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68120,8 +68267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68143,15 +68288,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50425] = 5, - ACTIONS(1447), 1, + [50033] = 5, + ACTIONS(1515), 1, anon_sym_finally, - STATE(831), 1, + STATE(828), 1, sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1770), 12, + ACTIONS(1798), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68164,7 +68309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1772), 32, + ACTIONS(1796), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68197,17 +68342,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50484] = 5, - ACTIONS(1441), 1, + [50092] = 5, + ACTIONS(1485), 1, anon_sym_else, - STATE(727), 1, + STATE(742), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1790), 12, - sym__dedent, + ACTIONS(1800), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68218,7 +68363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1792), 32, + ACTIONS(1802), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68251,15 +68396,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50543] = 5, - ACTIONS(1441), 1, - anon_sym_else, - STATE(829), 1, - sym_else_clause, + [50151] = 5, + ACTIONS(1515), 1, + anon_sym_finally, + STATE(811), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1786), 12, + ACTIONS(1481), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68272,7 +68417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1788), 32, + ACTIONS(1483), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68305,11 +68450,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50602] = 3, + [50210] = 5, + ACTIONS(1489), 1, + anon_sym_finally, + STATE(755), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1780), 12, + ACTIONS(1798), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68322,7 +68471,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1778), 34, + ACTIONS(1796), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50269] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1804), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1806), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68357,15 +68556,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50657] = 5, - ACTIONS(1429), 1, - anon_sym_else, - STATE(713), 1, - sym_else_clause, + [50324] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1764), 12, + ACTIONS(1786), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68378,7 +68573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1762), 32, + ACTIONS(1784), 34, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68390,6 +68585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_match, anon_sym_async, anon_sym_for, @@ -68411,15 +68608,67 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50716] = 5, - ACTIONS(1441), 1, + [50379] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1804), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1806), 34, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [50434] = 5, + ACTIONS(1511), 1, anon_sym_else, - STATE(719), 1, + STATE(835), 1, sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1758), 12, + ACTIONS(1792), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68432,7 +68681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1760), 32, + ACTIONS(1794), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68465,11 +68714,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50775] = 3, + [50493] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(771), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1808), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68482,7 +68735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 33, + ACTIONS(1810), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68499,7 +68752,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68516,81 +68768,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50829] = 22, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(1798), 1, - sym_identifier, - ACTIONS(1800), 1, - anon_sym_LPAREN, - ACTIONS(1802), 1, - anon_sym_RPAREN, - ACTIONS(1804), 1, - anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_LBRACK, - ACTIONS(1812), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1581), 1, - sym_primary_expression, - STATE(1589), 1, - sym_list_splat_pattern, - STATE(2289), 1, - sym_pattern, - STATE(2615), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(1808), 2, - anon_sym_match, - anon_sym_type, - STATE(1595), 2, - sym_attribute, - sym_subscript, - STATE(2546), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1806), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [50921] = 3, + [50552] = 5, + ACTIONS(1511), 1, + anon_sym_else, + STATE(786), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1794), 12, + ACTIONS(1814), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68603,7 +68789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1796), 33, + ACTIONS(1812), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68620,7 +68806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68637,11 +68822,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [50975] = 3, + [50611] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(822), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1790), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68654,7 +68843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 33, + ACTIONS(1788), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68671,7 +68860,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68688,11 +68876,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51029] = 3, + [50670] = 5, + ACTIONS(1511), 1, + anon_sym_else, + STATE(762), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1814), 12, + ACTIONS(1780), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68705,7 +68897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1816), 33, + ACTIONS(1782), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68722,7 +68914,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, - anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -68739,81 +68930,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51083] = 22, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(1798), 1, - sym_identifier, - ACTIONS(1800), 1, - anon_sym_LPAREN, - ACTIONS(1804), 1, - anon_sym_STAR, - ACTIONS(1810), 1, - anon_sym_LBRACK, - ACTIONS(1812), 1, - anon_sym_await, - ACTIONS(1818), 1, - anon_sym_RPAREN, - STATE(984), 1, - sym_string, - STATE(1581), 1, - sym_primary_expression, - STATE(1589), 1, - sym_list_splat_pattern, - STATE(2289), 1, - sym_pattern, - STATE(2709), 1, - sym__patterns, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(1808), 2, - anon_sym_match, - anon_sym_type, - STATE(1595), 2, - sym_attribute, - sym_subscript, - STATE(2546), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1806), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [51175] = 3, + [50729] = 5, + ACTIONS(1485), 1, + anon_sym_else, + STATE(764), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1820), 12, + ACTIONS(1814), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -68826,7 +68951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1822), 32, + ACTIONS(1812), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68859,11 +68984,15 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51228] = 3, + [50788] = 5, + ACTIONS(1511), 1, + anon_sym_else, + STATE(759), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1826), 12, + ACTIONS(1800), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -68876,7 +69005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1824), 32, + ACTIONS(1802), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68909,13 +69038,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51281] = 3, + [50847] = 5, + ACTIONS(1515), 1, + anon_sym_finally, + STATE(823), 1, + sym_finally_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 12, + ACTIONS(1549), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68926,7 +69059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1830), 32, + ACTIONS(1551), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -68959,13 +69092,17 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51334] = 3, + [50906] = 5, + ACTIONS(1511), 1, + anon_sym_else, + STATE(815), 1, + sym_else_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1832), 12, + ACTIONS(1808), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -68976,7 +69113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1834), 32, + ACTIONS(1810), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69009,113 +69146,83 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51387] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1838), 12, - sym__dedent, + [50965] = 22, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, sym_string_start, + ACTIONS(1816), 1, + sym_identifier, + ACTIONS(1818), 1, anon_sym_LPAREN, + ACTIONS(1820), 1, + anon_sym_RPAREN, + ACTIONS(1822), 1, anon_sym_STAR, + ACTIONS(1828), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1836), 32, - anon_sym_import, - anon_sym_from, - anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, - anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, - anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, - sym_integer, - sym_identifier, + ACTIONS(1830), 1, anon_sym_await, - sym_true, - sym_false, - sym_none, - [51440] = 3, + STATE(990), 1, + sym_string, + STATE(1600), 1, + sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, + STATE(2332), 1, + sym_pattern, + STATE(2750), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1842), 12, - sym__dedent, - sym_string_start, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1826), 2, + anon_sym_match, + anon_sym_type, + STATE(1601), 2, + sym_attribute, + sym_subscript, + STATE(2493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1840), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1824), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(304), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [51493] = 3, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [51057] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 12, - sym__dedent, + ACTIONS(1832), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69126,7 +69233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(1834), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69143,6 +69250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69159,13 +69267,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51546] = 3, + [51111] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(1838), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69176,7 +69284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1836), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69193,6 +69301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69209,13 +69318,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51599] = 3, + [51165] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, + ACTIONS(1832), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69226,7 +69335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1854), 32, + ACTIONS(1834), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69243,6 +69352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69259,11 +69369,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51652] = 3, + [51219] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1770), 12, + ACTIONS(1838), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69276,7 +69386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1772), 32, + ACTIONS(1836), 33, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69293,6 +69403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_while, anon_sym_try, + anon_sym_finally, anon_sym_with, anon_sym_def, anon_sym_global, @@ -69309,11 +69420,149 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51705] = 3, + [51273] = 22, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1816), 1, + sym_identifier, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1822), 1, + anon_sym_STAR, + ACTIONS(1828), 1, + anon_sym_LBRACK, + ACTIONS(1830), 1, + anon_sym_await, + ACTIONS(1840), 1, + anon_sym_RPAREN, + STATE(990), 1, + sym_string, + STATE(1600), 1, + sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, + STATE(2332), 1, + sym_pattern, + STATE(2708), 1, + sym__patterns, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1856), 12, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1826), 2, + anon_sym_match, + anon_sym_type, + STATE(1601), 2, + sym_attribute, + sym_subscript, + STATE(2493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1824), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [51365] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(1842), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + STATE(2442), 1, + sym_pattern, + STATE(2678), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1848), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1846), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [51454] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1854), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69326,7 +69575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1858), 32, + ACTIONS(1856), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69359,11 +69608,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51758] = 3, + [51507] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1860), 12, + ACTIONS(1858), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69376,7 +69625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1862), 32, + ACTIONS(1860), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69409,13 +69658,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51811] = 3, + [51560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1864), 12, + ACTIONS(1481), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69426,7 +69675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1866), 32, + ACTIONS(1483), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69459,11 +69708,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51864] = 3, + [51613] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1868), 12, + ACTIONS(1862), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69476,7 +69725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1870), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69509,11 +69758,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51917] = 3, + [51666] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1874), 12, + ACTIONS(1868), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -69526,6 +69775,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, + ACTIONS(1866), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [51719] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1870), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, ACTIONS(1872), 32, anon_sym_import, anon_sym_from, @@ -69559,11 +69858,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [51970] = 3, + [51772] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1876), 12, + ACTIONS(1874), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69576,7 +69875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1878), 32, + ACTIONS(1876), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69609,13 +69908,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52023] = 3, + [51825] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1880), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69626,7 +69925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1882), 32, + ACTIONS(1878), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69659,11 +69958,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52076] = 3, + [51878] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1884), 12, + ACTIONS(1882), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -69676,7 +69975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1886), 32, + ACTIONS(1884), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69709,13 +70008,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52129] = 3, + [51931] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(1888), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69726,7 +70025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1890), 32, + ACTIONS(1886), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69759,60 +70058,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52182] = 21, - ACTIONS(299), 1, + [51984] = 21, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1798), 1, + ACTIONS(1816), 1, sym_identifier, - ACTIONS(1800), 1, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1804), 1, + ACTIONS(1822), 1, anon_sym_STAR, - ACTIONS(1810), 1, + ACTIONS(1828), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1830), 1, anon_sym_await, - ACTIONS(1892), 1, + ACTIONS(1890), 1, anon_sym_RPAREN, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1581), 1, - sym_primary_expression, - STATE(1589), 1, + STATE(1600), 1, sym_list_splat_pattern, - STATE(2542), 1, + STATE(1619), 1, + sym_primary_expression, + STATE(2574), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(1808), 2, + ACTIONS(1826), 2, anon_sym_match, anon_sym_type, - STATE(1595), 2, + STATE(1601), 2, sym_attribute, sym_subscript, - STATE(2546), 2, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1806), 3, + ACTIONS(1824), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -69827,81 +70126,63 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [52271] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - sym_identifier, - ACTIONS(1896), 1, - anon_sym_LPAREN, - ACTIONS(1902), 1, - anon_sym_LBRACK, - ACTIONS(1904), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(2400), 1, - sym_pattern, - STATE(2587), 1, - sym_pattern_list, + [52073] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(1900), 2, - anon_sym_match, - anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(1894), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1898), 3, + sym_ellipsis, + sym_float, + ACTIONS(1892), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(312), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [52360] = 3, + [52126] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1906), 12, + ACTIONS(1898), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69912,7 +70193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1908), 32, + ACTIONS(1896), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69945,13 +70226,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52413] = 3, + [52179] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 12, + ACTIONS(1902), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -69962,7 +70243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1912), 32, + ACTIONS(1900), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -69995,13 +70276,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52466] = 3, + [52232] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(1842), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + STATE(2434), 1, + sym_pattern, + STATE(2656), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1914), 12, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1848), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1846), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52321] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1906), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70012,7 +70361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1916), 32, + ACTIONS(1904), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70045,13 +70394,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52519] = 3, + [52374] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1918), 12, + ACTIONS(1910), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70062,7 +70411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1920), 32, + ACTIONS(1908), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70095,79 +70444,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52572] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - sym_identifier, - ACTIONS(1896), 1, - anon_sym_LPAREN, - ACTIONS(1902), 1, - anon_sym_LBRACK, - ACTIONS(1904), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(2410), 1, - sym_pattern, - STATE(2613), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(1900), 2, - anon_sym_match, - anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1898), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [52661] = 3, + [52427] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, + ACTIONS(1912), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70180,7 +70461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(1914), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70213,13 +70494,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52714] = 3, + [52480] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1926), 12, + ACTIONS(1918), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70230,7 +70511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1928), 32, + ACTIONS(1916), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70263,11 +70544,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52767] = 3, + [52533] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, + ACTIONS(1920), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70280,7 +70561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1922), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70313,11 +70594,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52820] = 3, + [52586] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1936), 12, + ACTIONS(1926), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -70330,7 +70611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1934), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70363,13 +70644,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52873] = 3, + [52639] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, - sym__dedent, + ACTIONS(1868), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70380,7 +70661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1938), 32, + ACTIONS(1866), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70413,11 +70694,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52926] = 3, + [52692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1942), 12, + ACTIONS(1928), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70430,7 +70711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1944), 32, + ACTIONS(1930), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70463,11 +70744,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [52979] = 3, + [52745] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(1842), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + STATE(2262), 1, + sym_pattern, + STATE(2759), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1946), 12, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1848), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1846), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [52834] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1932), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70480,7 +70829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1948), 32, + ACTIONS(1934), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70513,11 +70862,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53032] = 3, + [52887] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1950), 12, + ACTIONS(1936), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70530,7 +70879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1952), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70563,13 +70912,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53085] = 3, + [52940] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(1942), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70580,7 +70929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(1940), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70613,13 +70962,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53138] = 3, + [52993] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(1946), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70630,7 +70979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(1944), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70663,13 +71012,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53191] = 3, + [53046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, + ACTIONS(1854), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70680,7 +71029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(1856), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70713,11 +71062,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53244] = 3, + [53099] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1826), 12, + ACTIONS(1948), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70730,7 +71079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1824), 32, + ACTIONS(1950), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70763,13 +71112,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53297] = 3, + [53152] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1842), 12, + ACTIONS(1948), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -70780,7 +71129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1840), 32, + ACTIONS(1950), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70813,79 +71162,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53350] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - sym_identifier, - ACTIONS(1896), 1, - anon_sym_LPAREN, - ACTIONS(1902), 1, - anon_sym_LBRACK, - ACTIONS(1904), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(2478), 1, - sym_pattern, - STATE(2772), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(1900), 2, - anon_sym_match, - anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1898), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [53439] = 3, + [53205] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 12, + ACTIONS(1952), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70898,7 +71179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1439), 32, + ACTIONS(1954), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70931,11 +71212,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53492] = 3, + [53258] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, + ACTIONS(1956), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70948,7 +71229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(1958), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -70981,11 +71262,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53545] = 3, + [53311] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, + ACTIONS(1960), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -70998,7 +71279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(1962), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71031,13 +71312,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53598] = 3, + [53364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1838), 12, + ACTIONS(1966), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71048,7 +71329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1836), 32, + ACTIONS(1964), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71081,11 +71362,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53651] = 3, + [53417] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1874), 12, + ACTIONS(1880), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71098,7 +71379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1872), 32, + ACTIONS(1878), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71131,13 +71412,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53704] = 3, + [53470] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, + ACTIONS(1920), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71148,7 +71429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(1922), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71181,11 +71462,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53757] = 3, + [53523] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1978), 12, + ACTIONS(1906), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71198,7 +71479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1980), 32, + ACTIONS(1904), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71231,13 +71512,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53810] = 3, + [53576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1982), 12, + ACTIONS(1970), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71248,7 +71529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1984), 32, + ACTIONS(1968), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71281,13 +71562,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53863] = 3, + [53629] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, + ACTIONS(1974), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71298,7 +71579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(1972), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71331,11 +71612,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53916] = 3, + [53682] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1816), 1, + sym_identifier, + ACTIONS(1818), 1, + anon_sym_LPAREN, + ACTIONS(1822), 1, + anon_sym_STAR, + ACTIONS(1828), 1, + anon_sym_LBRACK, + ACTIONS(1830), 1, + anon_sym_await, + ACTIONS(1976), 1, + anon_sym_RPAREN, + STATE(990), 1, + sym_string, + STATE(1600), 1, + sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, + STATE(2574), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1846), 12, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1826), 2, + anon_sym_match, + anon_sym_type, + STATE(1601), 2, + sym_attribute, + sym_subscript, + STATE(2493), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1824), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [53771] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1978), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71348,7 +71697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1844), 32, + ACTIONS(1980), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71381,13 +71730,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [53969] = 3, + [53824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1936), 12, + ACTIONS(1984), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71398,7 +71747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1934), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71431,13 +71780,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54022] = 3, + [53877] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1940), 12, + ACTIONS(1988), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71448,7 +71797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1938), 32, + ACTIONS(1986), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71481,7 +71830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54075] = 3, + [53930] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -71531,11 +71880,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54128] = 3, + [53983] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1992), 12, + ACTIONS(1994), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71548,7 +71897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1990), 32, + ACTIONS(1996), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71581,11 +71930,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54181] = 3, + [54036] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(1842), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + STATE(2485), 1, + sym_pattern, + STATE(2683), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1994), 12, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1848), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1846), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [54125] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1998), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -71598,7 +72015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71631,13 +72048,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54234] = 3, + [54178] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1994), 12, - sym__dedent, + ACTIONS(2002), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71648,7 +72065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1996), 32, + ACTIONS(2004), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71681,13 +72098,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54287] = 3, + [54231] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, + ACTIONS(2008), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71698,7 +72115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71731,81 +72148,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54340] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - sym_identifier, - ACTIONS(1896), 1, - anon_sym_LPAREN, - ACTIONS(1902), 1, - anon_sym_LBRACK, - ACTIONS(1904), 1, - anon_sym_await, - ACTIONS(2002), 1, - anon_sym_in, - STATE(984), 1, - sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(1636), 1, - sym_pattern, + [54284] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(1900), 2, - anon_sym_match, - anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1898), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [54429] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1750), 12, + ACTIONS(2012), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71816,7 +72165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1752), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71849,81 +72198,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54482] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - sym_identifier, - ACTIONS(1896), 1, - anon_sym_LPAREN, - ACTIONS(1902), 1, - anon_sym_LBRACK, - ACTIONS(1904), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(2477), 1, - sym_pattern, - STATE(2768), 1, - sym_pattern_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(1900), 2, - anon_sym_match, - anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1898), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [54571] = 3, + [54337] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1998), 12, - sym__dedent, + ACTIONS(1946), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -71934,7 +72215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2000), 32, + ACTIONS(1944), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -71967,147 +72248,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54624] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - sym_identifier, - ACTIONS(1896), 1, - anon_sym_LPAREN, - ACTIONS(1902), 1, - anon_sym_LBRACK, - ACTIONS(1904), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(2437), 1, - sym_pattern, - STATE(2695), 1, - sym_pattern_list, + [54390] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(1900), 2, - anon_sym_match, - anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1898), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [54713] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(1966), 12, sym_string_start, - ACTIONS(2004), 1, - sym_identifier, - ACTIONS(2006), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2008), 1, anon_sym_STAR, - ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(2016), 1, - anon_sym_RBRACK, - ACTIONS(2018), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1586), 1, - sym_list_splat_pattern, - STATE(1607), 1, - sym_primary_expression, - STATE(2565), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(2012), 2, - anon_sym_match, - anon_sym_type, - STATE(1587), 2, - sym_attribute, - sym_subscript, - STATE(2487), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2010), 3, + sym_ellipsis, + sym_float, + ACTIONS(1964), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(312), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [54802] = 3, + [54443] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2020), 12, + ACTIONS(1888), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72120,7 +72315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2022), 32, + ACTIONS(1886), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72153,79 +72348,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54855] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - sym_identifier, - ACTIONS(1896), 1, - anon_sym_LPAREN, - ACTIONS(1902), 1, - anon_sym_LBRACK, - ACTIONS(1904), 1, - anon_sym_await, - ACTIONS(2024), 1, - anon_sym_in, - STATE(984), 1, - sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(1636), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(1900), 2, - anon_sym_match, - anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(1898), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [54944] = 3, + [54496] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2026), 12, + ACTIONS(1910), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72238,7 +72365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2028), 32, + ACTIONS(1908), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72271,79 +72398,61 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [54997] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, + [54549] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1898), 12, sym_string_start, - ACTIONS(1892), 1, - anon_sym_RBRACK, - ACTIONS(2004), 1, - sym_identifier, - ACTIONS(2006), 1, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(2008), 1, anon_sym_STAR, - ACTIONS(2014), 1, anon_sym_LBRACK, - ACTIONS(2018), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1586), 1, - sym_list_splat_pattern, - STATE(1607), 1, - sym_primary_expression, - STATE(2565), 1, - sym_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(2012), 2, - anon_sym_match, - anon_sym_type, - STATE(1587), 2, - sym_attribute, - sym_subscript, - STATE(2487), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 3, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2010), 3, + sym_ellipsis, + sym_float, + ACTIONS(1896), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(312), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55086] = 3, + [54602] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2030), 12, + ACTIONS(1918), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72356,7 +72465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2032), 32, + ACTIONS(1916), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72389,13 +72498,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55139] = 3, + [54655] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1950), 12, - sym__dedent, + ACTIONS(2014), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72406,7 +72515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1952), 32, + ACTIONS(2016), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72439,11 +72548,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55192] = 3, + [54708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1958), 12, + ACTIONS(2020), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72456,7 +72565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1960), 32, + ACTIONS(2018), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72489,13 +72598,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55245] = 3, + [54761] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1437), 12, - sym__dedent, + ACTIONS(2022), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72506,7 +72615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1439), 32, + ACTIONS(2024), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72539,11 +72648,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55298] = 3, + [54814] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 12, + ACTIONS(1974), 12, sym_string_start, ts_builtin_sym_end, anon_sym_LPAREN, @@ -72556,7 +72665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2036), 32, + ACTIONS(1972), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72589,13 +72698,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55351] = 3, + [54867] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1982), 12, - sym__dedent, + ACTIONS(2008), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72606,7 +72715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1984), 32, + ACTIONS(2006), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72639,13 +72748,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55404] = 3, + [54920] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1986), 12, - sym__dedent, + ACTIONS(2012), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72656,7 +72765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1988), 32, + ACTIONS(2010), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72689,11 +72798,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55457] = 3, + [54973] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2020), 12, + ACTIONS(1978), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72706,7 +72815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2022), 32, + ACTIONS(1980), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72739,11 +72848,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55510] = 3, + [55026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2026), 12, + ACTIONS(1952), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -72756,7 +72865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2028), 32, + ACTIONS(1954), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72789,13 +72898,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55563] = 3, + [55079] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2030), 12, - sym__dedent, + ACTIONS(1894), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72806,7 +72915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2032), 32, + ACTIONS(1892), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72839,13 +72948,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55616] = 3, + [55132] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2034), 12, - sym__dedent, + ACTIONS(1970), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72856,7 +72965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2036), 32, + ACTIONS(1968), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72889,13 +72998,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55669] = 3, + [55185] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2040), 12, - sym__dedent, + ACTIONS(2026), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72906,7 +73015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2038), 32, + ACTIONS(2028), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72939,13 +73048,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55722] = 3, + [55238] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1820), 12, - sym__dedent, + ACTIONS(1549), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -72956,7 +73065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1822), 32, + ACTIONS(1551), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -72989,81 +73098,113 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55775] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - sym_identifier, - ACTIONS(1896), 1, - anon_sym_LPAREN, - ACTIONS(1902), 1, - anon_sym_LBRACK, - ACTIONS(1904), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(2436), 1, - sym_pattern, - STATE(2674), 1, - sym_pattern_list, + [55291] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(1902), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1900), 2, + ACTIONS(1900), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 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, + [55344] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2030), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1898), 3, + sym_ellipsis, + sym_float, + ACTIONS(2032), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(312), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [55864] = 3, + [55397] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1750), 12, - sym__dedent, + ACTIONS(1926), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73074,7 +73215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1752), 32, + ACTIONS(1924), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73107,11 +73248,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55917] = 3, + [55450] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1457), 12, + ACTIONS(2036), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73124,7 +73265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1455), 32, + ACTIONS(2034), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73157,13 +73298,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [55970] = 3, + [55503] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, ACTIONS(2040), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73207,13 +73348,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56023] = 3, + [55556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2044), 12, - sym__dedent, + ACTIONS(2036), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73224,7 +73365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2042), 32, + ACTIONS(2034), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73257,11 +73398,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56076] = 3, + [55609] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1828), 12, + ACTIONS(2044), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73274,7 +73415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1830), 32, + ACTIONS(2042), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73307,11 +73448,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56129] = 3, + [55662] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1864), 12, + ACTIONS(1994), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73324,7 +73465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1866), 32, + ACTIONS(1996), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73357,13 +73498,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56182] = 3, + [55715] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1868), 12, - sym__dedent, + ACTIONS(1984), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73374,7 +73515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1870), 32, + ACTIONS(1982), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73407,11 +73548,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56235] = 3, + [55768] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1962), 12, + ACTIONS(2048), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73424,7 +73565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1964), 32, + ACTIONS(2046), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73457,11 +73598,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56288] = 3, + [55821] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(1842), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_await, + ACTIONS(2050), 1, + anon_sym_in, + STATE(990), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + STATE(1644), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 12, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1848), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1846), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [55910] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2054), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73474,7 +73683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2046), 32, + ACTIONS(2052), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73507,11 +73716,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56341] = 3, + [55963] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(1842), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + STATE(2379), 1, + sym_pattern, + STATE(2742), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1848), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1846), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [56052] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2052), 12, + ACTIONS(2058), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73524,7 +73801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2050), 32, + ACTIONS(2056), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73557,13 +73834,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56394] = 3, + [56105] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1856), 12, - sym__dedent, + ACTIONS(2048), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73574,7 +73851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1858), 32, + ACTIONS(2046), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73607,13 +73884,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56447] = 3, + [56158] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1910), 12, - sym__dedent, + ACTIONS(1988), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73624,7 +73901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1912), 32, + ACTIONS(1986), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73657,63 +73934,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56500] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1926), 12, - sym__dedent, + [56211] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, sym_string_start, + ACTIONS(1890), 1, + anon_sym_RBRACK, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2062), 1, anon_sym_LPAREN, + ACTIONS(2064), 1, anon_sym_STAR, + ACTIONS(2070), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2072), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1592), 1, + sym_list_splat_pattern, + STATE(1625), 1, + sym_primary_expression, + STATE(2575), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(2068), 2, + anon_sym_match, + anon_sym_type, + STATE(1599), 2, + sym_attribute, + sym_subscript, + STATE(2564), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1928), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(2066), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(304), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [56553] = 3, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [56300] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1930), 12, - sym__dedent, + ACTIONS(1992), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73724,7 +74019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1932), 32, + ACTIONS(1990), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73757,11 +74052,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56606] = 3, + [56353] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1832), 12, + ACTIONS(2026), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73774,7 +74069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1834), 32, + ACTIONS(2028), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73807,11 +74102,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56659] = 3, + [56406] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1848), 12, + ACTIONS(1798), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73824,7 +74119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1850), 32, + ACTIONS(1796), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73857,11 +74152,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56712] = 3, + [56459] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1852), 12, + ACTIONS(2030), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73874,7 +74169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1854), 32, + ACTIONS(2032), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73907,13 +74202,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56765] = 3, + [56512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1770), 12, - sym__dedent, + ACTIONS(1942), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -73924,7 +74219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1772), 32, + ACTIONS(1940), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -73957,11 +74252,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56818] = 3, + [56565] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1860), 12, + ACTIONS(1998), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -73974,7 +74269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1862), 32, + ACTIONS(2000), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74007,11 +74302,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56871] = 3, + [56618] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1876), 12, + ACTIONS(2002), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74024,7 +74319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1878), 32, + ACTIONS(2004), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74057,61 +74352,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [56924] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1880), 12, - sym__dedent, + [56671] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, sym_string_start, - anon_sym_LPAREN, + ACTIONS(1423), 1, anon_sym_STAR, + ACTIONS(1842), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(1852), 1, + anon_sym_await, + ACTIONS(2074), 1, + anon_sym_in, + STATE(990), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + STATE(1644), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1848), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1882), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(1846), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(304), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [56977] = 3, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [56760] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1884), 12, + ACTIONS(1858), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74124,7 +74437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1886), 32, + ACTIONS(1860), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74157,11 +74470,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57030] = 3, + [56813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1888), 12, + ACTIONS(1862), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74174,7 +74487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1890), 32, + ACTIONS(1864), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74207,13 +74520,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57083] = 3, + [56866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2048), 12, + ACTIONS(1870), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74224,7 +74537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2046), 32, + ACTIONS(1872), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74257,63 +74570,81 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57136] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1906), 12, - sym__dedent, + [56919] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, sym_string_start, + ACTIONS(1976), 1, + anon_sym_RBRACK, + ACTIONS(2060), 1, + sym_identifier, + ACTIONS(2062), 1, anon_sym_LPAREN, + ACTIONS(2064), 1, anon_sym_STAR, + ACTIONS(2070), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2072), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1592), 1, + sym_list_splat_pattern, + STATE(1625), 1, + sym_primary_expression, + STATE(2575), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(2068), 2, + anon_sym_match, + anon_sym_type, + STATE(1599), 2, + sym_attribute, + sym_subscript, + STATE(2564), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, anon_sym_DASH, - anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - sym_ellipsis, - sym_float, - ACTIONS(1908), 32, - anon_sym_import, - anon_sym_from, + ACTIONS(2066), 3, anon_sym_print, - anon_sym_assert, - anon_sym_return, - anon_sym_del, - anon_sym_raise, - anon_sym_pass, - anon_sym_break, - anon_sym_continue, - anon_sym_if, - anon_sym_match, anon_sym_async, - anon_sym_for, - anon_sym_while, - anon_sym_try, - anon_sym_with, - anon_sym_def, - anon_sym_global, - anon_sym_nonlocal, anon_sym_exec, - anon_sym_type, - anon_sym_class, - anon_sym_not, - anon_sym_lambda, - anon_sym_yield, + ACTIONS(304), 4, sym_integer, - sym_identifier, - anon_sym_await, sym_true, sym_false, sym_none, - [57189] = 3, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [57008] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2044), 12, + ACTIONS(1874), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74324,7 +74655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2042), 32, + ACTIONS(1876), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74357,13 +74688,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57242] = 3, + [57061] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1914), 12, - sym__dedent, + ACTIONS(2020), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74374,7 +74705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1916), 32, + ACTIONS(2018), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74407,13 +74738,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57295] = 3, + [57114] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2052), 12, + ACTIONS(1774), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74424,7 +74755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2050), 32, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74457,11 +74788,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57348] = 3, + [57167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1918), 12, + ACTIONS(1882), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74474,7 +74805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1920), 32, + ACTIONS(1884), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74507,13 +74838,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57401] = 3, + [57220] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1922), 12, - sym__dedent, + ACTIONS(2054), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74524,7 +74855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1924), 32, + ACTIONS(2052), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74557,13 +74888,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57454] = 3, + [57273] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1457), 12, + ACTIONS(1912), 12, + sym__dedent, sym_string_start, - ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74574,7 +74905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1455), 32, + ACTIONS(1914), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74607,11 +74938,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57507] = 3, + [57326] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1974), 12, + ACTIONS(1549), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74624,7 +74955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1976), 32, + ACTIONS(1551), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74657,147 +74988,261 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57560] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - sym_identifier, - ACTIONS(1896), 1, - anon_sym_LPAREN, - ACTIONS(1902), 1, - anon_sym_LBRACK, - ACTIONS(1904), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(2439), 1, - sym_pattern, - STATE(2669), 1, - sym_pattern_list, + [57379] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(1956), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1900), 2, + ACTIONS(1958), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 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, + [57432] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2058), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1898), 3, + sym_ellipsis, + sym_float, + ACTIONS(2056), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(312), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [57649] = 21, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, + [57485] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1928), 12, + sym__dedent, sym_string_start, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - sym_identifier, - ACTIONS(1896), 1, anon_sym_LPAREN, - ACTIONS(1902), 1, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(1904), 1, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1930), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, - sym_list_splat_pattern, - STATE(2441), 1, - sym_pattern, - STATE(2679), 1, - sym_pattern_list, + sym_true, + sym_false, + sym_none, + [57538] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(1932), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1900), 2, + ACTIONS(1934), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, anon_sym_type, - STATE(1611), 2, - sym_attribute, - sym_subscript, - STATE(1626), 2, - sym_tuple_pattern, - sym_list_pattern, - ACTIONS(304), 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, + [57591] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2040), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_LBRACE, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1898), 3, + sym_ellipsis, + sym_float, + ACTIONS(2038), 32, + anon_sym_import, + anon_sym_from, anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, anon_sym_exec, - ACTIONS(312), 4, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, sym_integer, + sym_identifier, + anon_sym_await, sym_true, sym_false, sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [57738] = 3, + [57644] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1978), 12, + ACTIONS(1960), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74810,7 +75255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1980), 32, + ACTIONS(1962), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74843,11 +75288,79 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57791] = 3, + [57697] = 21, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(1842), 1, + sym_identifier, + ACTIONS(1844), 1, + anon_sym_LPAREN, + ACTIONS(1850), 1, + anon_sym_LBRACK, + ACTIONS(1852), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1593), 1, + sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + STATE(2444), 1, + sym_pattern, + STATE(2688), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1966), 12, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(1848), 2, + anon_sym_match, + anon_sym_type, + STATE(1594), 2, + sym_attribute, + sym_subscript, + STATE(1631), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(1846), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [57786] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1936), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74860,7 +75373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1968), 32, + ACTIONS(1938), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74893,11 +75406,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57844] = 3, + [57839] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1942), 12, + ACTIONS(2014), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -74910,7 +75423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1944), 32, + ACTIONS(2016), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74943,13 +75456,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57897] = 3, + [57892] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1946), 12, - sym__dedent, + ACTIONS(1774), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -74960,7 +75473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1948), 32, + ACTIONS(1772), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -74993,11 +75506,11 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [57950] = 3, + [57945] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1954), 12, + ACTIONS(2022), 12, sym__dedent, sym_string_start, anon_sym_LPAREN, @@ -75010,7 +75523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1956), 32, + ACTIONS(2024), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75043,13 +75556,13 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58003] = 3, + [57998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1970), 12, - sym__dedent, + ACTIONS(2044), 12, sym_string_start, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_STAR, anon_sym_LBRACK, @@ -75060,7 +75573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(1972), 32, + ACTIONS(2042), 32, anon_sym_import, anon_sym_from, anon_sym_print, @@ -75093,60 +75606,60 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [58056] = 21, - ACTIONS(299), 1, + [58051] = 21, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(1894), 1, + ACTIONS(1842), 1, sym_identifier, - ACTIONS(1896), 1, + ACTIONS(1844), 1, anon_sym_LPAREN, - ACTIONS(1902), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1904), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, + STATE(1593), 1, sym_list_splat_pattern, - STATE(2453), 1, + STATE(1616), 1, + sym_primary_expression, + STATE(2457), 1, sym_pattern, - STATE(2703), 1, + STATE(2714), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(1900), 2, + ACTIONS(1848), 2, anon_sym_match, anon_sym_type, - STATE(1611), 2, + STATE(1594), 2, sym_attribute, sym_subscript, - STATE(1626), 2, + STATE(1631), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1898), 3, + ACTIONS(1846), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75161,60 +75674,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58145] = 21, - ACTIONS(299), 1, + [58140] = 21, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(1894), 1, + ACTIONS(1842), 1, sym_identifier, - ACTIONS(1896), 1, + ACTIONS(1844), 1, anon_sym_LPAREN, - ACTIONS(1902), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1904), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, + STATE(1593), 1, sym_list_splat_pattern, - STATE(2454), 1, + STATE(1616), 1, + sym_primary_expression, + STATE(2458), 1, sym_pattern, - STATE(2705), 1, + STATE(2716), 1, sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(1900), 2, + ACTIONS(1848), 2, anon_sym_match, anon_sym_type, - STATE(1611), 2, + STATE(1594), 2, sym_attribute, sym_subscript, - STATE(1626), 2, + STATE(1631), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1898), 3, + ACTIONS(1846), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75229,60 +75742,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58234] = 21, - ACTIONS(299), 1, + [58229] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1798), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1796), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58282] = 21, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1798), 1, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(1842), 1, sym_identifier, - ACTIONS(1800), 1, + ACTIONS(1844), 1, anon_sym_LPAREN, - ACTIONS(1804), 1, - anon_sym_STAR, - ACTIONS(1810), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(1852), 1, anon_sym_await, - ACTIONS(2016), 1, - anon_sym_RPAREN, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1581), 1, - sym_primary_expression, - STATE(1589), 1, + STATE(1593), 1, sym_list_splat_pattern, - STATE(2542), 1, + STATE(1616), 1, + sym_primary_expression, + STATE(2486), 1, sym_pattern, + STATE(2777), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(1808), 2, + ACTIONS(1848), 2, anon_sym_match, anon_sym_type, - STATE(1595), 2, + STATE(1594), 2, sym_attribute, sym_subscript, - STATE(2546), 2, + STATE(1631), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1806), 3, + ACTIONS(1846), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75297,58 +75860,60 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58323] = 20, - ACTIONS(299), 1, + [58371] = 21, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1083), 1, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(1842), 1, sym_identifier, - ACTIONS(1085), 1, + ACTIONS(1844), 1, anon_sym_LPAREN, - ACTIONS(1093), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(1095), 1, + ACTIONS(1852), 1, anon_sym_await, - ACTIONS(2054), 1, - anon_sym_STAR, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1475), 1, + STATE(1593), 1, sym_list_splat_pattern, - STATE(1618), 1, + STATE(1616), 1, sym_primary_expression, - STATE(1636), 1, + STATE(2487), 1, sym_pattern, + STATE(2781), 1, + sym_pattern_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(1091), 2, + ACTIONS(1848), 2, anon_sym_match, anon_sym_type, - STATE(1476), 2, + STATE(1594), 2, sym_attribute, sym_subscript, - STATE(1626), 2, + STATE(1631), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1089), 3, + ACTIONS(1846), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75363,58 +75928,108 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58409] = 20, - ACTIONS(17), 1, + [58460] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1481), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(299), 1, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_TILDE, + sym_ellipsis, + sym_float, + ACTIONS(1483), 32, + anon_sym_import, + anon_sym_from, + anon_sym_print, + anon_sym_assert, + anon_sym_return, + anon_sym_del, + anon_sym_raise, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_try, + anon_sym_with, + anon_sym_def, + anon_sym_global, + anon_sym_nonlocal, + anon_sym_exec, + anon_sym_type, + anon_sym_class, + anon_sym_not, + anon_sym_lambda, + anon_sym_yield, + sym_integer, + sym_identifier, + anon_sym_await, + sym_true, + sym_false, + sym_none, + [58513] = 20, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(955), 1, + ACTIONS(1730), 1, sym_identifier, - ACTIONS(959), 1, + ACTIONS(1732), 1, anon_sym_LPAREN, - ACTIONS(967), 1, + ACTIONS(1734), 1, + anon_sym_STAR, + ACTIONS(1740), 1, anon_sym_LBRACK, - ACTIONS(969), 1, + ACTIONS(1742), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1345), 1, + STATE(1577), 1, sym_list_splat_pattern, - STATE(1593), 1, - sym_pattern, - STATE(1598), 1, + STATE(1626), 1, sym_primary_expression, + STATE(2072), 1, + sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(965), 2, + ACTIONS(1738), 2, anon_sym_match, anon_sym_type, - STATE(1346), 2, + STATE(1572), 2, sym_attribute, sym_subscript, - STATE(1597), 2, + STATE(2035), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(963), 3, + ACTIONS(1736), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75429,58 +76044,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58495] = 20, - ACTIONS(299), 1, + [58599] = 20, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(1894), 1, + ACTIONS(1041), 1, sym_identifier, - ACTIONS(1896), 1, + ACTIONS(1043), 1, anon_sym_LPAREN, - ACTIONS(1902), 1, + ACTIONS(1051), 1, anon_sym_LBRACK, - ACTIONS(1904), 1, + ACTIONS(1053), 1, anon_sym_await, - STATE(984), 1, + ACTIONS(2076), 1, + anon_sym_STAR, + STATE(990), 1, sym_string, - STATE(1588), 1, - sym_primary_expression, - STATE(1604), 1, + STATE(1467), 1, sym_list_splat_pattern, - STATE(1636), 1, + STATE(1620), 1, + sym_primary_expression, + STATE(1644), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(1900), 2, + ACTIONS(1049), 2, anon_sym_match, anon_sym_type, - STATE(1611), 2, + STATE(1476), 2, sym_attribute, sym_subscript, - STATE(1626), 2, + STATE(1631), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1898), 3, + ACTIONS(1047), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75495,58 +76110,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58581] = 20, - ACTIONS(299), 1, + [58685] = 20, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1736), 1, + ACTIONS(1816), 1, sym_identifier, - ACTIONS(1738), 1, + ACTIONS(1818), 1, anon_sym_LPAREN, - ACTIONS(1740), 1, + ACTIONS(1822), 1, anon_sym_STAR, - ACTIONS(1746), 1, + ACTIONS(1828), 1, anon_sym_LBRACK, - ACTIONS(1748), 1, + ACTIONS(1830), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1569), 1, + STATE(1600), 1, sym_list_splat_pattern, - STATE(1608), 1, + STATE(1619), 1, sym_primary_expression, - STATE(2053), 1, + STATE(2574), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(1744), 2, + ACTIONS(1826), 2, anon_sym_match, anon_sym_type, - STATE(1567), 2, + STATE(1601), 2, sym_attribute, sym_subscript, - STATE(2068), 2, + STATE(2493), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1742), 3, + ACTIONS(1824), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75561,58 +76176,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58667] = 20, - ACTIONS(299), 1, + [58771] = 20, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2004), 1, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(1842), 1, sym_identifier, - ACTIONS(2006), 1, + ACTIONS(1844), 1, anon_sym_LPAREN, - ACTIONS(2008), 1, - anon_sym_STAR, - ACTIONS(2014), 1, + ACTIONS(1850), 1, anon_sym_LBRACK, - ACTIONS(2018), 1, + ACTIONS(1852), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1586), 1, + STATE(1593), 1, sym_list_splat_pattern, - STATE(1607), 1, + STATE(1616), 1, sym_primary_expression, - STATE(2565), 1, + STATE(1644), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2012), 2, + ACTIONS(1848), 2, anon_sym_match, anon_sym_type, - STATE(1587), 2, + STATE(1594), 2, sym_attribute, sym_subscript, - STATE(2487), 2, + STATE(1631), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2010), 3, + ACTIONS(1846), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75627,58 +76242,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58753] = 20, - ACTIONS(299), 1, + [58857] = 20, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1798), 1, + ACTIONS(2060), 1, sym_identifier, - ACTIONS(1800), 1, + ACTIONS(2062), 1, anon_sym_LPAREN, - ACTIONS(1804), 1, + ACTIONS(2064), 1, anon_sym_STAR, - ACTIONS(1810), 1, + ACTIONS(2070), 1, anon_sym_LBRACK, - ACTIONS(1812), 1, + ACTIONS(2072), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1581), 1, - sym_primary_expression, - STATE(1589), 1, + STATE(1592), 1, sym_list_splat_pattern, - STATE(2542), 1, + STATE(1625), 1, + sym_primary_expression, + STATE(2575), 1, sym_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(1808), 2, + ACTIONS(2068), 2, anon_sym_match, anon_sym_type, - STATE(1595), 2, + STATE(1599), 2, sym_attribute, sym_subscript, - STATE(2546), 2, + STATE(2564), 2, sym_tuple_pattern, sym_list_pattern, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(1806), 3, + ACTIONS(2066), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75693,56 +76308,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58839] = 19, - ACTIONS(299), 1, + [58943] = 20, + ACTIONS(17), 1, + anon_sym_STAR, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(955), 1, + sym_identifier, + ACTIONS(959), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(967), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2056), 1, - sym_identifier, - ACTIONS(2064), 1, + ACTIONS(969), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1376), 1, sym_list_splat_pattern, - STATE(1581), 1, + STATE(1591), 1, + sym_pattern, + STATE(1612), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2058), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2062), 2, + ACTIONS(965), 2, anon_sym_match, anon_sym_type, - STATE(1579), 2, + STATE(1377), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, + STATE(1622), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2060), 3, + ACTIONS(963), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75757,56 +76374,56 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [58922] = 19, - ACTIONS(299), 1, + [59029] = 19, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(2066), 1, + ACTIONS(2078), 1, sym_identifier, - ACTIONS(2072), 1, + ACTIONS(2086), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1588), 1, + STATE(1619), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2058), 2, + ACTIONS(2080), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2070), 2, + ACTIONS(2084), 2, anon_sym_match, anon_sym_type, - STATE(1599), 2, + STATE(1588), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2068), 3, + ACTIONS(2082), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -75821,120 +76438,58 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59005] = 21, - ACTIONS(2076), 1, - anon_sym_DOT, - ACTIONS(2078), 1, + [59112] = 19, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(2086), 1, - anon_sym_STAR_STAR, - ACTIONS(2088), 1, - anon_sym_EQ, - ACTIONS(2090), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(2096), 1, - anon_sym_PIPE, - ACTIONS(2098), 1, - anon_sym_not, - ACTIONS(2100), 1, - anon_sym_AMP, - ACTIONS(2102), 1, - anon_sym_CARET, - ACTIONS(2104), 1, - anon_sym_is, - STATE(1545), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2080), 2, + ACTIONS(1423), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2082), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2094), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2106), 2, - anon_sym_LT, - anon_sym_GT, - STATE(873), 2, - sym__not_in, - sym__is_not, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2092), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2084), 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(2074), 9, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [59091] = 17, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(2088), 1, + sym_identifier, + ACTIONS(2094), 1, anon_sym_await, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1269), 1, - anon_sym_STAR, - ACTIONS(2108), 1, - anon_sym_not, - STATE(969), 1, + STATE(990), 1, sym_string, - STATE(1009), 1, - sym_primary_expression, - STATE(1283), 1, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(2080), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2092), 2, + anon_sym_match, + anon_sym_type, + STATE(1613), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(2090), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1280), 16, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -75947,7 +76502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59169] = 17, + [59195] = 17, ACTIONS(735), 1, anon_sym_LPAREN, ACTIONS(743), 1, @@ -75958,15 +76513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(753), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_STAR, - ACTIONS(2108), 1, + ACTIONS(2096), 1, anon_sym_not, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(993), 1, + STATE(998), 1, sym_primary_expression, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -75991,7 +76546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76008,10 +76563,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59247] = 17, - ACTIONS(299), 1, + [59273] = 17, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, @@ -76019,26 +76574,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(662), 1, anon_sym_await, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(2108), 1, + ACTIONS(2096), 1, anon_sym_not, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1125), 1, + STATE(1051), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -76046,13 +76601,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(304), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76069,7 +76624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59325] = 17, + [59351] = 17, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, @@ -76080,15 +76635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(641), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1309), 1, anon_sym_STAR, - ACTIONS(2108), 1, + ACTIONS(2096), 1, anon_sym_not, - STATE(954), 1, + STATE(960), 1, sym_string, - STATE(973), 1, + STATE(979), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1128), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -76113,7 +76668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1099), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76130,51 +76685,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59403] = 17, - ACTIONS(713), 1, + [59429] = 17, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1243), 1, anon_sym_STAR, - ACTIONS(2108), 1, + ACTIONS(2096), 1, anon_sym_not, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1075), 1, + STATE(1065), 1, sym_primary_expression, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(727), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76191,51 +76746,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59481] = 17, - ACTIONS(779), 1, + [59507] = 17, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1243), 1, + ACTIONS(977), 1, anon_sym_STAR, - ACTIONS(2108), 1, + ACTIONS(2096), 1, anon_sym_not, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1089), 1, + STATE(985), 1, sym_primary_expression, - STATE(1320), 1, + STATE(1232), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1331), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76252,7 +76807,72 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59559] = 17, + [59585] = 21, + ACTIONS(2100), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_LPAREN, + ACTIONS(2110), 1, + anon_sym_STAR_STAR, + ACTIONS(2112), 1, + anon_sym_EQ, + ACTIONS(2114), 1, + anon_sym_LBRACK, + ACTIONS(2120), 1, + anon_sym_PIPE, + ACTIONS(2122), 1, + anon_sym_not, + ACTIONS(2124), 1, + anon_sym_AMP, + ACTIONS(2126), 1, + anon_sym_CARET, + ACTIONS(2128), 1, + anon_sym_is, + STATE(1557), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2104), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2106), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2118), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2130), 2, + anon_sym_LT, + anon_sym_GT, + STATE(867), 2, + sym__not_in, + sym__is_not, + STATE(1092), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2116), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2108), 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(2098), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [59671] = 17, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -76263,15 +76883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(775), 1, sym_string_start, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - ACTIONS(2108), 1, + ACTIONS(2096), 1, anon_sym_not, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1212), 1, + STATE(1244), 1, sym_primary_expression, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -76296,7 +76916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76313,51 +76933,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59637] = 17, - ACTIONS(666), 1, + [59749] = 17, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(977), 1, + ACTIONS(1321), 1, anon_sym_STAR, - ACTIONS(2108), 1, + ACTIONS(2096), 1, anon_sym_not, - STATE(975), 1, + STATE(1026), 1, sym_string, - STATE(1030), 1, + STATE(1104), 1, sym_primary_expression, - STATE(1197), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1279), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76374,49 +76994,51 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59715] = 16, - ACTIONS(779), 1, + [59827] = 17, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1243), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(985), 1, + ACTIONS(2096), 1, + anon_sym_not, + STATE(968), 1, sym_string, - STATE(1089), 1, + STATE(1036), 1, sym_primary_expression, - STATE(1320), 1, + STATE(1165), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1331), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76433,49 +77055,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59790] = 16, - ACTIONS(735), 1, + [59905] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(958), 1, + STATE(1037), 1, sym_string, - STATE(1021), 1, + STATE(1131), 1, sym_primary_expression, - STATE(1259), 1, + STATE(1387), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1180), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76492,49 +77114,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59865] = 16, - ACTIONS(666), 1, + [59980] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(977), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(975), 1, + STATE(1111), 1, sym_string, - STATE(1030), 1, + STATE(1245), 1, sym_primary_expression, - STATE(1197), 1, + STATE(1446), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1279), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76551,71 +77173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [59940] = 21, - ACTIONS(2088), 1, - anon_sym_as, - ACTIONS(2098), 1, - anon_sym_not, - ACTIONS(2110), 1, - anon_sym_DOT, - ACTIONS(2112), 1, - anon_sym_LPAREN, - ACTIONS(2120), 1, - anon_sym_STAR_STAR, - ACTIONS(2122), 1, - anon_sym_LBRACK, - ACTIONS(2128), 1, - anon_sym_PIPE, - ACTIONS(2130), 1, - anon_sym_AMP, - ACTIONS(2132), 1, - anon_sym_CARET, - ACTIONS(2134), 1, - anon_sym_is, - STATE(1552), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2114), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2116), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2126), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2136), 2, - anon_sym_LT, - anon_sym_GT, - STATE(914), 2, - sym__not_in, - sym__is_not, - STATE(1281), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2124), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2118), 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(2074), 8, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [60025] = 16, + [60055] = 16, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -76626,13 +77184,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(775), 1, sym_string_start, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1210), 1, + STATE(1246), 1, sym_primary_expression, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -76657,7 +77215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76674,49 +77232,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60100] = 16, - ACTIONS(666), 1, + [60130] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(977), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(975), 1, + STATE(1111), 1, sym_string, - STATE(1015), 1, + STATE(1247), 1, sym_primary_expression, - STATE(1197), 1, + STATE(1446), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1279), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76733,55 +77291,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60175] = 18, - ACTIONS(299), 1, + [60205] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2138), 1, - sym_identifier, - ACTIONS(2144), 1, + ACTIONS(641), 1, anon_sym_await, - STATE(984), 1, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(960), 1, sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(1581), 1, + STATE(979), 1, sym_primary_expression, + STATE(1128), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2142), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - STATE(1349), 2, - sym_attribute, - sym_subscript, - ACTIONS(304), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2140), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -76794,7 +77350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60254] = 16, + [60280] = 16, ACTIONS(735), 1, anon_sym_LPAREN, ACTIONS(743), 1, @@ -76805,13 +77361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(753), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(993), 1, + STATE(996), 1, sym_primary_expression, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -76836,7 +77392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76853,7 +77409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60329] = 16, + [60355] = 16, ACTIONS(666), 1, anon_sym_LPAREN, ACTIONS(674), 1, @@ -76866,11 +77422,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(977), 1, anon_sym_STAR, - STATE(975), 1, + STATE(984), 1, sym_string, - STATE(1005), 1, + STATE(1011), 1, sym_primary_expression, - STATE(1197), 1, + STATE(1232), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -76895,7 +77451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1279), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -76912,53 +77468,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60404] = 16, - ACTIONS(67), 1, + [60430] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(629), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(641), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(954), 1, + ACTIONS(2132), 1, + sym_identifier, + ACTIONS(2138), 1, + anon_sym_await, + STATE(990), 1, sym_string, - STATE(959), 1, - sym_primary_expression, - STATE(1047), 1, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(2136), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1433), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(2134), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1099), 16, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -76971,49 +77529,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60479] = 16, - ACTIONS(666), 1, + [60509] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(977), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(975), 1, + STATE(1026), 1, sym_string, - STATE(979), 1, + STATE(1098), 1, sym_primary_expression, - STATE(1197), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1279), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77030,49 +77588,110 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60554] = 16, - ACTIONS(666), 1, + [60584] = 18, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(2140), 1, + sym_identifier, + ACTIONS(2146), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1402), 1, + sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(2144), 2, + anon_sym_match, + anon_sym_type, + STATE(1590), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2142), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [60663] = 16, + ACTIONS(757), 1, + anon_sym_LPAREN, + ACTIONS(765), 1, + anon_sym_LBRACK, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(977), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(975), 1, + STATE(1111), 1, sym_string, - STATE(1003), 1, + STATE(1248), 1, sym_primary_expression, - STATE(1197), 1, + STATE(1446), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1279), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77089,7 +77708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60629] = 16, + [60738] = 16, ACTIONS(757), 1, anon_sym_LPAREN, ACTIONS(765), 1, @@ -77100,13 +77719,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(775), 1, sym_string_start, - ACTIONS(1307), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(1081), 1, + STATE(1111), 1, sym_string, - STATE(1214), 1, + STATE(1249), 1, sym_primary_expression, - STATE(1444), 1, + STATE(1446), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -77131,7 +77750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1441), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77148,49 +77767,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60704] = 16, - ACTIONS(67), 1, + [60813] = 16, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(629), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(954), 1, + STATE(990), 1, sym_string, - STATE(956), 1, + STATE(1049), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1402), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(304), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1099), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77207,53 +77826,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60779] = 18, - ACTIONS(299), 1, + [60888] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(2146), 1, + ACTIONS(2148), 1, sym_identifier, - ACTIONS(2152), 1, + ACTIONS(2154), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1588), 1, + STATE(1612), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2150), 2, + ACTIONS(2152), 2, anon_sym_match, anon_sym_type, - STATE(1378), 2, + STATE(648), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2148), 3, + ACTIONS(2150), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77268,49 +77887,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60858] = 16, - ACTIONS(67), 1, + [60967] = 16, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(629), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(954), 1, + STATE(990), 1, sym_string, - STATE(965), 1, + STATE(1055), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1402), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(304), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1099), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77327,7 +77946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [60933] = 16, + [61042] = 16, ACTIONS(666), 1, anon_sym_LPAREN, ACTIONS(674), 1, @@ -77340,11 +77959,11 @@ static const uint16_t ts_small_parse_table[] = { sym_string_start, ACTIONS(977), 1, anon_sym_STAR, - STATE(975), 1, + STATE(984), 1, sym_string, - STATE(1010), 1, + STATE(1006), 1, sym_primary_expression, - STATE(1197), 1, + STATE(1232), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -77369,7 +77988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1279), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77386,49 +78005,236 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61008] = 16, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, + [61117] = 21, + ACTIONS(2112), 1, + anon_sym_as, + ACTIONS(2122), 1, + anon_sym_not, + ACTIONS(2156), 1, + anon_sym_DOT, + ACTIONS(2158), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(2166), 1, + anon_sym_STAR_STAR, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(2174), 1, + anon_sym_PIPE, + ACTIONS(2176), 1, + anon_sym_AMP, + ACTIONS(2178), 1, + anon_sym_CARET, + ACTIONS(2180), 1, + anon_sym_is, + STATE(1561), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2162), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2172), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2182), 2, + anon_sym_LT, + anon_sym_GT, + STATE(921), 2, + sym__not_in, + sym__is_not, + STATE(1175), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2170), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2164), 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(2098), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [61202] = 21, + ACTIONS(2112), 1, + anon_sym_as, + ACTIONS(2122), 1, + anon_sym_not, + ACTIONS(2184), 1, + anon_sym_DOT, + ACTIONS(2186), 1, + anon_sym_LPAREN, + ACTIONS(2194), 1, + anon_sym_STAR_STAR, + ACTIONS(2196), 1, + anon_sym_LBRACK, + ACTIONS(2202), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, + anon_sym_AMP, + ACTIONS(2206), 1, + anon_sym_CARET, + ACTIONS(2208), 1, + anon_sym_is, + STATE(1569), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2188), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2190), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2200), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2210), 2, + anon_sym_LT, + anon_sym_GT, + STATE(915), 2, + sym__not_in, + sym__is_not, + STATE(1279), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2198), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2192), 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(2098), 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, + [61287] = 16, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(1421), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, anon_sym_STAR, STATE(984), 1, sym_string, - STATE(1129), 1, + STATE(985), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1232), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(670), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(664), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1162), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [61362] = 16, + ACTIONS(666), 1, + anon_sym_LPAREN, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, + anon_sym_await, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, + anon_sym_STAR, + STATE(984), 1, + sym_string, + STATE(1013), 1, + sym_primary_expression, + STATE(1232), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(672), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(676), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77445,49 +78251,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61083] = 16, - ACTIONS(779), 1, + [61437] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1243), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(985), 1, + STATE(984), 1, sym_string, - STATE(1051), 1, + STATE(1014), 1, sym_primary_expression, - STATE(1320), 1, + STATE(1232), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1331), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77504,7 +78310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61158] = 16, + [61512] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, @@ -77515,13 +78321,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(641), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(954), 1, + STATE(960), 1, sym_string, - STATE(973), 1, + STATE(977), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1128), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -77546,7 +78352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1099), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77563,53 +78369,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61233] = 18, - ACTIONS(299), 1, + [61587] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(2154), 1, + ACTIONS(2212), 1, sym_identifier, - ACTIONS(2160), 1, + ACTIONS(2218), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1606), 1, + STATE(1618), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2158), 2, + ACTIONS(2216), 2, anon_sym_match, anon_sym_type, - STATE(1449), 2, + STATE(1068), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2156), 3, + ACTIONS(2214), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77624,53 +78430,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61312] = 18, - ACTIONS(299), 1, + [61666] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(2162), 1, - sym_identifier, - ACTIONS(2168), 1, + ACTIONS(2138), 1, anon_sym_await, - STATE(984), 1, + ACTIONS(2220), 1, + sym_identifier, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1588), 1, + STATE(1625), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2166), 2, + ACTIONS(2224), 2, anon_sym_match, anon_sym_type, - STATE(1610), 2, + STATE(1255), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2164), 3, + ACTIONS(2222), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -77685,49 +78491,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61391] = 16, - ACTIONS(713), 1, + [61745] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1037), 1, sym_string, - STATE(1070), 1, + STATE(1043), 1, sym_primary_expression, - STATE(1301), 1, + STATE(1387), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(727), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77744,110 +78550,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61466] = 18, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, + [61820] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2170), 1, - sym_identifier, - ACTIONS(2176), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(1590), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(2174), 2, - anon_sym_match, - anon_sym_type, - STATE(1039), 2, - sym_attribute, - sym_subscript, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2172), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [61545] = 16, - ACTIONS(299), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(1421), 1, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(984), 1, + STATE(1111), 1, sym_string, - STATE(1130), 1, + STATE(1236), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1446), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(771), 2, + sym_ellipsis, + sym_float, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(767), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77864,49 +78609,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61620] = 16, - ACTIONS(666), 1, + [61895] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(977), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(975), 1, + STATE(1037), 1, sym_string, - STATE(1011), 1, + STATE(1057), 1, sym_primary_expression, - STATE(1197), 1, + STATE(1387), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1279), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -77923,53 +78668,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61695] = 16, - ACTIONS(299), 1, + [61970] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(984), 1, + ACTIONS(2226), 1, + sym_identifier, + ACTIONS(2232), 1, + anon_sym_await, + STATE(990), 1, sym_string, - STATE(1115), 1, - sym_primary_expression, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1621), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(2230), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, + STATE(1231), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(2228), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 16, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -77982,49 +78729,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61770] = 16, - ACTIONS(735), 1, + [62049] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(958), 1, + STATE(1037), 1, sym_string, - STATE(1026), 1, + STATE(1065), 1, sym_primary_expression, - STATE(1259), 1, + STATE(1387), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1180), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78041,49 +78788,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61845] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [62124] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(954), 1, + STATE(1037), 1, sym_string, - STATE(957), 1, + STATE(1067), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1387), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(635), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(795), 2, + sym_ellipsis, + sym_float, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(791), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1099), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78100,49 +78847,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61920] = 16, - ACTIONS(757), 1, + [62199] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1307), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(1081), 1, + STATE(1037), 1, sym_string, - STATE(1132), 1, + STATE(1069), 1, sym_primary_expression, - STATE(1444), 1, + STATE(1387), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1441), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78159,49 +78906,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [61995] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [62274] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(954), 1, + STATE(1037), 1, sym_string, - STATE(962), 1, + STATE(1072), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1387), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(635), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(795), 2, + sym_ellipsis, + sym_float, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(791), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1099), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78218,55 +78965,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62070] = 18, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, + [62349] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2160), 1, + ACTIONS(793), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(2178), 1, - sym_identifier, - STATE(984), 1, + ACTIONS(799), 1, + sym_string_start, + ACTIONS(1243), 1, + anon_sym_STAR, + STATE(1037), 1, sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(1606), 1, + STATE(1073), 1, sym_primary_expression, + STATE(1387), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(2158), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - STATE(1449), 2, - sym_attribute, - sym_subscript, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2156), 3, + ACTIONS(795), 2, + sym_ellipsis, + sym_float, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(791), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(777), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78279,49 +79024,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62149] = 16, - ACTIONS(735), 1, + [62424] = 16, + ACTIONS(779), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(789), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(793), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(797), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(799), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1243), 1, anon_sym_STAR, - STATE(958), 1, + STATE(1037), 1, sym_string, - STATE(990), 1, + STATE(1075), 1, sym_primary_expression, - STATE(1259), 1, + STATE(1387), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(785), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(795), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(783), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(791), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(777), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1180), 16, + STATE(1390), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78338,55 +79083,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62224] = 18, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, + [62499] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2152), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(2180), 1, - sym_identifier, - STATE(984), 1, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(1285), 1, + anon_sym_STAR, + STATE(971), 1, sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(1588), 1, + STATE(1003), 1, sym_primary_expression, + STATE(1228), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(2150), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - STATE(1378), 2, - sym_attribute, - sym_subscript, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2148), 3, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(733), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78399,53 +79142,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62303] = 16, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [62574] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - anon_sym_await, - ACTIONS(731), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(995), 1, + ACTIONS(2234), 1, + sym_identifier, + ACTIONS(2240), 1, + anon_sym_await, + STATE(990), 1, sym_string, - STATE(1073), 1, - sym_primary_expression, - STATE(1301), 1, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(2238), 2, + anon_sym_match, + anon_sym_type, + STATE(1326), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(2236), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -78458,55 +79203,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62378] = 18, - ACTIONS(299), 1, + [62653] = 16, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2160), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(2182), 1, - sym_identifier, - STATE(984), 1, + ACTIONS(1423), 1, + anon_sym_STAR, + STATE(990), 1, sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(1607), 1, + STATE(1050), 1, sym_primary_expression, + STATE(1402), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2186), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - STATE(1229), 2, - sym_attribute, - sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2184), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -78519,49 +79262,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62457] = 16, - ACTIONS(713), 1, + [62728] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(995), 1, + STATE(968), 1, sym_string, - STATE(1074), 1, + STATE(1030), 1, sym_primary_expression, - STATE(1301), 1, + STATE(1165), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(727), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78578,49 +79321,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62532] = 16, - ACTIONS(757), 1, + [62803] = 16, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1307), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(1081), 1, + STATE(990), 1, sym_string, - STATE(1201), 1, + STATE(1134), 1, sym_primary_expression, - STATE(1444), 1, + STATE(1402), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1441), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78637,49 +79380,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62607] = 16, - ACTIONS(713), 1, + [62878] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(995), 1, + STATE(984), 1, sym_string, - STATE(1075), 1, + STATE(1015), 1, sym_primary_expression, - STATE(1301), 1, + STATE(1232), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(727), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78696,113 +79439,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62682] = 21, - ACTIONS(2088), 1, - anon_sym_as, - ACTIONS(2098), 1, - anon_sym_not, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, - anon_sym_LBRACK, - ACTIONS(2206), 1, - anon_sym_PIPE, - ACTIONS(2208), 1, - anon_sym_AMP, - ACTIONS(2210), 1, - anon_sym_CARET, - ACTIONS(2212), 1, - anon_sym_is, - STATE(1560), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2192), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2194), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2204), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2214), 2, - anon_sym_LT, - anon_sym_GT, - STATE(861), 2, - sym__not_in, - sym__is_not, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2202), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2196), 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(2074), 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, - [62767] = 16, - ACTIONS(735), 1, + [62953] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(747), 1, - anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(753), 1, - sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(958), 1, + STATE(960), 1, sym_string, - STATE(977), 1, + STATE(982), 1, sym_primary_expression, - STATE(1259), 1, + STATE(1128), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(749), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(633), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1180), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78819,53 +79498,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62842] = 18, - ACTIONS(299), 1, + [63028] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(2176), 1, + ACTIONS(2232), 1, anon_sym_await, - ACTIONS(2216), 1, + ACTIONS(2242), 1, sym_identifier, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1590), 1, + STATE(1626), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2174), 2, + ACTIONS(2246), 2, anon_sym_match, anon_sym_type, - STATE(1039), 2, + STATE(1256), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2172), 3, + ACTIONS(2244), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -78880,49 +79559,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62921] = 16, - ACTIONS(713), 1, + [63107] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(678), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(684), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(977), 1, anon_sym_STAR, - STATE(995), 1, + STATE(984), 1, sym_string, - STATE(1076), 1, + STATE(1016), 1, sym_primary_expression, - STATE(1301), 1, + STATE(1232), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(727), 2, + ACTIONS(680), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(676), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78939,49 +79618,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [62996] = 16, - ACTIONS(67), 1, - anon_sym_LBRACE, - ACTIONS(81), 1, - sym_string_start, - ACTIONS(629), 1, + [63182] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(641), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, anon_sym_STAR, - STATE(954), 1, + STATE(984), 1, sym_string, - STATE(966), 1, + STATE(1017), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1232), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, - sym_ellipsis, - sym_float, - ACTIONS(635), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(676), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1099), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -78998,49 +79677,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63071] = 16, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, + [63257] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1421), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, + anon_sym_await, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(984), 1, + STATE(971), 1, sym_string, - STATE(1127), 1, + STATE(997), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1228), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79057,53 +79736,116 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63146] = 16, - ACTIONS(67), 1, + [63332] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(81), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(629), 1, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(637), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(641), 1, - anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(954), 1, + ACTIONS(2248), 1, + sym_identifier, + ACTIONS(2254), 1, + anon_sym_await, + STATE(990), 1, sym_string, - STATE(967), 1, - sym_primary_expression, - STATE(1047), 1, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1623), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(75), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(635), 2, + ACTIONS(2252), 2, anon_sym_match, anon_sym_type, - ACTIONS(65), 3, + STATE(1374), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(633), 3, + ACTIONS(2250), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(77), 5, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1099), 16, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_generator_expression, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [63411] = 18, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1423), 1, + anon_sym_STAR, + ACTIONS(2256), 1, + sym_identifier, + ACTIONS(2262), 1, + anon_sym_await, + STATE(990), 1, + sym_string, + STATE(1402), 1, + sym_list_splat_pattern, + STATE(1620), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(302), 2, + sym_ellipsis, + sym_float, + ACTIONS(2260), 2, + anon_sym_match, + anon_sym_type, + STATE(1482), 2, sym_attribute, sym_subscript, + ACTIONS(296), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(2258), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1419), 14, + sym_binary_operator, + sym_unary_operator, sym_call, sym_list, sym_set, @@ -79116,7 +79858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63221] = 16, + [63490] = 16, ACTIONS(67), 1, anon_sym_LBRACE, ACTIONS(81), 1, @@ -79127,13 +79869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(641), 1, anon_sym_await, - ACTIONS(1293), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(954), 1, + STATE(960), 1, sym_string, - STATE(972), 1, + STATE(983), 1, sym_primary_expression, - STATE(1047), 1, + STATE(1128), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -79158,7 +79900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1099), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79175,62 +79917,62 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63296] = 21, - ACTIONS(2088), 1, + [63565] = 21, + ACTIONS(2112), 1, anon_sym_EQ, - ACTIONS(2098), 1, + ACTIONS(2122), 1, anon_sym_not, - ACTIONS(2218), 1, + ACTIONS(2264), 1, anon_sym_DOT, - ACTIONS(2220), 1, + ACTIONS(2266), 1, anon_sym_LPAREN, - ACTIONS(2228), 1, + ACTIONS(2274), 1, anon_sym_STAR_STAR, - ACTIONS(2230), 1, + ACTIONS(2276), 1, anon_sym_LBRACK, - ACTIONS(2236), 1, + ACTIONS(2282), 1, anon_sym_PIPE, - ACTIONS(2238), 1, + ACTIONS(2284), 1, anon_sym_AMP, - ACTIONS(2240), 1, + ACTIONS(2286), 1, anon_sym_CARET, - ACTIONS(2242), 1, + ACTIONS(2288), 1, anon_sym_is, - STATE(1558), 1, + STATE(1568), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2222), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2224), 2, + ACTIONS(2270), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2234), 2, + ACTIONS(2280), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2244), 2, + ACTIONS(2290), 2, anon_sym_LT, anon_sym_GT, - STATE(856), 2, + STATE(881), 2, sym__not_in, sym__is_not, - STATE(1144), 2, + STATE(1173), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2278), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2226), 6, + ACTIONS(2272), 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(2074), 8, + ACTIONS(2098), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -79239,49 +79981,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [63381] = 16, - ACTIONS(713), 1, + [63650] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(995), 1, + STATE(1111), 1, sym_string, - STATE(1077), 1, + STATE(1244), 1, sym_primary_expression, - STATE(1301), 1, + STATE(1446), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(727), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79298,116 +80040,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63456] = 18, - ACTIONS(299), 1, + [63725] = 16, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2246), 1, - sym_identifier, - ACTIONS(2252), 1, + ACTIONS(662), 1, anon_sym_await, - STATE(984), 1, + ACTIONS(1423), 1, + anon_sym_STAR, + STATE(990), 1, sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(1598), 1, + STATE(1051), 1, sym_primary_expression, + STATE(1402), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2250), 2, + ACTIONS(656), 2, anon_sym_match, anon_sym_type, - STATE(651), 2, - sym_attribute, - sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2248), 3, + ACTIONS(654), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [63535] = 18, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, - anon_sym_LPAREN, - ACTIONS(658), 1, - anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2254), 1, - sym_identifier, - ACTIONS(2260), 1, - anon_sym_await, - STATE(984), 1, - sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(1608), 1, - sym_primary_expression, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(2258), 2, - anon_sym_match, - anon_sym_type, - STATE(1230), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2256), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(312), 4, - sym_integer, - sym_true, - sym_false, - sym_none, - STATE(1377), 14, - sym_binary_operator, - sym_unary_operator, sym_call, sym_list, sym_set, @@ -79420,10 +80099,10 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63614] = 16, - ACTIONS(299), 1, + [63800] = 16, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, @@ -79431,24 +80110,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(662), 1, anon_sym_await, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1123), 1, + STATE(1056), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, ACTIONS(656), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, @@ -79456,72 +80135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, - sym_integer, - sym_identifier, - sym_true, - sym_false, - sym_none, - STATE(1377), 16, - sym_binary_operator, - sym_unary_operator, - sym_attribute, - sym_subscript, - sym_call, - sym_list, - sym_set, - sym_tuple, - sym_dictionary, - sym_list_comprehension, - sym_dictionary_comprehension, - sym_set_comprehension, - sym_generator_expression, - sym_parenthesized_expression, - sym_concatenated_string, - sym_await, - [63689] = 16, - ACTIONS(757), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, - anon_sym_await, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1307), 1, - anon_sym_STAR, - STATE(1081), 1, - sym_string, - STATE(1284), 1, - sym_primary_expression, - STATE(1444), 1, - sym_list_splat_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, - sym_ellipsis, - sym_float, - ACTIONS(761), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(304), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1441), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79538,49 +80158,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63764] = 16, - ACTIONS(713), 1, + [63875] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(725), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(731), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(995), 1, + STATE(971), 1, sym_string, - STATE(1078), 1, + STATE(998), 1, sym_primary_expression, - STATE(1301), 1, + STATE(1228), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(727), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79597,53 +80217,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63839] = 18, - ACTIONS(299), 1, + [63950] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(2262), 1, - sym_identifier, - ACTIONS(2268), 1, + ACTIONS(2218), 1, anon_sym_await, - STATE(984), 1, + ACTIONS(2292), 1, + sym_identifier, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, STATE(1618), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2266), 2, + ACTIONS(2216), 2, anon_sym_match, anon_sym_type, - STATE(1471), 2, + STATE(1068), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2264), 3, + ACTIONS(2214), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -79658,55 +80278,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63918] = 18, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, + [64029] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2270), 1, - sym_identifier, - ACTIONS(2276), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, anon_sym_await, - STATE(984), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1259), 1, + anon_sym_STAR, + STATE(968), 1, sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(1581), 1, + STATE(1034), 1, sym_primary_expression, + STATE(1165), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(2274), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - STATE(1580), 2, - sym_attribute, - sym_subscript, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2272), 3, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(701), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(689), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -79719,49 +80337,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [63997] = 16, - ACTIONS(713), 1, + [64104] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(721), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(725), 1, - anon_sym_LBRACE, - ACTIONS(729), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(1303), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(995), 1, + STATE(960), 1, sym_string, - STATE(1079), 1, + STATE(965), 1, sym_primary_expression, - STATE(1301), 1, + STATE(1128), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(633), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79778,53 +80396,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64072] = 16, - ACTIONS(713), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_LBRACK, - ACTIONS(725), 1, + [64179] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(729), 1, - anon_sym_await, - ACTIONS(731), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1303), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(995), 1, + ACTIONS(2240), 1, + anon_sym_await, + ACTIONS(2294), 1, + sym_identifier, + STATE(990), 1, sym_string, - STATE(1080), 1, - sym_primary_expression, - STATE(1301), 1, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1616), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(719), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(727), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(717), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(723), 3, + ACTIONS(2238), 2, + anon_sym_match, + anon_sym_type, + STATE(1326), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(711), 5, + ACTIONS(2236), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1381), 16, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -79837,7 +80457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64147] = 16, + [64258] = 16, ACTIONS(691), 1, anon_sym_LPAREN, ACTIONS(699), 1, @@ -79848,13 +80468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(709), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(999), 1, + STATE(1035), 1, sym_primary_expression, - STATE(1283), 1, + STATE(1165), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -79879,7 +80499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1280), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79896,7 +80516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64222] = 16, + [64333] = 16, ACTIONS(691), 1, anon_sym_LPAREN, ACTIONS(699), 1, @@ -79907,13 +80527,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(709), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1001), 1, + STATE(1036), 1, sym_primary_expression, - STATE(1283), 1, + STATE(1165), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -79938,7 +80558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1280), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -79955,49 +80575,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64297] = 16, - ACTIONS(691), 1, + [64408] = 16, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(969), 1, + STATE(990), 1, sym_string, - STATE(1009), 1, + STATE(1052), 1, sym_primary_expression, - STATE(1283), 1, + STATE(1402), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1280), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80014,53 +80634,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64372] = 16, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [64483] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(707), 1, - anon_sym_await, - ACTIONS(709), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2138), 1, + anon_sym_await, + ACTIONS(2296), 1, + sym_identifier, + STATE(990), 1, sym_string, - STATE(1016), 1, - sym_primary_expression, - STATE(1283), 1, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1624), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(2136), 2, + anon_sym_match, + anon_sym_type, + STATE(1433), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(2134), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1280), 16, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80073,53 +80695,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64447] = 18, - ACTIONS(299), 1, + [64562] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(2260), 1, - anon_sym_await, - ACTIONS(2278), 1, + ACTIONS(2298), 1, sym_identifier, - STATE(984), 1, + ACTIONS(2304), 1, + anon_sym_await, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1600), 1, + STATE(1619), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2282), 2, + ACTIONS(2302), 2, anon_sym_match, anon_sym_type, - STATE(1196), 2, + STATE(1583), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2280), 3, + ACTIONS(2300), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -80134,53 +80756,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64526] = 16, - ACTIONS(691), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_LBRACK, - ACTIONS(703), 1, + [64641] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(707), 1, - anon_sym_await, - ACTIONS(709), 1, + ACTIONS(308), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(648), 1, + anon_sym_LPAREN, + ACTIONS(658), 1, + anon_sym_LBRACK, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(969), 1, + ACTIONS(2154), 1, + anon_sym_await, + ACTIONS(2306), 1, + sym_identifier, + STATE(990), 1, sym_string, - STATE(997), 1, - sym_primary_expression, - STATE(1283), 1, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1612), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(2152), 2, + anon_sym_match, + anon_sym_type, + STATE(648), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(2150), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1280), 16, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80193,49 +80817,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64601] = 16, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, + [64720] = 16, + ACTIONS(666), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(674), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(678), 1, + anon_sym_LBRACE, + ACTIONS(682), 1, anon_sym_await, - ACTIONS(1421), 1, + ACTIONS(684), 1, + sym_string_start, + ACTIONS(977), 1, anon_sym_STAR, STATE(984), 1, sym_string, - STATE(1124), 1, + STATE(1010), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1232), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(656), 2, + ACTIONS(672), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(680), 2, + sym_ellipsis, + sym_float, + ACTIONS(670), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(676), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(664), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 16, + STATE(1162), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80252,7 +80876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64676] = 16, + [64795] = 16, ACTIONS(691), 1, anon_sym_LPAREN, ACTIONS(699), 1, @@ -80263,13 +80887,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(709), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1023), 1, + STATE(1012), 1, sym_primary_expression, - STATE(1283), 1, + STATE(1165), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80294,7 +80918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1280), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80311,7 +80935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64751] = 16, + [64870] = 16, ACTIONS(735), 1, anon_sym_LPAREN, ACTIONS(743), 1, @@ -80322,13 +80946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(753), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(1028), 1, + STATE(999), 1, sym_primary_expression, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80353,7 +80977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80370,7 +80994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64826] = 16, + [64945] = 16, ACTIONS(691), 1, anon_sym_LPAREN, ACTIONS(699), 1, @@ -80381,13 +81005,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(709), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(1024), 1, + STATE(1009), 1, sym_primary_expression, - STATE(1283), 1, + STATE(1165), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80412,7 +81036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1280), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80429,49 +81053,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64901] = 16, - ACTIONS(691), 1, + [65020] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(703), 1, - anon_sym_LBRACE, - ACTIONS(707), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(969), 1, + STATE(960), 1, sym_string, - STATE(1025), 1, + STATE(966), 1, sym_primary_expression, - STATE(1283), 1, + STATE(1128), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(697), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(705), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(695), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(701), 3, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(689), 5, + ACTIONS(633), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1280), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80488,55 +81112,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [64976] = 18, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, + [65095] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(703), 1, + anon_sym_LBRACE, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(2284), 1, - sym_identifier, - STATE(984), 1, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(1259), 1, + anon_sym_STAR, + STATE(968), 1, sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(1603), 1, + STATE(986), 1, sym_primary_expression, + STATE(1165), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(2288), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - STATE(1342), 2, - sym_attribute, - sym_subscript, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2286), 3, + ACTIONS(705), 2, + sym_ellipsis, + sym_float, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(701), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(689), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80549,55 +81171,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65055] = 18, - ACTIONS(299), 1, - anon_sym_LBRACE, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(648), 1, + [65170] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2252), 1, + ACTIONS(747), 1, + anon_sym_LBRACE, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(2290), 1, - sym_identifier, - STATE(984), 1, + ACTIONS(753), 1, + sym_string_start, + ACTIONS(1285), 1, + anon_sym_STAR, + STATE(971), 1, sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(1598), 1, + STATE(1000), 1, sym_primary_expression, + STATE(1228), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, - sym_ellipsis, - sym_float, - ACTIONS(2250), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - STATE(651), 2, - sym_attribute, - sym_subscript, - ACTIONS(304), 3, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_TILDE, - ACTIONS(2248), 3, + ACTIONS(749), 2, + sym_ellipsis, + sym_float, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(745), 3, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_TILDE, + ACTIONS(733), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -80610,49 +81230,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65134] = 16, - ACTIONS(757), 1, + [65245] = 16, + ACTIONS(691), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(699), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(703), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(707), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(709), 1, sym_string_start, - ACTIONS(1307), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(1081), 1, + STATE(968), 1, sym_string, - STATE(1217), 1, + STATE(987), 1, sym_primary_expression, - STATE(1444), 1, + STATE(1165), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(697), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(705), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(695), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(701), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(689), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1441), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80669,7 +81289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65209] = 16, + [65320] = 16, ACTIONS(691), 1, anon_sym_LPAREN, ACTIONS(699), 1, @@ -80680,13 +81300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(709), 1, sym_string_start, - ACTIONS(1269), 1, + ACTIONS(1259), 1, anon_sym_STAR, - STATE(969), 1, + STATE(968), 1, sym_string, - STATE(982), 1, + STATE(988), 1, sym_primary_expression, - STATE(1283), 1, + STATE(1165), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80711,7 +81331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1280), 16, + STATE(1143), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80728,53 +81348,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65284] = 16, - ACTIONS(299), 1, + [65395] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(984), 1, + ACTIONS(2254), 1, + anon_sym_await, + ACTIONS(2308), 1, + sym_identifier, + STATE(990), 1, sym_string, - STATE(1125), 1, - sym_primary_expression, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1619), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(2312), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, + STATE(1381), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(2310), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 16, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80787,49 +81409,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65359] = 16, - ACTIONS(757), 1, + [65474] = 16, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(769), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(775), 1, - sym_string_start, - ACTIONS(1307), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(1081), 1, + STATE(990), 1, sym_string, - STATE(1211), 1, + STATE(1053), 1, sym_primary_expression, - STATE(1444), 1, + STATE(1402), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(771), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1441), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80846,7 +81468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65434] = 16, + [65549] = 16, ACTIONS(735), 1, anon_sym_LPAREN, ACTIONS(743), 1, @@ -80857,13 +81479,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_await, ACTIONS(753), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(958), 1, + STATE(971), 1, sym_string, - STATE(983), 1, + STATE(1001), 1, sym_primary_expression, - STATE(1259), 1, + STATE(1228), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, @@ -80888,7 +81510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(1180), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -80905,53 +81527,55 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65509] = 16, - ACTIONS(299), 1, + [65624] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(662), 1, - anon_sym_await, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(984), 1, + ACTIONS(2254), 1, + anon_sym_await, + ACTIONS(2314), 1, + sym_identifier, + STATE(990), 1, sym_string, - STATE(1126), 1, - sym_primary_expression, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, + STATE(1623), 1, + sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(2252), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, + STATE(1374), 2, + sym_attribute, + sym_subscript, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(2250), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(304), 4, sym_integer, - sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 16, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, - sym_attribute, - sym_subscript, sym_call, sym_list, sym_set, @@ -80964,49 +81588,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65584] = 16, - ACTIONS(299), 1, + [65703] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(662), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(1421), 1, + ACTIONS(1309), 1, anon_sym_STAR, - STATE(984), 1, + STATE(960), 1, sym_string, - STATE(1128), 1, + STATE(981), 1, sym_primary_expression, - STATE(1372), 1, + STATE(1128), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(656), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - ACTIONS(304), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(654), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 5, + ACTIONS(77), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 16, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81023,49 +81647,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65659] = 16, - ACTIONS(666), 1, + [65778] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(977), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(975), 1, + STATE(971), 1, sym_string, - STATE(1022), 1, + STATE(993), 1, sym_primary_expression, - STATE(1197), 1, + STATE(1228), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1279), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81082,49 +81706,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65734] = 16, - ACTIONS(779), 1, + [65853] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1243), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1085), 1, + STATE(1102), 1, sym_primary_expression, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81141,49 +81765,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65809] = 16, - ACTIONS(779), 1, + [65928] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1243), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1087), 1, + STATE(1103), 1, sym_primary_expression, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81200,49 +81824,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65884] = 16, - ACTIONS(735), 1, + [66003] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(958), 1, + STATE(1026), 1, sym_string, - STATE(1004), 1, + STATE(1104), 1, sym_primary_expression, - STATE(1259), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1180), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81259,49 +81883,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [65959] = 16, - ACTIONS(779), 1, + [66078] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1243), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1090), 1, + STATE(1105), 1, sym_primary_expression, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81318,49 +81942,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66034] = 16, - ACTIONS(779), 1, + [66153] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1243), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(985), 1, + STATE(1026), 1, sym_string, - STATE(1091), 1, + STATE(1106), 1, sym_primary_expression, - STATE(1320), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1331), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81377,49 +82001,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66109] = 16, - ACTIONS(779), 1, + [66228] = 16, + ACTIONS(291), 1, + anon_sym_LBRACE, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(648), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(793), 1, - anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(662), 1, anon_sym_await, - ACTIONS(799), 1, - sym_string_start, - ACTIONS(1243), 1, + ACTIONS(1423), 1, anon_sym_STAR, - STATE(985), 1, + STATE(990), 1, sym_string, - STATE(1092), 1, + STATE(1054), 1, sym_primary_expression, - STATE(1320), 1, + STATE(1402), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, - anon_sym_match, - anon_sym_type, - ACTIONS(795), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, - anon_sym_print, - anon_sym_async, - anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(656), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(654), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(304), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1331), 16, + STATE(1419), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81436,55 +82060,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66184] = 18, - ACTIONS(299), 1, + [66303] = 16, + ACTIONS(67), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(81), 1, sym_string_start, - ACTIONS(648), 1, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(658), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, - anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(641), 1, anon_sym_await, - ACTIONS(2292), 1, - sym_identifier, - STATE(984), 1, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(960), 1, sym_string, - STATE(1372), 1, - sym_list_splat_pattern, - STATE(1603), 1, + STATE(978), 1, sym_primary_expression, + STATE(1128), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(75), 2, sym_ellipsis, sym_float, - ACTIONS(2288), 2, + ACTIONS(635), 2, anon_sym_match, anon_sym_type, - STATE(1342), 2, - sym_attribute, - sym_subscript, - ACTIONS(304), 3, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2286), 3, + ACTIONS(633), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(77), 5, sym_integer, + sym_identifier, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1091), 16, sym_binary_operator, sym_unary_operator, + sym_attribute, + sym_subscript, sym_call, sym_list, sym_set, @@ -81497,49 +82119,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66263] = 16, - ACTIONS(779), 1, + [66378] = 16, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(743), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(747), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(751), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(753), 1, sym_string_start, - ACTIONS(1243), 1, + ACTIONS(1285), 1, anon_sym_STAR, - STATE(985), 1, + STATE(971), 1, sym_string, - STATE(1093), 1, + STATE(1002), 1, sym_primary_expression, - STATE(1320), 1, + STATE(1228), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(741), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(749), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(739), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(745), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(733), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1331), 16, + STATE(1221), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81556,53 +82178,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66338] = 18, - ACTIONS(299), 1, + [66453] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(2260), 1, - anon_sym_await, - ACTIONS(2278), 1, + ACTIONS(2226), 1, sym_identifier, - STATE(984), 1, + ACTIONS(2232), 1, + anon_sym_await, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1608), 1, + STATE(1626), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2282), 2, + ACTIONS(2230), 2, anon_sym_match, anon_sym_type, - STATE(1196), 2, + STATE(1231), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2280), 3, + ACTIONS(2228), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81617,53 +82239,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66417] = 18, - ACTIONS(299), 1, + [66532] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(2144), 1, + ACTIONS(2254), 1, anon_sym_await, - ACTIONS(2292), 1, + ACTIONS(2314), 1, sym_identifier, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1581), 1, + STATE(1619), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2288), 2, + ACTIONS(2252), 2, anon_sym_match, anon_sym_type, - STATE(1342), 2, + STATE(1374), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2286), 3, + ACTIONS(2250), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81678,53 +82300,53 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66496] = 18, - ACTIONS(299), 1, + [66611] = 18, + ACTIONS(291), 1, anon_sym_LBRACE, - ACTIONS(316), 1, + ACTIONS(308), 1, sym_string_start, ACTIONS(648), 1, anon_sym_LPAREN, ACTIONS(658), 1, anon_sym_LBRACK, - ACTIONS(1421), 1, + ACTIONS(1423), 1, anon_sym_STAR, - ACTIONS(2154), 1, + ACTIONS(2132), 1, sym_identifier, - ACTIONS(2160), 1, + ACTIONS(2138), 1, anon_sym_await, - STATE(984), 1, + STATE(990), 1, sym_string, - STATE(1372), 1, + STATE(1402), 1, sym_list_splat_pattern, - STATE(1607), 1, + STATE(1625), 1, sym_primary_expression, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(310), 2, + ACTIONS(302), 2, sym_ellipsis, sym_float, - ACTIONS(2158), 2, + ACTIONS(2136), 2, anon_sym_match, anon_sym_type, - STATE(1449), 2, + STATE(1433), 2, sym_attribute, sym_subscript, - ACTIONS(304), 3, + ACTIONS(296), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(2156), 3, + ACTIONS(2134), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_integer, sym_true, sym_false, sym_none, - STATE(1377), 14, + STATE(1419), 14, sym_binary_operator, sym_unary_operator, sym_call, @@ -81739,49 +82361,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66575] = 16, - ACTIONS(735), 1, + [66690] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(743), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(747), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(753), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1273), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(958), 1, + STATE(1111), 1, sym_string, - STATE(1008), 1, + STATE(1242), 1, sym_primary_expression, - STATE(1259), 1, + STATE(1446), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(741), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(749), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(739), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(745), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(733), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1180), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81798,49 +82420,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66650] = 16, - ACTIONS(779), 1, + [66765] = 16, + ACTIONS(757), 1, anon_sym_LPAREN, - ACTIONS(789), 1, + ACTIONS(765), 1, anon_sym_LBRACK, - ACTIONS(793), 1, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(797), 1, + ACTIONS(773), 1, anon_sym_await, - ACTIONS(799), 1, + ACTIONS(775), 1, sym_string_start, - ACTIONS(1243), 1, + ACTIONS(1313), 1, anon_sym_STAR, - STATE(985), 1, + STATE(1111), 1, sym_string, - STATE(1094), 1, + STATE(1243), 1, sym_primary_expression, - STATE(1320), 1, + STATE(1446), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(785), 2, + ACTIONS(763), 2, anon_sym_match, anon_sym_type, - ACTIONS(795), 2, + ACTIONS(771), 2, sym_ellipsis, sym_float, - ACTIONS(783), 3, + ACTIONS(761), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(791), 3, + ACTIONS(767), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(777), 5, + ACTIONS(755), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1331), 16, + STATE(1449), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81857,49 +82479,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66725] = 16, - ACTIONS(666), 1, + [66840] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(674), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(678), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(682), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(684), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(977), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(975), 1, + STATE(1026), 1, sym_string, - STATE(1027), 1, + STATE(1107), 1, sym_primary_expression, - STATE(1197), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(672), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(680), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(670), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(676), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(664), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1279), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81916,49 +82538,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66800] = 16, - ACTIONS(757), 1, + [66915] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1307), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(1081), 1, + STATE(1026), 1, sym_string, - STATE(1212), 1, + STATE(1108), 1, sym_primary_expression, - STATE(1444), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1441), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -81975,49 +82597,49 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66875] = 16, - ACTIONS(757), 1, + [66990] = 16, + ACTIONS(713), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(721), 1, anon_sym_LBRACK, - ACTIONS(769), 1, + ACTIONS(725), 1, anon_sym_LBRACE, - ACTIONS(773), 1, + ACTIONS(729), 1, anon_sym_await, - ACTIONS(775), 1, + ACTIONS(731), 1, sym_string_start, - ACTIONS(1307), 1, + ACTIONS(1321), 1, anon_sym_STAR, - STATE(1081), 1, + STATE(1026), 1, sym_string, - STATE(1213), 1, + STATE(1109), 1, sym_primary_expression, - STATE(1444), 1, + STATE(1348), 1, sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(763), 2, + ACTIONS(719), 2, anon_sym_match, anon_sym_type, - ACTIONS(771), 2, + ACTIONS(727), 2, sym_ellipsis, sym_float, - ACTIONS(761), 3, + ACTIONS(717), 3, anon_sym_print, anon_sym_async, anon_sym_exec, - ACTIONS(767), 3, + ACTIONS(723), 3, anon_sym_DASH, anon_sym_PLUS, anon_sym_TILDE, - ACTIONS(755), 5, + ACTIONS(711), 5, sym_integer, sym_identifier, sym_true, sym_false, sym_none, - STATE(1441), 16, + STATE(1299), 16, sym_binary_operator, sym_unary_operator, sym_attribute, @@ -82034,147 +82656,143 @@ static const uint16_t ts_small_parse_table[] = { sym_parenthesized_expression, sym_concatenated_string, sym_await, - [66950] = 20, - ACTIONS(2078), 1, + [67065] = 16, + ACTIONS(67), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(629), 1, anon_sym_LPAREN, - ACTIONS(2086), 1, - anon_sym_STAR_STAR, - ACTIONS(2096), 1, - anon_sym_PIPE, - ACTIONS(2098), 1, - anon_sym_not, - ACTIONS(2100), 1, - anon_sym_AMP, - ACTIONS(2102), 1, - anon_sym_CARET, - ACTIONS(2104), 1, - anon_sym_is, - ACTIONS(2294), 1, - anon_sym_DOT, - ACTIONS(2296), 1, + ACTIONS(637), 1, anon_sym_LBRACK, - STATE(1545), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(641), 1, + anon_sym_await, + ACTIONS(1309), 1, + anon_sym_STAR, + STATE(960), 1, + sym_string, + STATE(980), 1, + sym_primary_expression, + STATE(1128), 1, + sym_list_splat_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2080), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2082), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2094), 2, + ACTIONS(75), 2, + sym_ellipsis, + sym_float, + ACTIONS(635), 2, + anon_sym_match, + anon_sym_type, + ACTIONS(65), 3, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2106), 2, - anon_sym_LT, - anon_sym_GT, - STATE(873), 2, - sym__not_in, - sym__is_not, - STATE(1066), 2, - sym_argument_list, + anon_sym_TILDE, + ACTIONS(633), 3, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + ACTIONS(77), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1091), 16, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, sym_generator_expression, - ACTIONS(2092), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2084), 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(2074), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - [67032] = 21, - ACTIONS(2088), 1, - anon_sym_as, - ACTIONS(2098), 1, - anon_sym_not, - ACTIONS(2298), 1, - anon_sym_DOT, - ACTIONS(2300), 1, + sym_parenthesized_expression, + sym_concatenated_string, + sym_await, + [67140] = 20, + ACTIONS(2102), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2110), 1, anon_sym_STAR_STAR, - ACTIONS(2310), 1, - anon_sym_LBRACK, - ACTIONS(2316), 1, + ACTIONS(2120), 1, anon_sym_PIPE, - ACTIONS(2318), 1, + ACTIONS(2122), 1, + anon_sym_not, + ACTIONS(2124), 1, anon_sym_AMP, - ACTIONS(2320), 1, + ACTIONS(2126), 1, anon_sym_CARET, - ACTIONS(2322), 1, + ACTIONS(2128), 1, anon_sym_is, - STATE(1568), 1, + ACTIONS(2316), 1, + anon_sym_DOT, + ACTIONS(2318), 1, + anon_sym_LBRACK, + STATE(1557), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2302), 2, + ACTIONS(2104), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2304), 2, + ACTIONS(2106), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2314), 2, + ACTIONS(2118), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2324), 2, + ACTIONS(2130), 2, anon_sym_LT, anon_sym_GT, - STATE(854), 2, + STATE(867), 2, sym__not_in, sym__is_not, - STATE(1367), 2, + STATE(1092), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2312), 3, + ACTIONS(2116), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2306), 6, + ACTIONS(2108), 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(2074), 7, - anon_sym_RPAREN, + ACTIONS(2098), 8, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_and, anon_sym_or, - [67116] = 5, - ACTIONS(2330), 1, + [67222] = 5, + ACTIONS(2324), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(951), 2, + STATE(959), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2328), 5, + ACTIONS(2322), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2326), 31, + ACTIONS(2320), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -82206,62 +82824,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67168] = 21, - ACTIONS(2088), 1, + [67274] = 5, + ACTIONS(81), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(964), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1558), 5, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2098), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1553), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, - ACTIONS(2333), 1, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67326] = 21, + ACTIONS(2112), 1, + anon_sym_as, + ACTIONS(2122), 1, + anon_sym_not, + ACTIONS(2327), 1, anon_sym_DOT, - ACTIONS(2335), 1, + ACTIONS(2329), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(2337), 1, anon_sym_STAR_STAR, - ACTIONS(2345), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, - ACTIONS(2351), 1, + ACTIONS(2345), 1, anon_sym_PIPE, - ACTIONS(2353), 1, + ACTIONS(2347), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2349), 1, anon_sym_CARET, - ACTIONS(2357), 1, + ACTIONS(2351), 1, anon_sym_is, - STATE(1554), 1, + STATE(1574), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(2331), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(2333), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2349), 2, + ACTIONS(2343), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2353), 2, + anon_sym_LT, + anon_sym_GT, + STATE(891), 2, + sym__not_in, + sym__is_not, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2341), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2335), 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(2098), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [67410] = 21, + ACTIONS(2112), 1, + anon_sym_EQ, + ACTIONS(2122), 1, + anon_sym_not, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, + anon_sym_LBRACK, + ACTIONS(2373), 1, + anon_sym_PIPE, + ACTIONS(2375), 1, + anon_sym_AMP, + ACTIONS(2377), 1, + anon_sym_CARET, + ACTIONS(2379), 1, + anon_sym_is, + STATE(1563), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, ACTIONS(2359), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2371), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2381), 2, anon_sym_LT, anon_sym_GT, - STATE(927), 2, + STATE(913), 2, sym__not_in, sym__is_not, - STATE(1386), 2, + STATE(1338), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2347), 3, + ACTIONS(2369), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2341), 6, + ACTIONS(2363), 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(2074), 7, + ACTIONS(2098), 7, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -82269,62 +82997,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_and, anon_sym_or, - [67252] = 21, - ACTIONS(2088), 1, + [67494] = 21, + ACTIONS(2112), 1, anon_sym_EQ, - ACTIONS(2098), 1, + ACTIONS(2122), 1, anon_sym_not, - ACTIONS(2361), 1, + ACTIONS(2383), 1, anon_sym_DOT, - ACTIONS(2363), 1, + ACTIONS(2385), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(2393), 1, anon_sym_STAR_STAR, - ACTIONS(2373), 1, + ACTIONS(2395), 1, anon_sym_LBRACK, - ACTIONS(2379), 1, + ACTIONS(2401), 1, anon_sym_PIPE, - ACTIONS(2381), 1, + ACTIONS(2403), 1, anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2405), 1, anon_sym_CARET, - ACTIONS(2385), 1, + ACTIONS(2407), 1, anon_sym_is, - STATE(1555), 1, + STATE(1562), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 2, + ACTIONS(2387), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2367), 2, + ACTIONS(2389), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2377), 2, + ACTIONS(2399), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, + ACTIONS(2409), 2, anon_sym_LT, anon_sym_GT, - STATE(892), 2, + STATE(943), 2, sym__not_in, sym__is_not, - STATE(1289), 2, + STATE(1310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2375), 3, + ACTIONS(2397), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2369), 6, + ACTIONS(2391), 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(2074), 7, + ACTIONS(2098), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, @@ -82332,22 +83060,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_and, anon_sym_or, - [67336] = 5, + [67578] = 5, ACTIONS(81), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(955), 2, + STATE(959), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(2413), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 31, + ACTIONS(2411), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -82379,35 +83107,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67388] = 5, - ACTIONS(81), 1, - sym_string_start, + [67630] = 8, + ACTIONS(2100), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_LPAREN, + ACTIONS(2110), 1, + anon_sym_STAR_STAR, + ACTIONS(2114), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(951), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2391), 5, + STATE(1092), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2417), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2389), 31, + ACTIONS(2415), 27, sym__newline, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -82426,28 +83156,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67440] = 8, - ACTIONS(2076), 1, + [67687] = 8, + ACTIONS(2100), 1, anon_sym_DOT, - ACTIONS(2078), 1, + ACTIONS(2102), 1, anon_sym_LPAREN, - ACTIONS(2086), 1, + ACTIONS(2110), 1, anon_sym_STAR_STAR, - ACTIONS(2090), 1, + ACTIONS(2114), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1066), 2, + STATE(1092), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2395), 5, + ACTIONS(2421), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 27, + ACTIONS(2419), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -82475,28 +83205,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67497] = 8, - ACTIONS(2076), 1, + [67744] = 8, + ACTIONS(2100), 1, anon_sym_DOT, - ACTIONS(2078), 1, + ACTIONS(2102), 1, anon_sym_LPAREN, - ACTIONS(2086), 1, + ACTIONS(2110), 1, anon_sym_STAR_STAR, - ACTIONS(2090), 1, + ACTIONS(2114), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1066), 2, + STATE(1092), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2395), 5, + ACTIONS(2425), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 27, + ACTIONS(2423), 27, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -82524,22 +83254,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67554] = 5, - ACTIONS(753), 1, + [67801] = 5, + ACTIONS(709), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(971), 2, + STATE(969), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(1558), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(1553), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -82551,10 +83281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -82570,37 +83300,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67605] = 8, - ACTIONS(2076), 1, - anon_sym_DOT, - ACTIONS(2078), 1, - anon_sym_LPAREN, - ACTIONS(2086), 1, - anon_sym_STAR_STAR, - ACTIONS(2090), 1, - anon_sym_LBRACK, + [67852] = 5, + ACTIONS(709), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 5, + STATE(970), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2413), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 27, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2411), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -82619,22 +83346,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67662] = 5, - ACTIONS(2401), 1, + [67903] = 5, + ACTIONS(2427), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(960), 2, + STATE(970), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2328), 5, + ACTIONS(2322), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2326), 30, + ACTIONS(2320), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -82646,10 +83373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -82665,22 +83392,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67713] = 5, - ACTIONS(2404), 1, + [67954] = 5, + ACTIONS(753), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(961), 2, + STATE(972), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2328), 5, + ACTIONS(1558), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2326), 30, + ACTIONS(1553), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -82692,10 +83419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -82711,48 +83438,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67764] = 10, - ACTIONS(2076), 1, - anon_sym_DOT, - ACTIONS(2078), 1, - anon_sym_LPAREN, - ACTIONS(2086), 1, - anon_sym_STAR_STAR, - ACTIONS(2090), 1, - anon_sym_LBRACK, + [68005] = 5, + ACTIONS(753), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2080), 2, + STATE(973), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2413), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2092), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_from, + ACTIONS(2411), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -82762,90 +83484,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [67825] = 20, - ACTIONS(2098), 1, - anon_sym_not, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_PIPE, - ACTIONS(2427), 1, - anon_sym_AMP, - ACTIONS(2429), 1, - anon_sym_CARET, - ACTIONS(2431), 1, - anon_sym_is, - STATE(1559), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2411), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2413), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2423), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2433), 2, - anon_sym_LT, - anon_sym_GT, - STATE(947), 2, - sym__not_in, - sym__is_not, - STATE(1417), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2415), 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(2074), 7, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - [67906] = 5, - ACTIONS(684), 1, + [68056] = 5, + ACTIONS(2430), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(970), 2, + STATE(973), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2391), 5, + ACTIONS(2322), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2389), 30, + ACTIONS(2320), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -82868,245 +83530,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [67957] = 11, - ACTIONS(2076), 1, + [68107] = 20, + ACTIONS(2122), 1, + anon_sym_not, + ACTIONS(2433), 1, anon_sym_DOT, - ACTIONS(2078), 1, + ACTIONS(2435), 1, anon_sym_LPAREN, - ACTIONS(2086), 1, + ACTIONS(2443), 1, anon_sym_STAR_STAR, - ACTIONS(2090), 1, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2080), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2094), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2092), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2393), 22, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, + ACTIONS(2451), 1, anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, + ACTIONS(2453), 1, anon_sym_AMP, + ACTIONS(2455), 1, anon_sym_CARET, - anon_sym_LT_LT, + ACTIONS(2457), 1, anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68020] = 14, - ACTIONS(2076), 1, - anon_sym_DOT, - ACTIONS(2078), 1, - anon_sym_LPAREN, - ACTIONS(2086), 1, - anon_sym_STAR_STAR, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2100), 1, - anon_sym_AMP, - ACTIONS(2102), 1, - anon_sym_CARET, + STATE(1571), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2080), 2, + ACTIONS(2437), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2082), 2, + ACTIONS(2439), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2094), 2, + ACTIONS(2449), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1066), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2092), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, + ACTIONS(2459), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68089] = 13, - ACTIONS(2076), 1, - anon_sym_DOT, - ACTIONS(2078), 1, - anon_sym_LPAREN, - ACTIONS(2086), 1, - anon_sym_STAR_STAR, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2102), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2080), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2082), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2094), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1066), 2, + STATE(912), 2, + sym__not_in, + sym__is_not, + STATE(1434), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2092), 3, + ACTIONS(2447), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2393), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(2441), 6, anon_sym_in, - anon_sym_PIPE, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_AMP, - anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68156] = 5, - ACTIONS(709), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(961), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2391), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2389), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2098), 7, 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_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68207] = 5, - ACTIONS(709), 1, + [68188] = 5, + ACTIONS(684), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(968), 2, + STATE(976), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2413), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(2411), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83122,22 +83636,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68258] = 5, - ACTIONS(2435), 1, + sym_type_conversion, + [68239] = 5, + ACTIONS(2461), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(970), 2, + STATE(976), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2328), 5, + ACTIONS(2322), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2326), 30, + ACTIONS(2320), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -83168,37 +83683,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [68309] = 5, - ACTIONS(753), 1, - sym_string_start, + [68290] = 8, + ACTIONS(2100), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_LPAREN, + ACTIONS(2110), 1, + anon_sym_STAR_STAR, + ACTIONS(2114), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(960), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2391), 5, - anon_sym_as, + STATE(1092), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2417), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2389), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2415), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83214,44 +83732,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68360] = 12, - ACTIONS(2076), 1, + [68347] = 11, + ACTIONS(2100), 1, anon_sym_DOT, - ACTIONS(2078), 1, + ACTIONS(2102), 1, anon_sym_LPAREN, - ACTIONS(2086), 1, + ACTIONS(2110), 1, anon_sym_STAR_STAR, - ACTIONS(2090), 1, + ACTIONS(2114), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2080), 2, + ACTIONS(2104), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2082), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2094), 2, + ACTIONS(2118), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1066), 2, + STATE(1092), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2092), 3, + ACTIONS(2116), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + ACTIONS(2417), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 20, + ACTIONS(2415), 22, sym__newline, anon_sym_SEMI, anon_sym_from, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -83261,51 +83777,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68425] = 15, - ACTIONS(2076), 1, + [68410] = 15, + ACTIONS(2100), 1, anon_sym_DOT, - ACTIONS(2078), 1, + ACTIONS(2102), 1, anon_sym_LPAREN, - ACTIONS(2086), 1, + ACTIONS(2110), 1, anon_sym_STAR_STAR, - ACTIONS(2090), 1, + ACTIONS(2114), 1, anon_sym_LBRACK, - ACTIONS(2096), 1, + ACTIONS(2120), 1, anon_sym_PIPE, - ACTIONS(2100), 1, + ACTIONS(2124), 1, anon_sym_AMP, - ACTIONS(2102), 1, + ACTIONS(2126), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2080), 2, + ACTIONS(2104), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2082), 2, + ACTIONS(2106), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2094), 2, + ACTIONS(2118), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1066), 2, + STATE(1092), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2092), 3, + ACTIONS(2116), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2440), 3, + ACTIONS(2466), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2438), 17, + ACTIONS(2464), 17, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83323,28 +83840,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68496] = 8, - ACTIONS(2076), 1, + [68481] = 10, + ACTIONS(2100), 1, anon_sym_DOT, - ACTIONS(2078), 1, + ACTIONS(2102), 1, anon_sym_LPAREN, - ACTIONS(2086), 1, + ACTIONS(2110), 1, anon_sym_STAR_STAR, - ACTIONS(2090), 1, + ACTIONS(2114), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1066), 2, + ACTIONS(2104), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1092), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2444), 5, - anon_sym_STAR, + ACTIONS(2116), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, anon_sym_EQ, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2442), 27, + ACTIONS(2415), 24, sym__newline, anon_sym_SEMI, anon_sym_from, @@ -83354,15 +83876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -83372,173 +83891,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68553] = 5, - ACTIONS(684), 1, - sym_string_start, + [68542] = 14, + ACTIONS(2100), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_LPAREN, + ACTIONS(2110), 1, + anon_sym_STAR_STAR, + ACTIONS(2114), 1, + anon_sym_LBRACK, + ACTIONS(2124), 1, + anon_sym_AMP, + ACTIONS(2126), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(964), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(2104), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2106), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2118), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1092), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2116), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2415), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_from, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [68604] = 3, + [68611] = 13, + ACTIONS(2100), 1, + anon_sym_DOT, + ACTIONS(2102), 1, + anon_sym_LPAREN, + ACTIONS(2110), 1, + anon_sym_STAR_STAR, + ACTIONS(2114), 1, + anon_sym_LBRACK, + ACTIONS(2126), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2448), 5, + ACTIONS(2104), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2106), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2118), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1092), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2116), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2446), 32, + ACTIONS(2415), 19, sym__newline, - sym_string_start, anon_sym_SEMI, - anon_sym_DOT, anon_sym_from, - anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68650] = 8, - ACTIONS(2188), 1, + [68678] = 12, + ACTIONS(2100), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2102), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2110), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2114), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2395), 5, - anon_sym_as, + ACTIONS(2104), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2106), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2118), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1092), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2116), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 26, + ACTIONS(2415), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_from, 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_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68706] = 5, - ACTIONS(799), 1, + [68743] = 5, + ACTIONS(684), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(981), 2, + STATE(975), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(2391), 5, - anon_sym_as, + ACTIONS(1558), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2389), 29, + ACTIONS(1553), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83554,49 +84098,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68756] = 10, - ACTIONS(2218), 1, + sym_type_conversion, + [68794] = 15, + ACTIONS(2264), 1, anon_sym_DOT, - ACTIONS(2220), 1, + ACTIONS(2266), 1, anon_sym_LPAREN, - ACTIONS(2228), 1, + ACTIONS(2274), 1, anon_sym_STAR_STAR, - ACTIONS(2230), 1, + ACTIONS(2276), 1, anon_sym_LBRACK, + ACTIONS(2282), 1, + anon_sym_PIPE, + ACTIONS(2284), 1, + anon_sym_AMP, + ACTIONS(2286), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2222), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1144), 2, + ACTIONS(2270), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2280), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1173), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2278), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + ACTIONS(2466), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 23, + ACTIONS(2464), 16, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_DASH, - anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -83604,128 +84154,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [68816] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(267), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(265), 30, - sym__newline, - anon_sym_SEMI, + [68864] = 14, + ACTIONS(2156), 1, anon_sym_DOT, - anon_sym_from, + ACTIONS(2158), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, + ACTIONS(2166), 1, anon_sym_STAR_STAR, + ACTIONS(2168), 1, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, + ACTIONS(2176), 1, anon_sym_AMP, + ACTIONS(2178), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [68864] = 5, - ACTIONS(2450), 1, - sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(981), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2328), 5, - anon_sym_as, + ACTIONS(2160), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2162), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2172), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1175), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2170), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2326), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2415), 17, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68914] = 12, - ACTIONS(2110), 1, + [68932] = 13, + ACTIONS(2156), 1, anon_sym_DOT, - ACTIONS(2112), 1, + ACTIONS(2158), 1, anon_sym_LPAREN, - ACTIONS(2120), 1, + ACTIONS(2166), 1, anon_sym_STAR_STAR, - ACTIONS(2122), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, + ACTIONS(2178), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2114), 2, + ACTIONS(2160), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2116), 2, + ACTIONS(2162), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2126), 2, + ACTIONS(2172), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1281), 2, + STATE(1175), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2124), 3, + ACTIONS(2170), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + ACTIONS(2417), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 19, + ACTIONS(2415), 18, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -83738,54 +84255,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, - anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [68978] = 12, - ACTIONS(2188), 1, + [68998] = 12, + ACTIONS(2156), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2158), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2166), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + ACTIONS(2160), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2194), 2, + ACTIONS(2162), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2204), 2, + ACTIONS(2172), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1233), 2, + STATE(1175), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, + ACTIONS(2170), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + ACTIONS(2417), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 19, + ACTIONS(2415), 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, @@ -83797,30 +84313,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69042] = 5, - ACTIONS(316), 1, - sym_string_start, + [69062] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1013), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(2470), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(2468), 32, + sym__newline, + sym_string_start, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -83842,30 +84356,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69092] = 5, - ACTIONS(799), 1, + [69108] = 5, + ACTIONS(308), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(978), 2, + STATE(995), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(1558), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + 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_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -83887,31 +84401,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69142] = 3, + [69158] = 6, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(2472), 1, + anon_sym_LBRACK, + STATE(2088), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2455), 5, + ACTIONS(259), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2453), 32, - sym__newline, - sym_string_start, - anon_sym_SEMI, + ACTIONS(257), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -83930,33 +84447,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69188] = 3, + [69210] = 6, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, + ACTIONS(2472), 1, + anon_sym_LBRACK, + STATE(2089), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 6, + ACTIONS(1558), 6, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 31, + ACTIONS(1553), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -83972,21 +84493,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69234] = 3, + [69262] = 8, + ACTIONS(2184), 1, + anon_sym_DOT, + ACTIONS(2186), 1, + anon_sym_LPAREN, + ACTIONS(2194), 1, + anon_sym_STAR_STAR, + ACTIONS(2196), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, + STATE(1279), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2419), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -83994,8 +84522,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -84015,94 +84541,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69280] = 20, - ACTIONS(2098), 1, - anon_sym_not, - ACTIONS(2188), 1, + [69318] = 8, + ACTIONS(2184), 1, anon_sym_DOT, - ACTIONS(2200), 1, - anon_sym_LBRACK, - ACTIONS(2220), 1, + ACTIONS(2186), 1, anon_sym_LPAREN, - ACTIONS(2228), 1, + ACTIONS(2194), 1, anon_sym_STAR_STAR, - ACTIONS(2236), 1, - anon_sym_PIPE, - ACTIONS(2238), 1, - anon_sym_AMP, - ACTIONS(2240), 1, - anon_sym_CARET, - ACTIONS(2242), 1, - anon_sym_is, - STATE(1558), 1, - aux_sym_comparison_operator_repeat1, + ACTIONS(2196), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2222), 2, + STATE(1279), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2425), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2224), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2423), 26, + anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2234), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - ACTIONS(2244), 2, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69374] = 5, + ACTIONS(308), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1004), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2413), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - STATE(856), 2, - sym__not_in, - sym__is_not, - STATE(1144), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2411), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2074), 6, - anon_sym_COMMA, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69424] = 8, + ACTIONS(2184), 1, + anon_sym_DOT, + ACTIONS(2186), 1, + anon_sym_LPAREN, + ACTIONS(2194), 1, + anon_sym_STAR_STAR, + ACTIONS(2196), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1279), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2417), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2415), 26, + anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2226), 6, - anon_sym_in, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69360] = 10, - ACTIONS(2188), 1, + [69480] = 11, + ACTIONS(2184), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2186), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2194), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2196), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + ACTIONS(2188), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1233), 2, + ACTIONS(2200), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1279), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, + ACTIONS(2198), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + ACTIONS(2417), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 23, + ACTIONS(2415), 21, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84110,10 +84719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -84126,28 +84733,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69420] = 8, - ACTIONS(2110), 1, + [69542] = 15, + ACTIONS(2184), 1, anon_sym_DOT, - ACTIONS(2112), 1, + ACTIONS(2186), 1, anon_sym_LPAREN, - ACTIONS(2120), 1, + ACTIONS(2194), 1, anon_sym_STAR_STAR, - ACTIONS(2122), 1, + ACTIONS(2196), 1, + anon_sym_LBRACK, + ACTIONS(2202), 1, + anon_sym_PIPE, + ACTIONS(2204), 1, + anon_sym_AMP, + ACTIONS(2206), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2188), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2190), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2200), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1279), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2198), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2466), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2464), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69612] = 8, + ACTIONS(2184), 1, + anon_sym_DOT, + ACTIONS(2186), 1, + anon_sym_LPAREN, + ACTIONS(2194), 1, + anon_sym_STAR_STAR, + ACTIONS(2196), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1281), 2, + STATE(1279), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2444), 5, + ACTIONS(2417), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2442), 26, + ACTIONS(2415), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84155,10 +84817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84174,42 +84836,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69476] = 5, - ACTIONS(731), 1, - sym_string_start, + [69668] = 10, + ACTIONS(2184), 1, + anon_sym_DOT, + ACTIONS(2186), 1, + anon_sym_LPAREN, + ACTIONS(2194), 1, + anon_sym_STAR_STAR, + ACTIONS(2196), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(998), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2391), 5, + ACTIONS(2188), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1279), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2198), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2389), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2415), 23, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84219,51 +84886,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69526] = 15, - ACTIONS(2188), 1, + [69728] = 14, + ACTIONS(2184), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2186), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2194), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2196), 1, anon_sym_LBRACK, - ACTIONS(2206), 1, - anon_sym_PIPE, - ACTIONS(2208), 1, + ACTIONS(2204), 1, anon_sym_AMP, - ACTIONS(2210), 1, + ACTIONS(2206), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + ACTIONS(2188), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2194), 2, + ACTIONS(2190), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2204), 2, + ACTIONS(2200), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1233), 2, + STATE(1279), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, + ACTIONS(2198), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2440), 3, + ACTIONS(2417), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2438), 16, + ACTIONS(2415), 17, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_PIPE, anon_sym_RBRACE, anon_sym_not, anon_sym_and, @@ -84274,138 +84940,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69596] = 20, - ACTIONS(2098), 1, - anon_sym_not, - ACTIONS(2298), 1, + [69796] = 13, + ACTIONS(2184), 1, anon_sym_DOT, - ACTIONS(2310), 1, - anon_sym_LBRACK, - ACTIONS(2363), 1, + ACTIONS(2186), 1, anon_sym_LPAREN, - ACTIONS(2371), 1, + ACTIONS(2194), 1, anon_sym_STAR_STAR, - ACTIONS(2379), 1, - anon_sym_PIPE, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, + ACTIONS(2196), 1, + anon_sym_LBRACK, + ACTIONS(2206), 1, anon_sym_CARET, - ACTIONS(2385), 1, - anon_sym_is, - STATE(1555), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 2, + ACTIONS(2188), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2367), 2, + ACTIONS(2190), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2377), 2, + ACTIONS(2200), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2387), 2, - anon_sym_LT, - anon_sym_GT, - STATE(892), 2, - sym__not_in, - sym__is_not, - STATE(1289), 2, + STATE(1279), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2375), 3, + ACTIONS(2198), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2074), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2417), 3, anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2415), 18, + anon_sym_COMMA, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_not, anon_sym_and, anon_sym_or, - ACTIONS(2369), 6, - anon_sym_in, + anon_sym_AMP, + anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69676] = 5, - ACTIONS(731), 1, - sym_string_start, + [69862] = 12, + ACTIONS(2184), 1, + anon_sym_DOT, + ACTIONS(2186), 1, + anon_sym_LPAREN, + ACTIONS(2194), 1, + anon_sym_STAR_STAR, + ACTIONS(2196), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(992), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 5, + ACTIONS(2188), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2190), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2200), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1279), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2198), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2415), 19, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69726] = 3, + [69926] = 5, + ACTIONS(2474), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 6, - anon_sym_as, + STATE(1004), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2322), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1714), 31, + ACTIONS(2320), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84421,37 +85090,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69772] = 8, - ACTIONS(2110), 1, - anon_sym_DOT, - ACTIONS(2112), 1, - anon_sym_LPAREN, - ACTIONS(2120), 1, - anon_sym_STAR_STAR, - ACTIONS(2122), 1, - anon_sym_LBRACK, + [69976] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1281), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 5, - anon_sym_as, + ACTIONS(259), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 26, + ACTIONS(257), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -84470,36 +85134,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69828] = 5, - ACTIONS(2457), 1, - sym_string_start, + [70024] = 8, + ACTIONS(2264), 1, + anon_sym_DOT, + ACTIONS(2266), 1, + anon_sym_LPAREN, + ACTIONS(2274), 1, + anon_sym_STAR_STAR, + ACTIONS(2276), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(998), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2328), 5, + STATE(1173), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2326), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2419), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84515,39 +85181,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69878] = 8, - ACTIONS(2110), 1, + sym_type_conversion, + [70080] = 8, + ACTIONS(2264), 1, anon_sym_DOT, - ACTIONS(2112), 1, + ACTIONS(2266), 1, anon_sym_LPAREN, - ACTIONS(2120), 1, + ACTIONS(2274), 1, anon_sym_STAR_STAR, - ACTIONS(2122), 1, + ACTIONS(2276), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1281), 2, + STATE(1173), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2395), 5, - anon_sym_as, + ACTIONS(2425), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 26, + ACTIONS(2423), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84563,33 +85229,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [69934] = 3, + sym_type_conversion, + [70136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 6, - anon_sym_as, + ACTIONS(2479), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1706), 31, + ACTIONS(2477), 32, + sym__newline, + sym_string_start, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84605,37 +85273,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [69980] = 11, - ACTIONS(2110), 1, + [70182] = 10, + ACTIONS(2156), 1, anon_sym_DOT, - ACTIONS(2112), 1, + ACTIONS(2158), 1, anon_sym_LPAREN, - ACTIONS(2120), 1, + ACTIONS(2166), 1, anon_sym_STAR_STAR, - ACTIONS(2122), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2114), 2, + ACTIONS(2160), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2126), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1281), 2, + STATE(1175), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2124), 3, + ACTIONS(2170), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + ACTIONS(2417), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 21, + ACTIONS(2415), 23, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84644,7 +85308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_in, anon_sym_RBRACK, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, @@ -84657,37 +85323,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70042] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2460), 1, + [70242] = 8, + ACTIONS(2264), 1, + anon_sym_DOT, + ACTIONS(2266), 1, + anon_sym_LPAREN, + ACTIONS(2274), 1, + anon_sym_STAR_STAR, + ACTIONS(2276), 1, anon_sym_LBRACK, - STATE(2011), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, - anon_sym_as, + STATE(1173), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2417), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2415), 26, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -84703,45 +85370,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70094] = 14, - ACTIONS(2218), 1, + sym_type_conversion, + [70298] = 11, + ACTIONS(2264), 1, anon_sym_DOT, - ACTIONS(2220), 1, + ACTIONS(2266), 1, anon_sym_LPAREN, - ACTIONS(2228), 1, + ACTIONS(2274), 1, anon_sym_STAR_STAR, - ACTIONS(2230), 1, + ACTIONS(2276), 1, anon_sym_LBRACK, - ACTIONS(2238), 1, - anon_sym_AMP, - ACTIONS(2240), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2222), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2224), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2234), 2, + ACTIONS(2280), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1144), 2, + STATE(1173), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2278), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + ACTIONS(2417), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 17, + ACTIONS(2415), 21, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, @@ -84750,6 +85412,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -84757,36 +85422,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70162] = 11, - ACTIONS(2188), 1, + [70360] = 8, + ACTIONS(2156), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2158), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2166), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2204), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1233), 2, + STATE(1175), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + ACTIONS(2417), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 21, + ACTIONS(2415), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -84794,11 +85451,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84808,28 +85470,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70224] = 8, - ACTIONS(2218), 1, + [70416] = 8, + ACTIONS(2264), 1, anon_sym_DOT, - ACTIONS(2220), 1, + ACTIONS(2266), 1, anon_sym_LPAREN, - ACTIONS(2228), 1, + ACTIONS(2274), 1, anon_sym_STAR_STAR, - ACTIONS(2230), 1, + ACTIONS(2276), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1144), 2, + STATE(1173), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2399), 5, + ACTIONS(2417), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 26, + ACTIONS(2415), 26, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -84856,42 +85518,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70280] = 5, - ACTIONS(2462), 1, - sym_string_start, + [70472] = 10, + ACTIONS(2264), 1, + anon_sym_DOT, + ACTIONS(2266), 1, + anon_sym_LPAREN, + ACTIONS(2274), 1, + anon_sym_STAR_STAR, + ACTIONS(2276), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1006), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2328), 5, + ACTIONS(2268), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1173), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2278), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2326), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2415), 23, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -84901,204 +85567,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70330] = 20, - ACTIONS(2098), 1, - anon_sym_not, - ACTIONS(2110), 1, + sym_type_conversion, + [70532] = 14, + ACTIONS(2264), 1, anon_sym_DOT, - ACTIONS(2122), 1, - anon_sym_LBRACK, - ACTIONS(2409), 1, + ACTIONS(2266), 1, anon_sym_LPAREN, - ACTIONS(2417), 1, + ACTIONS(2274), 1, anon_sym_STAR_STAR, - ACTIONS(2425), 1, - anon_sym_PIPE, - ACTIONS(2427), 1, + ACTIONS(2276), 1, + anon_sym_LBRACK, + ACTIONS(2284), 1, anon_sym_AMP, - ACTIONS(2429), 1, + ACTIONS(2286), 1, anon_sym_CARET, - ACTIONS(2431), 1, - anon_sym_is, - STATE(1559), 1, - aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2413), 2, + ACTIONS(2270), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2423), 2, + ACTIONS(2280), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2433), 2, - anon_sym_LT, - anon_sym_GT, - STATE(947), 2, - sym__not_in, - sym__is_not, - STATE(1417), 2, + STATE(1173), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2421), 3, + ACTIONS(2278), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2074), 6, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - ACTIONS(2415), 6, - anon_sym_in, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [70410] = 8, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 26, + ACTIONS(2415), 17, 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_AT, - anon_sym_DASH, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70466] = 15, - ACTIONS(2110), 1, + sym_type_conversion, + [70600] = 13, + ACTIONS(2264), 1, anon_sym_DOT, - ACTIONS(2112), 1, + ACTIONS(2266), 1, anon_sym_LPAREN, - ACTIONS(2120), 1, + ACTIONS(2274), 1, anon_sym_STAR_STAR, - ACTIONS(2122), 1, + ACTIONS(2276), 1, anon_sym_LBRACK, - ACTIONS(2128), 1, - anon_sym_PIPE, - ACTIONS(2130), 1, - anon_sym_AMP, - ACTIONS(2132), 1, + ACTIONS(2286), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2114), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2116), 2, + ACTIONS(2270), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2126), 2, + ACTIONS(2280), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1281), 2, + STATE(1173), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2124), 3, + ACTIONS(2278), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2440), 3, - anon_sym_as, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2438), 16, + ACTIONS(2415), 18, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70536] = 13, - ACTIONS(2218), 1, + sym_type_conversion, + [70666] = 12, + ACTIONS(2264), 1, anon_sym_DOT, - ACTIONS(2220), 1, + ACTIONS(2266), 1, anon_sym_LPAREN, - ACTIONS(2228), 1, + ACTIONS(2274), 1, anon_sym_STAR_STAR, - ACTIONS(2230), 1, + ACTIONS(2276), 1, anon_sym_LBRACK, - ACTIONS(2240), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2222), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2224), 2, + ACTIONS(2270), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2234), 2, + ACTIONS(2280), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1144), 2, + STATE(1173), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2278), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + ACTIONS(2417), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 18, + ACTIONS(2415), 19, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -85110,6 +85719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -85117,87 +85727,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70602] = 12, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2220), 1, - anon_sym_LPAREN, - ACTIONS(2228), 1, - anon_sym_STAR_STAR, - ACTIONS(2230), 1, - anon_sym_LBRACK, + [70730] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2222), 2, + ACTIONS(259), 6, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2224), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2234), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1144), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2232), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + anon_sym_COLON, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 19, + ACTIONS(257), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [70666] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [70778] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(1692), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1690), 31, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85213,36 +85813,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70714] = 5, - ACTIONS(316), 1, - sym_string_start, + sym_type_conversion, + [70824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1006), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2391), 5, + ACTIONS(1663), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2389), 29, + ACTIONS(1661), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85258,28 +85856,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70764] = 8, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, - anon_sym_LBRACK, + sym_type_conversion, + [70870] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 5, + ACTIONS(1603), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2442), 26, + ACTIONS(1601), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85287,6 +85878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85306,34 +85899,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70820] = 8, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2220), 1, - anon_sym_LPAREN, - ACTIONS(2228), 1, - anon_sym_STAR_STAR, - ACTIONS(2230), 1, - anon_sym_LBRACK, + sym_type_conversion, + [70916] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1144), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2395), 5, + ACTIONS(1603), 6, + anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 26, + ACTIONS(1601), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -85354,28 +85943,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70876] = 8, - ACTIONS(2110), 1, - anon_sym_DOT, - ACTIONS(2112), 1, - anon_sym_LPAREN, - ACTIONS(2120), 1, - anon_sym_STAR_STAR, - ACTIONS(2122), 1, - anon_sym_LBRACK, + [70962] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1281), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2395), 5, + ACTIONS(1621), 6, anon_sym_as, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 26, + ACTIONS(1619), 31, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85383,10 +85964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85402,18 +85985,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [70932] = 3, + sym_type_conversion, + [71008] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 6, + ACTIONS(1621), 6, anon_sym_as, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 31, + ACTIONS(1619), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -85445,29 +86029,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [70978] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [71054] = 20, + ACTIONS(2122), 1, + anon_sym_not, + ACTIONS(2327), 1, + anon_sym_DOT, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2385), 1, + anon_sym_LPAREN, + ACTIONS(2393), 1, + anon_sym_STAR_STAR, + ACTIONS(2401), 1, + anon_sym_PIPE, + ACTIONS(2403), 1, + anon_sym_AMP, + ACTIONS(2405), 1, + anon_sym_CARET, + ACTIONS(2407), 1, + anon_sym_is, + STATE(1562), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(2387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2389), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2399), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2409), 2, + anon_sym_LT, + anon_sym_GT, + STATE(943), 2, + sym__not_in, + sym__is_not, + STATE(1310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2397), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2098), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(2391), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [71134] = 5, + ACTIONS(731), 1, + sym_string_start, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1027), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1558), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 30, - sym__newline, - anon_sym_SEMI, + ACTIONS(1553), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -85489,33 +86134,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71026] = 3, + [71184] = 5, + ACTIONS(731), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 6, - anon_sym_as, + STATE(1028), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2413), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 31, + ACTIONS(2411), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85531,39 +86179,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71072] = 8, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2220), 1, - anon_sym_LPAREN, - ACTIONS(2228), 1, - anon_sym_STAR_STAR, - ACTIONS(2230), 1, - anon_sym_LBRACK, + [71234] = 5, + ACTIONS(2481), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1144), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 5, + STATE(1028), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2322), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2442), 26, + ACTIONS(2320), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85579,29 +86224,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71128] = 8, - ACTIONS(2188), 1, + [71284] = 20, + ACTIONS(2122), 1, + anon_sym_not, + ACTIONS(2156), 1, + anon_sym_DOT, + ACTIONS(2168), 1, + anon_sym_LBRACK, + ACTIONS(2435), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_STAR_STAR, + ACTIONS(2451), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_AMP, + ACTIONS(2455), 1, + anon_sym_CARET, + ACTIONS(2457), 1, + anon_sym_is, + STATE(1571), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2439), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2449), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2459), 2, + anon_sym_LT, + anon_sym_GT, + STATE(912), 2, + sym__not_in, + sym__is_not, + STATE(1434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2098), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + ACTIONS(2441), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [71364] = 8, + ACTIONS(2156), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2158), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2166), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1233), 2, + STATE(1175), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2395), 5, + ACTIONS(2421), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 26, + ACTIONS(2419), 26, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -85609,10 +86313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85628,38 +86332,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71184] = 8, - ACTIONS(2218), 1, + [71420] = 8, + ACTIONS(2156), 1, anon_sym_DOT, - ACTIONS(2220), 1, + ACTIONS(2158), 1, anon_sym_LPAREN, - ACTIONS(2228), 1, + ACTIONS(2166), 1, anon_sym_STAR_STAR, - ACTIONS(2230), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1144), 2, + STATE(1175), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2395), 5, + ACTIONS(2425), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 26, + ACTIONS(2423), 26, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -85675,48 +86380,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71240] = 10, - ACTIONS(2110), 1, - anon_sym_DOT, - ACTIONS(2112), 1, - anon_sym_LPAREN, - ACTIONS(2120), 1, - anon_sym_STAR_STAR, - ACTIONS(2122), 1, - anon_sym_LBRACK, + [71476] = 4, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2114), 2, + ACTIONS(1558), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, - STATE(1281), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2124), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 23, + ACTIONS(1553), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -85726,289 +86424,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71300] = 14, - ACTIONS(2110), 1, - anon_sym_DOT, - ACTIONS(2112), 1, - anon_sym_LPAREN, - ACTIONS(2120), 1, - anon_sym_STAR_STAR, - ACTIONS(2122), 1, - anon_sym_LBRACK, - ACTIONS(2130), 1, - anon_sym_AMP, - ACTIONS(2132), 1, - anon_sym_CARET, + [71524] = 5, + ACTIONS(2484), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2114), 2, + STATE(1033), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2322), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2116), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2126), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1281), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2124), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 17, + ACTIONS(2320), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71368] = 13, - ACTIONS(2110), 1, + [71574] = 8, + ACTIONS(2156), 1, anon_sym_DOT, - ACTIONS(2112), 1, + ACTIONS(2158), 1, anon_sym_LPAREN, - ACTIONS(2120), 1, + ACTIONS(2166), 1, anon_sym_STAR_STAR, - ACTIONS(2122), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2132), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2114), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2116), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2126), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1281), 2, + STATE(1175), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2124), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + ACTIONS(2417), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 18, + ACTIONS(2415), 26, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71434] = 14, - ACTIONS(2188), 1, + [71630] = 11, + ACTIONS(2156), 1, anon_sym_DOT, - ACTIONS(2190), 1, + ACTIONS(2158), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, + ACTIONS(2166), 1, anon_sym_STAR_STAR, - ACTIONS(2200), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, - ACTIONS(2208), 1, - anon_sym_AMP, - ACTIONS(2210), 1, - anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + ACTIONS(2160), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2194), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2204), 2, + ACTIONS(2172), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1233), 2, + STATE(1175), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2202), 3, + ACTIONS(2170), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, + ACTIONS(2417), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 17, + ACTIONS(2415), 21, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71502] = 11, - ACTIONS(2218), 1, + [71692] = 15, + ACTIONS(2156), 1, anon_sym_DOT, - ACTIONS(2220), 1, + ACTIONS(2158), 1, anon_sym_LPAREN, - ACTIONS(2228), 1, + ACTIONS(2166), 1, anon_sym_STAR_STAR, - ACTIONS(2230), 1, + ACTIONS(2168), 1, anon_sym_LBRACK, + ACTIONS(2174), 1, + anon_sym_PIPE, + ACTIONS(2176), 1, + anon_sym_AMP, + ACTIONS(2178), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2222), 2, + ACTIONS(2160), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2234), 2, + ACTIONS(2162), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2172), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1144), 2, + STATE(1175), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2170), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, + ACTIONS(2466), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 21, + ACTIONS(2464), 16, 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_RBRACE, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71564] = 13, - ACTIONS(2188), 1, - anon_sym_DOT, - ACTIONS(2190), 1, - anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_STAR_STAR, - ACTIONS(2200), 1, - anon_sym_LBRACK, - ACTIONS(2210), 1, - anon_sym_CARET, + [71762] = 5, + ACTIONS(799), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2192), 2, + STATE(1038), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1558), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2194), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2204), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1233), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2202), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 18, + ACTIONS(1553), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71630] = 3, + [71812] = 5, + ACTIONS(799), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 6, + STATE(1033), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2413), 5, anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, + ACTIONS(2411), 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, @@ -86017,7 +86698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86033,93 +86713,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71676] = 15, - ACTIONS(2218), 1, + [71862] = 20, + ACTIONS(2122), 1, + anon_sym_not, + ACTIONS(2184), 1, anon_sym_DOT, - ACTIONS(2220), 1, + ACTIONS(2196), 1, + anon_sym_LBRACK, + ACTIONS(2266), 1, anon_sym_LPAREN, - ACTIONS(2228), 1, + ACTIONS(2274), 1, anon_sym_STAR_STAR, - ACTIONS(2230), 1, - anon_sym_LBRACK, - ACTIONS(2236), 1, + ACTIONS(2282), 1, anon_sym_PIPE, - ACTIONS(2238), 1, + ACTIONS(2284), 1, anon_sym_AMP, - ACTIONS(2240), 1, + ACTIONS(2286), 1, anon_sym_CARET, + ACTIONS(2288), 1, + anon_sym_is, + STATE(1568), 1, + aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2222), 2, + ACTIONS(2268), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2224), 2, + ACTIONS(2270), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2234), 2, + ACTIONS(2280), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1144), 2, + ACTIONS(2290), 2, + anon_sym_LT, + anon_sym_GT, + STATE(881), 2, + sym__not_in, + sym__is_not, + STATE(1173), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2232), 3, + ACTIONS(2278), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2440), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2438), 16, + ACTIONS(2098), 6, anon_sym_COMMA, anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_RBRACE, - anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_is, + ACTIONS(2272), 6, + anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [71746] = 6, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(2460), 1, - anon_sym_LBRACK, - STATE(2010), 1, - sym_type_parameter, + [71942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(1651), 6, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 28, + ACTIONS(1649), 31, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86135,29 +86815,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71798] = 5, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(787), 1, - anon_sym_EQ, + sym_type_conversion, + [71988] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, - anon_sym_as, + ACTIONS(2489), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(2487), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -86179,17 +86858,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71847] = 3, + [72033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 5, + ACTIONS(2493), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1706), 31, + ACTIONS(2491), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -86221,30 +86900,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71892] = 3, + [72078] = 8, + ACTIONS(2327), 1, + anon_sym_DOT, + ACTIONS(2329), 1, + anon_sym_LPAREN, + ACTIONS(2337), 1, + anon_sym_STAR_STAR, + ACTIONS(2339), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2417), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2415), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86263,33 +86947,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71937] = 3, + [72133] = 6, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, + ACTIONS(643), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(645), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(686), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86305,33 +86992,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [71982] = 3, + [72184] = 6, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(643), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(645), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(686), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86347,33 +87037,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72027] = 3, + [72235] = 6, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, + ACTIONS(1683), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1673), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1680), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1677), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86389,34 +87082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72072] = 5, - ACTIONS(1567), 1, - anon_sym_COMMA, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [72286] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2497), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(2495), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -86432,75 +87124,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [72121] = 5, + [72331] = 8, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2425), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1617), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2423), 25, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1607), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72170] = 3, + [72386] = 8, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2417), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2415), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86519,39 +87218,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72215] = 3, + [72441] = 11, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2359), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2415), 20, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86561,78 +87268,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72260] = 6, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(2473), 1, + [72502] = 15, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, anon_sym_LBRACK, - STATE(1977), 1, - sym_type_parameter, + ACTIONS(2373), 1, + anon_sym_PIPE, + ACTIONS(2375), 1, + anon_sym_AMP, + ACTIONS(2377), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(2359), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2371), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2466), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2464), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72311] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2473), 1, + [72571] = 8, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, anon_sym_LBRACK, - STATE(1966), 1, - sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2417), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2415), 25, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86651,39 +87369,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72362] = 3, + [72626] = 10, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2359), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2415), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86693,169 +87418,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72407] = 7, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(1619), 1, - anon_sym_COLON, + [72685] = 14, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, + anon_sym_LBRACK, + ACTIONS(2375), 1, + anon_sym_AMP, + ACTIONS(2377), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1609), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_PIPE, - ACTIONS(1614), 5, - anon_sym_as, + ACTIONS(2359), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2371), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 23, - anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2415), 16, + anon_sym_COMMA, + anon_sym_as, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, + 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72460] = 3, + [72752] = 13, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, + anon_sym_LBRACK, + ACTIONS(2377), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2455), 5, - anon_sym_as, + ACTIONS(2359), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2371), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2453), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2415), 17, anon_sym_COMMA, - anon_sym_GT_GT, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72505] = 3, + [72817] = 12, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2359), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2371), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2415), 18, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72550] = 3, + [72880] = 11, + ACTIONS(2327), 1, + anon_sym_DOT, + ACTIONS(2329), 1, + anon_sym_LPAREN, + ACTIONS(2337), 1, + anon_sym_STAR_STAR, + ACTIONS(2339), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2448), 5, - anon_sym_as, + ACTIONS(2331), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2343), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2341), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2446), 31, - sym_string_start, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2415), 20, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -86865,33 +87624,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72595] = 6, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(2479), 1, - anon_sym_LBRACK, - STATE(1956), 1, - sym_type_parameter, + [72941] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(2501), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 27, + ACTIONS(2499), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86910,33 +87666,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72646] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2479), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym_type_parameter, + [72986] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(1692), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(1690), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -86955,35 +87708,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72697] = 8, - ACTIONS(2298), 1, - anon_sym_DOT, - ACTIONS(2300), 1, - anon_sym_LPAREN, - ACTIONS(2308), 1, - anon_sym_STAR_STAR, - ACTIONS(2310), 1, - anon_sym_LBRACK, + [73031] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1367), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 5, - anon_sym_as, + ACTIONS(1663), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 25, - anon_sym_RPAREN, + ACTIONS(1661), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87002,33 +87750,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72752] = 3, + [73076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2455), 5, - anon_sym_as, + ACTIONS(1603), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2453), 31, - sym_string_start, + ACTIONS(1601), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87044,31 +87792,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72797] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [73121] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, - anon_sym_as, + ACTIONS(1603), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(1601), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87087,31 +87834,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72844] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [73166] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, - anon_sym_as, + ACTIONS(1621), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(1619), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87130,31 +87876,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72891] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [73211] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, - anon_sym_as, + ACTIONS(1621), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1619), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87173,80 +87918,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72938] = 8, - ACTIONS(2298), 1, + [73256] = 15, + ACTIONS(2327), 1, anon_sym_DOT, - ACTIONS(2300), 1, + ACTIONS(2329), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2337), 1, anon_sym_STAR_STAR, - ACTIONS(2310), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, + ACTIONS(2345), 1, + anon_sym_PIPE, + ACTIONS(2347), 1, + anon_sym_AMP, + ACTIONS(2349), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1367), 2, + ACTIONS(2331), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2333), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2343), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1407), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2444), 5, + ACTIONS(2341), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2466), 3, anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2442), 25, + ACTIONS(2464), 15, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [72993] = 3, + [73325] = 5, + ACTIONS(1555), 1, + anon_sym_COMMA, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1558), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1553), 28, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87262,23 +88015,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73038] = 5, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(787), 1, - anon_sym_EQ, + sym_type_conversion, + [73374] = 8, + ACTIONS(2327), 1, + anon_sym_DOT, + ACTIONS(2329), 1, + anon_sym_LPAREN, + ACTIONS(2337), 1, + anon_sym_STAR_STAR, + ACTIONS(2339), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2417), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2415), 25, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, @@ -87286,8 +88045,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87306,83 +88063,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73087] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2485), 1, - anon_sym_EQ, + [73429] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1683), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1677), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1673), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73136] = 3, + [73478] = 10, + ACTIONS(2327), 1, + anon_sym_DOT, + ACTIONS(2329), 1, + anon_sym_LPAREN, + ACTIONS(2337), 1, + anon_sym_STAR_STAR, + ACTIONS(2339), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2331), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2341), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2415), 22, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -87392,30 +88156,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73181] = 3, + [73537] = 6, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(2503), 1, + anon_sym_LBRACK, + STATE(1941), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(259), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(257), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87434,33 +88201,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73226] = 3, + [73588] = 6, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, + ACTIONS(2503), 1, + anon_sym_LBRACK, + STATE(1995), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2448), 5, - anon_sym_as, + ACTIONS(1558), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2446), 31, - sym_string_start, + ACTIONS(1553), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87476,75 +88246,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73271] = 3, + [73639] = 14, + ACTIONS(2327), 1, + anon_sym_DOT, + ACTIONS(2329), 1, + anon_sym_LPAREN, + ACTIONS(2337), 1, + anon_sym_STAR_STAR, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2347), 1, + anon_sym_AMP, + ACTIONS(2349), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, + ACTIONS(2331), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(2333), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2343), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2341), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2415), 16, + 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_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [73706] = 13, + ACTIONS(2327), 1, + anon_sym_DOT, + ACTIONS(2329), 1, + anon_sym_LPAREN, + ACTIONS(2337), 1, anon_sym_STAR_STAR, + ACTIONS(2339), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2349), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2331), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2333), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2343), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2341), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2415), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73316] = 6, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, - anon_sym_COLON, + [73771] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(2507), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(2505), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87563,62 +88393,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73367] = 6, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, - anon_sym_COLON, + [73816] = 12, + ACTIONS(2327), 1, + anon_sym_DOT, + ACTIONS(2329), 1, + anon_sym_LPAREN, + ACTIONS(2337), 1, + anon_sym_STAR_STAR, + ACTIONS(2339), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(2331), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2333), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2343), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2341), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2415), 18, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73418] = 3, + [73879] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2511), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 31, + ACTIONS(2509), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87650,30 +88486,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73463] = 3, + [73924] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(2479), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2477), 31, + sym_string_start, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87692,17 +88528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73508] = 3, + [73969] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 5, + ACTIONS(2515), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 31, + ACTIONS(2513), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -87734,19 +88570,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73553] = 3, + [74014] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2455), 5, + ACTIONS(2519), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2453), 31, - sym_string_start, + ACTIONS(2517), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -87759,7 +88597,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87775,36 +88612,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73598] = 8, - ACTIONS(2361), 1, - anon_sym_DOT, - ACTIONS(2363), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - ACTIONS(2373), 1, - anon_sym_LBRACK, + [74059] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1289), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 5, + ACTIONS(2523), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 25, - anon_sym_RPAREN, + ACTIONS(2521), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87823,35 +88654,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73653] = 8, - ACTIONS(2361), 1, - anon_sym_DOT, - ACTIONS(2363), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - ACTIONS(2373), 1, - anon_sym_LBRACK, + [74104] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1289), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 5, + ACTIONS(2470), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2442), 25, - anon_sym_RPAREN, + ACTIONS(2468), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87870,19 +88696,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73708] = 3, + [74149] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2448), 5, + ACTIONS(2527), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2446), 31, - sym_string_start, + ACTIONS(2525), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -87895,7 +88723,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -87911,36 +88738,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [73753] = 8, - ACTIONS(2361), 1, - anon_sym_DOT, - ACTIONS(2363), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - ACTIONS(2373), 1, - anon_sym_LBRACK, + [74194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1289), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2395), 5, + ACTIONS(2531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 25, - anon_sym_RPAREN, + ACTIONS(2529), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -87959,47 +88780,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73808] = 11, - ACTIONS(2361), 1, - anon_sym_DOT, - ACTIONS(2363), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - ACTIONS(2373), 1, - anon_sym_LBRACK, + [74239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 2, + ACTIONS(2535), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2377), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1289), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2375), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 20, - anon_sym_RPAREN, + ACTIONS(2533), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88009,89 +88822,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73869] = 15, - ACTIONS(2361), 1, - anon_sym_DOT, - ACTIONS(2363), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - ACTIONS(2373), 1, - anon_sym_LBRACK, - ACTIONS(2379), 1, - anon_sym_PIPE, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_CARET, + [74284] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 2, + ACTIONS(2479), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2367), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2377), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1289), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2375), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2440), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2438), 15, - anon_sym_RPAREN, + ACTIONS(2477), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73938] = 8, - ACTIONS(2361), 1, - anon_sym_DOT, - ACTIONS(2363), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - ACTIONS(2373), 1, - anon_sym_LBRACK, + [74329] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1289), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2395), 5, + ACTIONS(259), 6, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 25, - anon_sym_RPAREN, + ACTIONS(257), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88110,46 +88907,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [73993] = 10, - ACTIONS(2361), 1, - anon_sym_DOT, - ACTIONS(2363), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - ACTIONS(2373), 1, - anon_sym_LBRACK, + [74376] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 2, + ACTIONS(259), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - STATE(1289), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2375), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 22, - anon_sym_RPAREN, + ACTIONS(257), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88159,178 +88950,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74052] = 14, - ACTIONS(2361), 1, - anon_sym_DOT, - ACTIONS(2363), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - ACTIONS(2373), 1, - anon_sym_LBRACK, - ACTIONS(2381), 1, - anon_sym_AMP, - ACTIONS(2383), 1, - anon_sym_CARET, + [74423] = 4, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 2, + ACTIONS(1558), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(2367), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2377), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1289), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2375), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 16, - anon_sym_RPAREN, + ACTIONS(1553), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74119] = 13, - ACTIONS(2361), 1, - anon_sym_DOT, - ACTIONS(2363), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - ACTIONS(2373), 1, - anon_sym_LBRACK, - ACTIONS(2383), 1, - anon_sym_CARET, + [74470] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 2, + ACTIONS(2470), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2367), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2377), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1289), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2375), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 17, - anon_sym_RPAREN, + ACTIONS(2468), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74184] = 12, - ACTIONS(2361), 1, - anon_sym_DOT, - ACTIONS(2363), 1, - anon_sym_LPAREN, - ACTIONS(2371), 1, - anon_sym_STAR_STAR, - ACTIONS(2373), 1, - anon_sym_LBRACK, + [74515] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2365), 2, + ACTIONS(2539), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2367), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2377), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1289), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2375), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 18, - anon_sym_RPAREN, + ACTIONS(2537), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74247] = 5, - ACTIONS(775), 1, - sym_string_start, + [74560] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1086), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(1570), 4, + ACTIONS(1558), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1553), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -88340,7 +89101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88359,33 +89119,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74296] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [74605] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(2543), 5, anon_sym_STAR, - anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(2541), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88401,24 +89161,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [74343] = 4, - ACTIONS(280), 1, + [74650] = 5, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(272), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(259), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(257), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -88445,23 +89205,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [74390] = 4, - ACTIONS(1572), 1, + [74699] = 5, + ACTIONS(264), 1, + anon_sym_COMMA, + ACTIONS(272), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(259), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(257), 28, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -88488,38 +89249,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [74437] = 8, - ACTIONS(2298), 1, + [74748] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(645), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 14, anon_sym_DOT, - ACTIONS(2300), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + anon_sym_GT_GT, anon_sym_STAR_STAR, - ACTIONS(2310), 1, anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [74797] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1367), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2395), 5, - anon_sym_as, + ACTIONS(2479), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 25, - anon_sym_RPAREN, + ACTIONS(2477), 31, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88535,22 +89334,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74492] = 5, - ACTIONS(775), 1, - sym_string_start, + sym_type_conversion, + [74842] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1088), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2391), 4, + ACTIONS(2547), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2389), 29, + ACTIONS(2545), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -88560,7 +89359,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -88579,47 +89377,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74541] = 11, - ACTIONS(2298), 1, + [74887] = 8, + ACTIONS(2383), 1, anon_sym_DOT, - ACTIONS(2300), 1, + ACTIONS(2385), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2393), 1, anon_sym_STAR_STAR, - ACTIONS(2310), 1, + ACTIONS(2395), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2302), 2, + STATE(1310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2314), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2419), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1367), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2312), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_as, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [74942] = 8, + ACTIONS(2383), 1, + anon_sym_DOT, + ACTIONS(2385), 1, + anon_sym_LPAREN, + ACTIONS(2393), 1, + anon_sym_STAR_STAR, + ACTIONS(2395), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2425), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 20, + ACTIONS(2423), 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_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -88629,21 +89471,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74602] = 5, - ACTIONS(2503), 1, - sym_string_start, + [74997] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1088), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(2328), 4, + ACTIONS(645), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [75046] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2470), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2326), 29, + ACTIONS(2468), 31, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -88654,10 +89537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -88673,50 +89556,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74651] = 15, - ACTIONS(2298), 1, + sym_type_conversion, + [75091] = 8, + ACTIONS(2383), 1, anon_sym_DOT, - ACTIONS(2300), 1, + ACTIONS(2385), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2393), 1, anon_sym_STAR_STAR, - ACTIONS(2310), 1, + ACTIONS(2395), 1, anon_sym_LBRACK, - ACTIONS(2316), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2417), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2415), 25, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, - ACTIONS(2318), 1, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, - ACTIONS(2320), 1, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [75146] = 11, + ACTIONS(2383), 1, + anon_sym_DOT, + ACTIONS(2385), 1, + anon_sym_LPAREN, + ACTIONS(2393), 1, + anon_sym_STAR_STAR, + ACTIONS(2395), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2302), 2, + ACTIONS(2387), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2399), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1310), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2397), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2417), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2415), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [75207] = 15, + ACTIONS(2383), 1, + anon_sym_DOT, + ACTIONS(2385), 1, + anon_sym_LPAREN, + ACTIONS(2393), 1, + anon_sym_STAR_STAR, + ACTIONS(2395), 1, + anon_sym_LBRACK, + ACTIONS(2401), 1, + anon_sym_PIPE, + ACTIONS(2403), 1, + anon_sym_AMP, + ACTIONS(2405), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2387), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2304), 2, + ACTIONS(2389), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2314), 2, + ACTIONS(2399), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1367), 2, + STATE(1310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2312), 3, + ACTIONS(2397), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2440), 3, - anon_sym_as, + ACTIONS(2466), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2438), 15, + ACTIONS(2464), 15, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_not, anon_sym_and, @@ -88727,34 +89708,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74720] = 8, - ACTIONS(2298), 1, + [75276] = 8, + ACTIONS(2383), 1, anon_sym_DOT, - ACTIONS(2300), 1, + ACTIONS(2385), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2393), 1, anon_sym_STAR_STAR, - ACTIONS(2310), 1, + ACTIONS(2395), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1367), 2, + STATE(1310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2395), 5, - anon_sym_as, + ACTIONS(2417), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 25, + ACTIONS(2415), 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_AT, anon_sym_DASH, @@ -88774,39 +89755,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74775] = 10, - ACTIONS(2298), 1, + [75331] = 10, + ACTIONS(2383), 1, anon_sym_DOT, - ACTIONS(2300), 1, + ACTIONS(2385), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2393), 1, anon_sym_STAR_STAR, - ACTIONS(2310), 1, + ACTIONS(2395), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2302), 2, + ACTIONS(2387), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(1367), 2, + STATE(1310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2312), 3, + ACTIONS(2397), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_as, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 22, + ACTIONS(2415), 22, 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_DASH, anon_sym_PIPE, @@ -88823,48 +89804,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74834] = 14, - ACTIONS(2298), 1, + [75390] = 14, + ACTIONS(2383), 1, anon_sym_DOT, - ACTIONS(2300), 1, + ACTIONS(2385), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2393), 1, anon_sym_STAR_STAR, - ACTIONS(2310), 1, + ACTIONS(2395), 1, anon_sym_LBRACK, - ACTIONS(2318), 1, + ACTIONS(2403), 1, anon_sym_AMP, - ACTIONS(2320), 1, + ACTIONS(2405), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2302), 2, + ACTIONS(2387), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2304), 2, + ACTIONS(2389), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2314), 2, + ACTIONS(2399), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1367), 2, + STATE(1310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2312), 3, + ACTIONS(2397), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_as, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 16, + ACTIONS(2415), 16, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_not, @@ -88876,46 +89857,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74901] = 13, - ACTIONS(2298), 1, + [75457] = 13, + ACTIONS(2383), 1, anon_sym_DOT, - ACTIONS(2300), 1, + ACTIONS(2385), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2393), 1, anon_sym_STAR_STAR, - ACTIONS(2310), 1, + ACTIONS(2395), 1, anon_sym_LBRACK, - ACTIONS(2320), 1, + ACTIONS(2405), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2302), 2, + ACTIONS(2387), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2304), 2, + ACTIONS(2389), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2314), 2, + ACTIONS(2399), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1367), 2, + STATE(1310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2312), 3, + ACTIONS(2397), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_as, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 17, + ACTIONS(2415), 17, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_not, @@ -88928,44 +89909,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [74966] = 12, - ACTIONS(2298), 1, + [75522] = 12, + ACTIONS(2383), 1, anon_sym_DOT, - ACTIONS(2300), 1, + ACTIONS(2385), 1, anon_sym_LPAREN, - ACTIONS(2308), 1, + ACTIONS(2393), 1, anon_sym_STAR_STAR, - ACTIONS(2310), 1, + ACTIONS(2395), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2302), 2, + ACTIONS(2387), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2304), 2, + ACTIONS(2389), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2314), 2, + ACTIONS(2399), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1367), 2, + STATE(1310), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2312), 3, + ACTIONS(2397), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_as, + ACTIONS(2417), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 18, + ACTIONS(2415), 18, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_PIPE, anon_sym_not, @@ -88979,17 +89960,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75029] = 3, + [75585] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(259), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 31, + ACTIONS(257), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89021,21 +90002,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75074] = 3, + [75630] = 5, + ACTIONS(775), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + STATE(1115), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(1558), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1553), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -89045,6 +90027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89063,33 +90046,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75119] = 3, + [75679] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(259), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(257), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89105,33 +90088,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75164] = 3, + sym_type_conversion, + [75726] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, + ACTIONS(259), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(257), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89147,33 +90131,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75209] = 3, + sym_type_conversion, + [75773] = 4, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1558), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(1553), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89189,21 +90174,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75254] = 3, + sym_type_conversion, + [75820] = 5, + ACTIONS(775), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + STATE(1116), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2413), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2411), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -89213,6 +90200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89231,21 +90219,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75299] = 3, + [75869] = 5, + ACTIONS(2549), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + STATE(1116), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(2322), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2320), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, @@ -89255,6 +90244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89273,17 +90263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75344] = 3, + [75918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(2554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 31, + ACTIONS(2552), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89315,17 +90305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75389] = 3, + [75963] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(2558), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 31, + ACTIONS(2556), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89357,17 +90347,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75434] = 3, + [76008] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(2562), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 31, + ACTIONS(2560), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89399,17 +90389,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75479] = 3, + [76053] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(2566), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 31, + ACTIONS(2564), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -89441,27 +90431,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75524] = 3, + [76098] = 5, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(787), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(259), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(257), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -89483,27 +90475,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75569] = 3, + [76147] = 5, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(787), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(259), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(257), 29, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -89525,34 +90519,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75614] = 5, - ACTIONS(272), 1, - anon_sym_COMMA, - ACTIONS(280), 1, + [76196] = 5, + ACTIONS(1560), 1, anon_sym_COLON_EQ, + ACTIONS(2568), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(1558), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 28, + ACTIONS(1553), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89568,28 +90563,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75663] = 5, + [76245] = 4, ACTIONS(272), 1, - anon_sym_COMMA, - ACTIONS(280), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(259), 6, + anon_sym_as, anon_sym_STAR, anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 28, + ACTIONS(257), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -89612,123 +90606,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [75712] = 5, + [76292] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(259), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(257), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75761] = 5, + [76339] = 4, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1558), 6, + anon_sym_as, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1553), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75810] = 4, - ACTIONS(280), 1, + [76386] = 7, + ACTIONS(1560), 1, anon_sym_COLON_EQ, + ACTIONS(1685), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(1673), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1675), 4, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1680), 5, anon_sym_as, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, - anon_sym_DOT, + ACTIONS(1677), 23, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89744,34 +90738,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75857] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [76439] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, - anon_sym_as, + ACTIONS(1617), 5, anon_sym_STAR, - anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(1612), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89787,34 +90780,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75904] = 4, - ACTIONS(1572), 1, + [76484] = 6, + ACTIONS(272), 1, anon_sym_COLON_EQ, + ACTIONS(2570), 1, + anon_sym_LBRACK, + STATE(1987), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, - anon_sym_as, + ACTIONS(259), 6, anon_sym_STAR, anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(257), 27, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -89830,35 +90825,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [75951] = 8, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2345), 1, + [76535] = 6, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, + ACTIONS(2570), 1, anon_sym_LBRACK, + STATE(1988), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 5, + ACTIONS(1558), 6, anon_sym_STAR, + anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 25, - anon_sym_COMMA, + ACTIONS(1553), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89877,34 +90870,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76006] = 8, - ACTIONS(2333), 1, + [76586] = 8, + ACTIONS(2327), 1, anon_sym_DOT, - ACTIONS(2335), 1, + ACTIONS(2329), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(2337), 1, anon_sym_STAR_STAR, - ACTIONS(2345), 1, + ACTIONS(2339), 1, anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1386), 2, + STATE(1407), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2444), 5, + ACTIONS(2421), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2442), 25, + ACTIONS(2419), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_AT, anon_sym_DASH, @@ -89924,30 +90917,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76061] = 3, + [76641] = 8, + ACTIONS(2327), 1, + anon_sym_DOT, + ACTIONS(2329), 1, + anon_sym_LPAREN, + ACTIONS(2337), 1, + anon_sym_STAR_STAR, + ACTIONS(2339), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + STATE(1407), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2425), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_LPAREN, + ACTIONS(2423), 25, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -89966,36 +90964,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76106] = 6, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, - anon_sym_COLON, + [76696] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(2574), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(2572), 31, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90011,36 +91006,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76157] = 6, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(650), 1, - anon_sym_COLON, + [76741] = 8, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2419), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90056,24 +91053,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76208] = 6, - ACTIONS(1572), 1, + [76796] = 6, + ACTIONS(272), 1, anon_sym_COLON_EQ, - ACTIONS(1617), 1, + ACTIONS(650), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 2, + ACTIONS(643), 2, anon_sym_async, anon_sym_for, - ACTIONS(1614), 5, + ACTIONS(645), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 27, + ACTIONS(686), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90082,10 +91079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90101,30 +91098,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76259] = 3, + [76847] = 6, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(650), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(643), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(645), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(686), 27, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90143,17 +91143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76304] = 3, + [76898] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(1628), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 31, + ACTIONS(1623), 31, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -90185,35 +91185,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76349] = 8, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2345), 1, - anon_sym_LBRACK, + [76943] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2395), 5, + ACTIONS(1639), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 25, + ACTIONS(1634), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -90232,47 +91227,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76404] = 11, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2345), 1, - anon_sym_LBRACK, + [76988] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(259), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 20, + ACTIONS(257), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90282,92 +91269,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76465] = 15, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2345), 1, - anon_sym_LBRACK, - ACTIONS(2351), 1, - anon_sym_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_CARET, + [77033] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(1651), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2440), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2438), 15, + ACTIONS(1649), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76534] = 8, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2345), 1, - anon_sym_LBRACK, + [77078] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2395), 5, + ACTIONS(1603), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 25, + ACTIONS(1601), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90383,46 +91351,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76589] = 10, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2345), 1, - anon_sym_LBRACK, + sym_type_conversion, + [77122] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(259), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 22, + ACTIONS(257), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -90432,189 +91393,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76648] = 14, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2345), 1, - anon_sym_LBRACK, - ACTIONS(2353), 1, - anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_CARET, + [77166] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(1558), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 16, + ACTIONS(1553), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76715] = 13, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2345), 1, - anon_sym_LBRACK, - ACTIONS(2355), 1, - anon_sym_CARET, + [77210] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(2574), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 17, + ACTIONS(2572), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76780] = 12, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2345), 1, - anon_sym_LBRACK, + [77254] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(2519), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2395), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 18, + ACTIONS(2517), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76843] = 3, + [77298] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 5, + ACTIONS(2523), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1714), 31, - sym__newline, - anon_sym_SEMI, + ACTIONS(2521), 30, anon_sym_DOT, - anon_sym_from, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90630,69 +91557,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76888] = 14, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, - ACTIONS(2427), 1, - anon_sym_AMP, - ACTIONS(2429), 1, - anon_sym_CARET, + [77342] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(2489), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2413), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2423), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1417), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2393), 16, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2487), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76954] = 3, + [77386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(2527), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 30, + ACTIONS(2525), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90704,10 +91620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90723,24 +91639,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [76998] = 3, + [77430] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(2531), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 30, + ACTIONS(2529), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90763,25 +91680,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77042] = 3, + [77474] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(2535), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 30, + ACTIONS(2533), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -90804,32 +91721,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77086] = 3, + [77518] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(1692), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 30, + ACTIONS(1690), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90845,18 +91762,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77130] = 3, + [77562] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2493), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 30, + ACTIONS(2491), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90868,10 +91784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90887,17 +91803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77174] = 3, + [77606] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2497), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, + ACTIONS(2495), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -90909,10 +91825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90928,26 +91844,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77218] = 5, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [77650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(272), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(267), 5, + ACTIONS(2501), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 27, + ACTIONS(2499), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -90956,6 +91869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -90971,17 +91885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77266] = 3, + [77694] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1663), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 30, + ACTIONS(1661), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91012,32 +91926,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77310] = 6, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(1579), 1, - anon_sym_LBRACK, - STATE(2081), 1, - sym_type_parameter, + [77738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(1603), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 26, + ACTIONS(1601), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91056,17 +91967,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77360] = 3, + [77782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(1603), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 30, + ACTIONS(1601), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91097,35 +92008,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77404] = 6, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(1579), 1, - anon_sym_LBRACK, - STATE(2082), 1, - sym_type_parameter, + [77826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2539), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 26, + ACTIONS(2537), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91141,24 +92049,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77454] = 3, + [77870] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2547), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(2545), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91181,18 +92090,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77498] = 3, + [77914] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(1621), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 30, + ACTIONS(1619), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91223,17 +92131,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77542] = 3, + [77958] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(1621), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 30, + ACTIONS(1619), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91264,17 +92172,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77586] = 3, + [78002] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, + ACTIONS(1558), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 30, + ACTIONS(1553), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91305,31 +92213,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77630] = 3, + [78046] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(2511), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 30, + ACTIONS(2509), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91345,33 +92254,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77674] = 3, + [78090] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(1673), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1680), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 30, + ACTIONS(1677), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91387,17 +92296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77718] = 3, + [78136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 5, + ACTIONS(1617), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 30, + ACTIONS(1612), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91428,24 +92337,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77762] = 3, + [78180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(1639), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 30, + ACTIONS(1634), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -91468,18 +92378,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77806] = 3, + [78224] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2470), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 30, + ACTIONS(2468), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91487,13 +92397,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91509,32 +92419,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77850] = 3, + [78268] = 5, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(643), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(645), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, + ACTIONS(686), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91550,18 +92462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [77894] = 3, + [78316] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(259), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 30, + ACTIONS(257), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91592,32 +92503,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [77938] = 3, + [78360] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, - anon_sym_as, + ACTIONS(259), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(257), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91633,32 +92543,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [77982] = 3, + sym_type_conversion, + [78404] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2448), 5, - anon_sym_as, + ACTIONS(2511), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2446), 30, - sym_string_start, + ACTIONS(2509), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91674,19 +92584,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78026] = 3, + sym_type_conversion, + [78448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1621), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(1619), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -91696,7 +92608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91715,34 +92626,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78070] = 5, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [78492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(272), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(267), 5, - anon_sym_as, + ACTIONS(2543), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 27, + ACTIONS(2541), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91758,31 +92666,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78118] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [78536] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1614), 5, + ACTIONS(1621), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 27, + ACTIONS(1619), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -91801,31 +92708,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78166] = 3, + [78580] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(2543), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 30, + ACTIONS(2541), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91841,18 +92749,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78210] = 3, + [78624] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(2507), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 30, + ACTIONS(2505), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91883,17 +92790,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78254] = 3, + [78668] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(2515), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 30, + ACTIONS(2513), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -91924,31 +92831,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78298] = 3, + [78712] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(1628), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(1623), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -91964,32 +92872,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78342] = 3, + [78756] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1639), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(1634), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92005,18 +92913,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78386] = 3, + [78800] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2552), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92047,17 +92954,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78430] = 3, + [78844] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2558), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2556), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92088,17 +92995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78474] = 3, + [78888] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2562), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 30, + ACTIONS(2560), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92129,31 +93036,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78518] = 3, + [78932] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(2507), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 30, + ACTIONS(2505), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92169,18 +93077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78562] = 3, + [78976] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, + ACTIONS(2566), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 30, + ACTIONS(2564), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92211,29 +93118,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [78606] = 3, + [79020] = 5, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(264), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(259), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(257), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -92252,31 +93161,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78650] = 3, + [79068] = 5, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(264), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(259), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 30, + ACTIONS(257), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92292,32 +93204,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78694] = 3, + [79116] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(2515), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 30, + ACTIONS(2513), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92333,18 +93245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [78738] = 3, + [79160] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2554), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2552), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92375,32 +93286,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78782] = 3, + [79204] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, - anon_sym_as, + ACTIONS(2574), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 30, + ACTIONS(2572), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92416,32 +93326,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78826] = 3, + sym_type_conversion, + [79248] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, - anon_sym_as, + ACTIONS(2519), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 30, + ACTIONS(2517), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92457,32 +93367,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78870] = 3, + sym_type_conversion, + [79292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, - anon_sym_as, + ACTIONS(2523), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 30, + ACTIONS(2521), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92498,32 +93408,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78914] = 3, + sym_type_conversion, + [79336] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, - anon_sym_as, + ACTIONS(2489), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 30, + ACTIONS(2487), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92539,32 +93449,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [78958] = 3, + sym_type_conversion, + [79380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, - anon_sym_as, + ACTIONS(2527), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 30, + ACTIONS(2525), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92580,17 +93490,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79002] = 3, + sym_type_conversion, + [79424] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(2531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 30, + ACTIONS(2529), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -92621,25 +93532,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79046] = 3, + [79468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2535), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(2533), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -92662,21 +93572,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79090] = 4, - ACTIONS(1639), 1, - anon_sym_COMMA, + sym_type_conversion, + [79512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2493), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(2491), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -92704,33 +93614,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79136] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [79556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, - anon_sym_as, + ACTIONS(2497), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(2495), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92746,21 +93654,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79182] = 4, - ACTIONS(1567), 1, - anon_sym_COMMA, + sym_type_conversion, + [79600] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2501), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(2499), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -92788,23 +93696,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79228] = 4, - ACTIONS(280), 1, + [79644] = 5, + ACTIONS(1560), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(1555), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1558), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(1553), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -92830,21 +93739,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79274] = 4, - ACTIONS(1646), 1, - anon_sym_COMMA, + [79692] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(2539), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 29, + ACTIONS(2537), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, @@ -92872,42 +93780,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79320] = 5, + [79736] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2547), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(2545), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -92915,74 +93821,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79368] = 5, + [79780] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2479), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(2477), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79416] = 3, + [79824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 5, + ACTIONS(2558), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1714), 30, + ACTIONS(2556), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -92998,32 +93903,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79460] = 3, + [79868] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 5, + ACTIONS(2562), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1706), 30, + ACTIONS(2560), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93039,32 +93944,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79504] = 3, + [79912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, + ACTIONS(2566), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 30, + ACTIONS(2564), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93080,32 +93985,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79548] = 3, + [79956] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, + ACTIONS(1651), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 30, + ACTIONS(1649), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93121,32 +94026,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79592] = 3, + [80000] = 5, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(643), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(645), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(686), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93162,32 +94069,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79636] = 3, + [80048] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2574), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(2572), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93203,27 +94110,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79680] = 4, + [80092] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1614), 5, + ACTIONS(2519), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 27, + ACTIONS(2517), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93246,29 +94151,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79726] = 3, + [80136] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2455), 5, + ACTIONS(2523), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2453), 30, - sym_string_start, + ACTIONS(2521), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93287,42 +94192,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79770] = 5, + [80180] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + ACTIONS(2489), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1617), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 14, + ACTIONS(2487), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1607), 16, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [80224] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1651), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1649), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -93330,31 +94274,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [79818] = 3, + [80268] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2527), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 30, + ACTIONS(2525), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93370,31 +94315,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [79862] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [80312] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(2531), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 28, + ACTIONS(2529), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93413,30 +94356,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79908] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [80356] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(2535), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 28, + ACTIONS(2533), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93455,30 +94397,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [79954] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [80400] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(2493), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(2491), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93497,33 +94438,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80000] = 8, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + [80444] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1417), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2399), 4, + ACTIONS(2497), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2397), 25, + ACTIONS(2495), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -93543,33 +94479,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80054] = 8, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + [80488] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1417), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2444), 4, + ACTIONS(2501), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2442), 25, + ACTIONS(2499), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, @@ -93589,20 +94520,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80108] = 3, + [80532] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(2539), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 30, + ACTIONS(2537), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -93612,6 +94542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93630,31 +94561,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80152] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [80576] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1570), 5, + ACTIONS(2547), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2545), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -93673,25 +94602,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80200] = 4, - ACTIONS(1657), 1, - anon_sym_COMMA, + [80620] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 5, + ACTIONS(1558), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 29, + ACTIONS(1553), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_as, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -93714,22 +94643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80246] = 3, + [80664] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2448), 5, + ACTIONS(1692), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2446), 30, - sym_string_start, + ACTIONS(1690), 30, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -93741,6 +94667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93756,17 +94683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80290] = 3, + sym_type_conversion, + [80708] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(1663), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 30, + ACTIONS(1661), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93797,31 +94725,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_GT, sym_type_conversion, - [80334] = 3, + [80752] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 5, + ACTIONS(1603), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 30, + ACTIONS(1601), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93837,18 +94766,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - sym_type_conversion, - [80378] = 3, + [80796] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(259), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 30, + ACTIONS(257), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -93860,10 +94788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93879,37 +94807,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80422] = 8, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + [80840] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1417), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2395), 4, + ACTIONS(1621), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 25, + ACTIONS(1619), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -93925,46 +94847,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80476] = 11, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + sym_type_conversion, + [80884] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(1621), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2423), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1417), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2393), 20, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -93974,90 +94888,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80536] = 15, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, - ACTIONS(2425), 1, - anon_sym_PIPE, - ACTIONS(2427), 1, - anon_sym_AMP, - ACTIONS(2429), 1, - anon_sym_CARET, + sym_type_conversion, + [80928] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2411), 2, + ACTIONS(1617), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2413), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2423), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2440), 2, anon_sym_LT, anon_sym_GT, - STATE(1417), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2438), 15, + ACTIONS(1612), 30, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80604] = 8, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + [80972] = 4, + ACTIONS(1614), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1417), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2395), 4, + ACTIONS(1617), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2393), 25, - anon_sym_COMMA, + ACTIONS(1612), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94073,45 +94971,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80658] = 10, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + sym_type_conversion, + [81018] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(2479), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - STATE(1417), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2393), 22, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2477), 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_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94121,73 +95013,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80716] = 3, + [81062] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, - anon_sym_as, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1683), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 30, + ACTIONS(1677), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1673), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80760] = 3, + sym_type_conversion, + [81110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, - anon_sym_as, + ACTIONS(1617), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 30, + ACTIONS(1612), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94203,73 +95096,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80804] = 12, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2417), 1, - anon_sym_STAR_STAR, - ACTIONS(2419), 1, - anon_sym_LBRACK, + sym_type_conversion, + [81154] = 4, + ACTIONS(1555), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2395), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(1558), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2413), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2423), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1417), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - ACTIONS(2393), 18, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1553), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80866] = 3, + sym_type_conversion, + [81200] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(259), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 30, + ACTIONS(257), 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, @@ -94278,7 +95166,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -94294,25 +95181,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80910] = 3, + [81246] = 4, + ACTIONS(1625), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, - anon_sym_as, + ACTIONS(1628), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 30, + ACTIONS(1623), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94335,50 +95222,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [80954] = 5, + sym_type_conversion, + [81292] = 8, + ACTIONS(2433), 1, + anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_STAR_STAR, + ACTIONS(2445), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + STATE(1434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2421), 4, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2419), 25, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [81346] = 8, + ACTIONS(2433), 1, + anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_STAR_STAR, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2425), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2423), 25, anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81002] = 5, + [81400] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -94386,7 +95323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, ACTIONS(650), 3, - anon_sym_as, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, ACTIONS(686), 14, @@ -94406,12 +95343,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, ACTIONS(643), 16, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, - anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_not, anon_sym_and, anon_sym_or, @@ -94421,26 +95357,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81050] = 3, + sym_type_conversion, + [81448] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2455), 5, - anon_sym_as, + ACTIONS(2470), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2453), 30, + ACTIONS(2468), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -94462,117 +95399,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81094] = 5, + [81492] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1628), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1623), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81142] = 5, + sym_type_conversion, + [81536] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1639), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1634), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81190] = 5, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + sym_type_conversion, + [81580] = 8, + ACTIONS(2433), 1, + anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_STAR_STAR, + ACTIONS(2445), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(272), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(267), 5, - anon_sym_as, + STATE(1434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2417), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2415), 25, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94591,40 +95527,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81238] = 5, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [81634] = 11, + ACTIONS(2433), 1, + anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_STAR_STAR, + ACTIONS(2445), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(272), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(267), 5, - anon_sym_as, - anon_sym_STAR, - anon_sym_SLASH, + ACTIONS(2417), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 27, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2449), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2415), 20, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94634,30 +95576,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81286] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [81694] = 15, + ACTIONS(2433), 1, + anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_STAR_STAR, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2451), 1, + anon_sym_PIPE, + ACTIONS(2453), 1, + anon_sym_AMP, + ACTIONS(2455), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2437), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2439), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2449), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2466), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + STATE(1434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2464), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [81762] = 8, + ACTIONS(2433), 1, anon_sym_DOT, + ACTIONS(2435), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(2443), 1, + anon_sym_STAR_STAR, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2417), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2415), 25, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -94676,39 +95675,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81332] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [81816] = 10, + ACTIONS(2433), 1, + anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_STAR_STAR, + ACTIONS(2445), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_SLASH, + ACTIONS(2417), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 28, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2437), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(1434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2415), 22, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_else, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_RBRACK, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, @@ -94718,61 +95723,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81378] = 5, + [81874] = 14, + ACTIONS(2433), 1, + anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_STAR_STAR, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(2453), 1, + anon_sym_AMP, + ACTIONS(2455), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + ACTIONS(2417), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2437), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1617), 3, + ACTIONS(2439), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2449), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2415), 16, + anon_sym_COMMA, anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 14, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [81940] = 13, + ACTIONS(2433), 1, anon_sym_DOT, + ACTIONS(2435), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2443), 1, anon_sym_STAR_STAR, + ACTIONS(2445), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(2455), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2417), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2439), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2449), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2447), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + ACTIONS(2415), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_AMP, - anon_sym_CARET, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [82004] = 12, + ACTIONS(2433), 1, + anon_sym_DOT, + ACTIONS(2435), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_STAR_STAR, + ACTIONS(2445), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2417), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2437), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2439), 2, + anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(1607), 16, + ACTIONS(2449), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1434), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2447), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(2415), 18, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_AMP, + anon_sym_CARET, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81426] = 5, + [82066] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1617), 3, - anon_sym_as, + ACTIONS(650), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 14, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -94787,12 +95902,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1607), 16, + ACTIONS(643), 16, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_RBRACE, anon_sym_not, @@ -94804,282 +95918,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81474] = 3, + sym_type_conversion, + [82114] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 5, - anon_sym_as, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1714), 30, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81518] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [82162] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 6, + ACTIONS(645), 2, anon_sym_STAR, - anon_sym_COLON, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 28, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81564] = 3, + [82210] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, - anon_sym_as, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81608] = 5, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [82258] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81656] = 5, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [82306] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(643), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(645), 5, - anon_sym_as, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1683), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 27, + ACTIONS(1677), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1673), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81704] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [82354] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1614), 5, - anon_sym_as, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1683), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 27, + ACTIONS(1677), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1673), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81752] = 3, + [82402] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 5, + ACTIONS(1673), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1680), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1706), 30, + ACTIONS(1677), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95098,26 +96219,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81796] = 3, + [82448] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, - anon_sym_as, + ACTIONS(259), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 30, + ACTIONS(257), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95139,26 +96261,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81840] = 3, + [82494] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, - anon_sym_as, + ACTIONS(259), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 30, + ACTIONS(257), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95180,27 +96303,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81884] = 4, - ACTIONS(1572), 1, + [82540] = 4, + ACTIONS(1560), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 6, + ACTIONS(1558), 6, anon_sym_STAR, anon_sym_COLON, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1553), 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_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95222,29 +96345,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81930] = 3, + [82586] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(259), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 30, + ACTIONS(257), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95263,19 +96387,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [81974] = 3, + [82632] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, + ACTIONS(1692), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 30, + ACTIONS(1690), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -95288,7 +96413,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95304,23 +96428,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82018] = 3, + [82676] = 4, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(1558), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 30, + ACTIONS(1553), 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, @@ -95329,7 +96455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95345,25 +96470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82062] = 3, + [82722] = 4, + ACTIONS(1636), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, - anon_sym_as, + ACTIONS(1639), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 30, + ACTIONS(1634), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95386,17 +96511,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82106] = 3, + sym_type_conversion, + [82768] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(259), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 30, + ACTIONS(257), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95427,17 +96553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82150] = 3, + [82812] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(259), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 30, + ACTIONS(257), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95468,29 +96594,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82194] = 3, + [82856] = 6, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(2472), 1, + anon_sym_LBRACK, + STATE(2088), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, - anon_sym_as, + ACTIONS(259), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(257), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95509,29 +96638,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82238] = 3, + [82906] = 6, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, + ACTIONS(2472), 1, + anon_sym_LBRACK, + STATE(2089), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, - anon_sym_as, + ACTIONS(1558), 5, anon_sym_STAR, + anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1553), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95550,29 +96682,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82282] = 3, + [82956] = 6, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(1567), 1, + anon_sym_LBRACK, + STATE(2107), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, - anon_sym_as, + ACTIONS(259), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 30, + ACTIONS(257), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95591,32 +96726,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82326] = 3, + [83006] = 5, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1673), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1680), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 30, + ACTIONS(1677), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95632,29 +96769,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82370] = 3, + [83054] = 5, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(1555), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1558), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 30, + ACTIONS(1553), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95673,29 +96812,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82414] = 3, + [83102] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(2479), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 30, + ACTIONS(2477), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -95714,22 +96853,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82458] = 5, - ACTIONS(1572), 1, + [83146] = 5, + ACTIONS(272), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, + ACTIONS(264), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(1570), 5, + ACTIONS(259), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(257), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -95757,26 +96896,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82506] = 3, + [83194] = 5, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2455), 5, + ACTIONS(264), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(259), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2453), 30, - sym_string_start, + ACTIONS(257), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -95798,17 +96939,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82550] = 3, + [83242] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(2511), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 30, + ACTIONS(2509), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -95839,32 +96980,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82594] = 3, + [83286] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, - anon_sym_as, + ACTIONS(259), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 30, + ACTIONS(257), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95880,32 +97022,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82638] = 3, + [83332] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, - anon_sym_as, + ACTIONS(259), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 30, + ACTIONS(257), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95921,32 +97064,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82682] = 3, + [83378] = 4, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, - anon_sym_as, + ACTIONS(1558), 6, anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 30, + ACTIONS(1553), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -95962,17 +97106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82726] = 3, + [83424] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2543), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 30, + ACTIONS(2541), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96003,17 +97147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82770] = 3, + [83468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1628), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 30, + ACTIONS(1623), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96044,17 +97188,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82814] = 3, + [83512] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2507), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 30, + ACTIONS(2505), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96085,17 +97229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82858] = 3, + [83556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2515), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 30, + ACTIONS(2513), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96126,67 +97270,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [82902] = 6, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(2460), 1, - anon_sym_LBRACK, - STATE(2010), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(267), 5, - anon_sym_STAR, - anon_sym_COLON, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(265), 27, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [82952] = 6, - ACTIONS(1572), 1, + [83600] = 6, + ACTIONS(1560), 1, anon_sym_COLON_EQ, - ACTIONS(2460), 1, + ACTIONS(1567), 1, anon_sym_LBRACK, - STATE(2011), 1, + STATE(2109), 1, sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1558), 6, anon_sym_STAR, anon_sym_COLON, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(1553), 26, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96195,7 +97296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_in, anon_sym_STAR_STAR, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96214,17 +97314,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83002] = 3, + [83650] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 5, + ACTIONS(2554), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1714), 30, + ACTIONS(2552), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96236,10 +97336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96255,17 +97355,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83046] = 3, + [83694] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2558), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 30, + ACTIONS(2556), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96296,23 +97396,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83090] = 3, + [83738] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(2470), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 30, + ACTIONS(2468), 30, + sym_string_start, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, @@ -96321,7 +97422,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96337,32 +97437,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83134] = 3, + [83782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2448), 5, + ACTIONS(2562), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2446), 30, - sym_string_start, + ACTIONS(2560), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96378,17 +97478,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83178] = 3, + [83826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, + ACTIONS(1651), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 30, + ACTIONS(1649), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96400,10 +97500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96419,25 +97519,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83222] = 3, + [83870] = 5, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 5, + ACTIONS(1673), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1680), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1706), 30, + ACTIONS(1677), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -96460,17 +97562,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83266] = 3, + [83918] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, + ACTIONS(2566), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 30, + ACTIONS(2564), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -96482,10 +97584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96501,19 +97603,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83310] = 3, + [83962] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(1663), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 30, + ACTIONS(1661), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96526,7 +97629,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96542,19 +97644,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83354] = 3, + [84006] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 5, + ACTIONS(1603), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 30, + ACTIONS(1601), 30, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, @@ -96567,7 +97670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96583,32 +97685,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83398] = 3, + [84050] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, - anon_sym_as, + ACTIONS(1603), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 30, + ACTIONS(1601), 30, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96624,32 +97725,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83442] = 3, + sym_type_conversion, + [84094] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, - anon_sym_as, + ACTIONS(2489), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 30, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96665,23 +97766,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83486] = 3, + [84137] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(2558), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 30, + ACTIONS(2556), 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, @@ -96690,7 +97791,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96706,29 +97806,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83530] = 3, + [84180] = 5, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, + ACTIONS(2568), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, - anon_sym_as, + ACTIONS(1558), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1553), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96747,111 +97848,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83574] = 3, + [84227] = 7, + ACTIONS(1685), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, - anon_sym_as, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1683), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 30, + ACTIONS(1675), 5, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(1673), 12, + anon_sym_as, + 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_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83618] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1570), 5, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1565), 30, - anon_sym_DOT, + ACTIONS(1677), 12, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - sym_type_conversion, - [83662] = 3, + [84278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1628), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 30, + ACTIONS(1623), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96870,29 +97932,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83706] = 3, + [84321] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, - anon_sym_as, + ACTIONS(1558), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 30, + 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_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -96911,33 +97972,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83750] = 4, + [84364] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 3, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - ACTIONS(1614), 5, + ACTIONS(1639), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 27, + ACTIONS(1634), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -96953,26 +98012,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83796] = 3, + [84407] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, - anon_sym_as, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 30, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84454] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(645), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(686), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84501] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(259), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(257), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_RBRACK, @@ -96994,68 +98137,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83840] = 13, - ACTIONS(2407), 1, + [84546] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(259), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(257), 28, anon_sym_DOT, - ACTIONS(2409), 1, anon_sym_LPAREN, - ACTIONS(2417), 1, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - ACTIONS(2419), 1, anon_sym_LBRACK, - ACTIONS(2429), 1, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84591] = 4, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2395), 2, + ACTIONS(1558), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2411), 2, + ACTIONS(1553), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84636] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(259), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(2413), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(257), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2423), 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1417), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2421), 3, - anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - ACTIONS(2393), 17, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [84679] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(259), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(257), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_RBRACK, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83904] = 3, + [84722] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(1651), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(1649), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -97085,25 +98339,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83947] = 3, + [84765] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, - anon_sym_as, + ACTIONS(2511), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(2509), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97125,25 +98379,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [83990] = 3, + [84808] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, - anon_sym_as, + ACTIONS(2543), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2541), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97165,17 +98419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84033] = 3, + [84851] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2501), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 29, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97205,17 +98459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84076] = 3, + [84894] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2507), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(2505), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97245,25 +98499,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84119] = 3, + [84937] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, - anon_sym_as, + ACTIONS(2515), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(2513), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97285,17 +98539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84162] = 3, + [84980] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, + ACTIONS(2554), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 29, + ACTIONS(2552), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97325,17 +98579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84205] = 3, + [85023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(2558), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(2556), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97365,17 +98619,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84248] = 3, + [85066] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(2562), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(2560), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97405,25 +98659,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84291] = 3, + [85109] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 5, + ACTIONS(2574), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2572), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97445,25 +98699,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84334] = 3, + [85152] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2566), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 29, + ACTIONS(2564), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97485,25 +98739,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84377] = 3, + [85195] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(2566), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(2564), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97525,17 +98779,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84420] = 3, + [85238] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(2562), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(2560), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97565,25 +98819,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84463] = 3, + [85281] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 5, + ACTIONS(2566), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1706), 29, + ACTIONS(2564), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97605,25 +98859,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84506] = 3, + [85324] = 5, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(787), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, + ACTIONS(259), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 29, + ACTIONS(257), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97645,25 +98901,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84549] = 3, + [85371] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, + ACTIONS(2519), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 29, + ACTIONS(2517), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97685,25 +98941,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84592] = 3, + [85414] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2523), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(2521), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85457] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2489), 5, anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2487), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97725,25 +99021,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84635] = 3, + [85500] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1680), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1683), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1677), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1673), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [85547] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2574), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2572), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97765,25 +99103,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84678] = 3, + [85590] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2519), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2517), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97805,17 +99143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84721] = 3, + [85633] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(2523), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(2521), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97845,25 +99183,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84764] = 3, + [85676] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(2527), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 29, + ACTIONS(2525), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -97885,17 +99223,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84807] = 3, + [85719] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(2527), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 29, + ACTIONS(2525), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97925,17 +99263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84850] = 3, + [85762] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(2531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2529), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -97965,17 +99303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84893] = 3, + [85805] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(2535), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(2533), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98005,17 +99343,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84936] = 3, + [85848] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2493), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98045,17 +99383,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [84979] = 3, + [85891] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2497), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98085,17 +99423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85022] = 3, + [85934] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(2501), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 29, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98125,25 +99463,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85065] = 3, + [85977] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(2531), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 29, + ACTIONS(2529), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98165,25 +99503,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85108] = 3, + [86020] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, + ACTIONS(2543), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 29, + ACTIONS(2541), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98205,17 +99543,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85151] = 3, + [86063] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(1614), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1617), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1612), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2539), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 29, + ACTIONS(2537), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98245,17 +99624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85194] = 3, + [86151] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(2547), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 29, + ACTIONS(2545), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98285,17 +99664,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85237] = 3, + [86194] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1555), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1558), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1553), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86239] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, + ACTIONS(2574), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 29, + ACTIONS(2572), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98325,25 +99745,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85280] = 3, + [86282] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1625), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1628), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1623), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [86327] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(2507), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 29, + ACTIONS(2505), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98365,25 +99826,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85323] = 3, + [86370] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 5, + ACTIONS(2519), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 29, + ACTIONS(2517), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98405,25 +99866,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85366] = 3, + [86413] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, - anon_sym_as, + ACTIONS(1692), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 29, + ACTIONS(1690), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98445,25 +99906,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85409] = 3, + [86456] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, - anon_sym_as, + ACTIONS(1617), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(1612), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98485,25 +99946,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85452] = 3, + [86499] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, - anon_sym_as, + ACTIONS(2523), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(2521), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98525,27 +99986,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85495] = 5, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(787), 1, - anon_sym_EQ, + [86542] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 4, + ACTIONS(2489), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 28, + ACTIONS(2487), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98567,27 +100026,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85542] = 5, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(787), 1, - anon_sym_EQ, + [86585] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 4, + ACTIONS(1663), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 28, + ACTIONS(1661), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98609,27 +100066,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85589] = 5, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(2485), 1, - anon_sym_EQ, + [86628] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 4, + ACTIONS(1603), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1601), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98651,153 +100106,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85636] = 5, + [86671] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1603), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1601), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 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_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [85683] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [85730] = 7, - ACTIONS(1619), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1617), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1609), 5, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1607), 12, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1611), 12, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [85781] = 3, + [86714] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(2527), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 29, + ACTIONS(2525), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -98819,99 +100186,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85824] = 4, + [86757] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(265), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(267), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(308), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [85869] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(265), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(267), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(308), 18, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [85914] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(2539), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(2537), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -98941,17 +100226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [85957] = 3, + [86800] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, + ACTIONS(2531), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 29, + ACTIONS(2529), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -98981,57 +100266,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86000] = 3, + [86843] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 5, + ACTIONS(645), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1714), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86043] = 3, + [86890] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 5, + ACTIONS(1651), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1706), 29, + ACTIONS(1649), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99061,65 +100348,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86086] = 3, + [86933] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, + ACTIONS(645), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86129] = 3, + [86980] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 5, + ACTIONS(1621), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 29, + ACTIONS(1619), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99141,25 +100430,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86172] = 3, + [87023] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(1621), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(1619), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99181,25 +100470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86215] = 3, + [87066] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 5, + ACTIONS(2535), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2533), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99221,19 +100510,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86258] = 3, + [87109] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2455), 4, + ACTIONS(257), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(259), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(300), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [87154] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(257), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(259), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(300), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [87199] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1636), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1639), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2453), 30, - sym_string_start, + ACTIONS(1634), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87244] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1692), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1690), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -99242,7 +100655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -99261,26 +100673,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86301] = 4, + [87287] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, + ACTIONS(1663), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1661), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1642), 5, anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87330] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1603), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 27, + ACTIONS(1601), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99302,26 +100753,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86346] = 4, + [87373] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1639), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1642), 5, - anon_sym_as, + ACTIONS(1603), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 27, + ACTIONS(1601), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99343,64 +100793,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86391] = 5, + [87416] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + ACTIONS(1621), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1617), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 14, + ACTIONS(1619), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1607), 15, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87459] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1621), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 29, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86438] = 4, + [87502] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_RPAREN, + ACTIONS(2479), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2477), 30, + sym_string_start, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - ACTIONS(1570), 5, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87545] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2547), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2545), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -99426,16 +100953,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86483] = 3, + [87588] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2448), 4, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(1683), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2446), 30, + ACTIONS(1677), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1673), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87635] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2470), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2468), 30, sym_string_start, anon_sym_DOT, anon_sym_LPAREN, @@ -99466,15 +101035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86526] = 4, + [87678] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1637), 3, + ACTIONS(1612), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1642), 13, + ACTIONS(1617), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -99488,7 +101057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1581), 18, + ACTIONS(1569), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -99507,15 +101076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [86571] = 4, + [87723] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1565), 3, + ACTIONS(1553), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1570), 13, + ACTIONS(1558), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -99529,7 +101098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1581), 18, + ACTIONS(1569), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -99548,15 +101117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [86616] = 4, + [87768] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1644), 3, + ACTIONS(1623), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1649), 13, + ACTIONS(1628), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -99570,7 +101139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1653), 18, + ACTIONS(1632), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -99589,22 +101158,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [86661] = 4, + [87813] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1649), 5, + ACTIONS(2535), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 27, + ACTIONS(2533), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -99630,18 +101198,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86706] = 5, + [87856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + ACTIONS(2493), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(1617), 3, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2491), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [87899] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1680), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1683), 3, anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 14, + ACTIONS(1677), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -99656,7 +101264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1607), 15, + ACTIONS(1673), 15, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -99672,15 +101280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86753] = 4, + [87946] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 3, + ACTIONS(1634), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1660), 13, + ACTIONS(1639), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -99694,7 +101302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1664), 18, + ACTIONS(1643), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -99713,17 +101321,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [86798] = 3, + [87991] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 5, + ACTIONS(2497), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1633), 29, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -99753,26 +101361,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86841] = 4, + [88034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1567), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1570), 5, - anon_sym_as, + ACTIONS(2501), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 27, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99794,67 +101401,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86886] = 5, + [88077] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(2554), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(2552), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86933] = 3, + [88120] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, - anon_sym_as, + ACTIONS(2558), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(2556), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99876,17 +101481,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [86976] = 3, + [88163] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(1617), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 29, + ACTIONS(1612), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -99916,25 +101521,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87019] = 3, + [88206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, - anon_sym_as, + ACTIONS(2562), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 29, + ACTIONS(2560), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99956,25 +101561,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87062] = 3, + [88249] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, - anon_sym_as, + ACTIONS(2539), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(2537), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -99996,17 +101601,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87105] = 3, + [88292] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1558), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1553), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100036,25 +101641,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87148] = 3, + [88335] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, - anon_sym_as, + ACTIONS(1628), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(1623), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100076,21 +101681,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87191] = 3, + [88378] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(1614), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1617), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(1612), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100116,68 +101722,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87234] = 5, + [88423] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1555), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1558), 5, + anon_sym_as, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1553), 27, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87281] = 4, + [88468] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1607), 2, - anon_sym_async, - anon_sym_for, - ACTIONS(1614), 5, - anon_sym_as, + ACTIONS(259), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 27, + ACTIONS(257), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100199,21 +101803,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87326] = 3, + [88511] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2489), 5, + ACTIONS(1625), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1628), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2487), 29, + ACTIONS(1623), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100239,106 +101844,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87369] = 3, + [88556] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, - anon_sym_as, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87412] = 3, + [88603] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, - anon_sym_as, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(643), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87455] = 4, + [88650] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1646), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1649), 5, + ACTIONS(1673), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1680), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 27, + ACTIONS(1677), 27, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100360,21 +101969,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87500] = 3, + [88695] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(1636), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1639), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(1634), 27, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100400,22 +102010,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87543] = 4, + [88740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1660), 5, + ACTIONS(259), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 27, + ACTIONS(257), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_GT_GT, anon_sym_if, anon_sym_async, @@ -100441,25 +102050,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87588] = 3, + [88783] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 5, + ACTIONS(259), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 29, + ACTIONS(257), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100481,17 +102090,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87631] = 3, + [88826] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(1617), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 29, + ACTIONS(1612), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100521,25 +102130,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87674] = 3, + [88869] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 5, + ACTIONS(2511), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 29, + ACTIONS(2509), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100561,17 +102170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87717] = 3, + [88912] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 5, + ACTIONS(2547), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(2545), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -100601,25 +102210,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87760] = 3, + [88955] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2520), 5, - anon_sym_as, + ACTIONS(1639), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2518), 29, + ACTIONS(1634), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100641,25 +102250,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87803] = 3, + [88998] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2524), 5, - anon_sym_as, + ACTIONS(2515), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2522), 29, + ACTIONS(2513), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100681,17 +102290,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87846] = 3, + [89041] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 5, + ACTIONS(2543), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 29, + ACTIONS(2541), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100721,25 +102330,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87889] = 3, + [89084] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 5, - anon_sym_as, + ACTIONS(259), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 29, + ACTIONS(257), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, + anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100761,25 +102370,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87932] = 3, + [89127] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1628), 5, anon_sym_STAR, anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(1623), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100801,59 +102410,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [87975] = 5, + [89170] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + ACTIONS(2511), 5, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1617), 3, anon_sym_EQ, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 14, + ACTIONS(2509), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1607), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88022] = 3, + [89213] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, + ACTIONS(2493), 5, anon_sym_as, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100883,25 +102490,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88065] = 3, + [89256] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, - anon_sym_as, + ACTIONS(1639), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(1634), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100923,17 +102530,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88108] = 3, + [89299] = 5, + ACTIONS(272), 1, + anon_sym_COLON_EQ, + ACTIONS(787), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(259), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(257), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -100941,7 +102551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -100963,25 +102572,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88151] = 3, + [89346] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(2507), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(2505), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101003,25 +102612,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88194] = 3, + [89389] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(2515), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(2513), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101043,25 +102652,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88237] = 3, + [89432] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 5, + ACTIONS(2497), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1714), 29, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101083,65 +102692,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88280] = 3, + [89475] = 7, + ACTIONS(1685), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(1680), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1683), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 29, + ACTIONS(1675), 5, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1673), 12, 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_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1677), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [88323] = 3, + [89526] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 5, + ACTIONS(2554), 5, + anon_sym_as, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2499), 29, + ACTIONS(2552), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, + anon_sym_async, + anon_sym_for, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101163,112 +102776,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88366] = 5, + [89569] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 2, + ACTIONS(1558), 5, anon_sym_STAR, + anon_sym_EQ, anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 14, + ACTIONS(1553), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [88413] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 3, - anon_sym_as, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88460] = 3, + [89612] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2512), 5, + ACTIONS(645), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2510), 29, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101287,17 +102856,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88503] = 3, + [89656] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 5, + ACTIONS(2547), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(2545), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101305,10 +102873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101327,25 +102895,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88546] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [89698] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(2539), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 28, + ACTIONS(2537), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101368,17 +102934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88591] = 3, + [89740] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 5, + ACTIONS(259), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(257), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101386,10 +102951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101408,17 +102973,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88634] = 3, + [89782] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 5, + ACTIONS(259), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 29, + ACTIONS(257), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101426,10 +102990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101448,17 +103012,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88677] = 3, + [89824] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(1651), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 29, + ACTIONS(1649), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101466,10 +103029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101488,25 +103051,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88720] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [89866] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(1692), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 28, + ACTIONS(1690), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101529,17 +103090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88765] = 3, + [89908] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 5, + ACTIONS(1663), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(1661), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101547,10 +103107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101569,25 +103129,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88808] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, + [89950] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 5, + ACTIONS(1603), 4, anon_sym_STAR, - anon_sym_COLON, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 28, + ACTIONS(1601), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -101610,20 +103168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88853] = 3, + [89992] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(1603), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(1601), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -101632,6 +103188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101650,20 +103207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88896] = 3, + [90034] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 5, + ACTIONS(1621), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(1619), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -101672,6 +103227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101690,29 +103246,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88939] = 4, + [90076] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1657), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1660), 5, - anon_sym_as, + ACTIONS(1621), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 27, + ACTIONS(1619), 29, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101731,20 +103285,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [88984] = 3, + [90118] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2528), 5, + ACTIONS(2511), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2526), 29, + ACTIONS(2509), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -101753,6 +103305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101771,57 +103324,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89027] = 3, + [90160] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2508), 5, + ACTIONS(1680), 2, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, + ACTIONS(1683), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2506), 29, + ACTIONS(1677), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, + ACTIONS(1673), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89070] = 3, + [90206] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2532), 5, + ACTIONS(2543), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2530), 29, + ACTIONS(2541), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101829,10 +103382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -101851,31 +103404,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89113] = 3, + [90248] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2536), 5, + ACTIONS(645), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2534), 29, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -101891,31 +103444,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89156] = 3, + [90292] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 5, + ACTIONS(645), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -101931,31 +103484,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89199] = 3, + [90336] = 4, + ACTIONS(1560), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2544), 5, + ACTIONS(1680), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2542), 29, + ACTIONS(1677), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -101971,17 +103524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89242] = 3, + [90380] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2548), 5, + ACTIONS(2507), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2546), 29, + ACTIONS(2505), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -101989,10 +103541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102011,17 +103563,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89285] = 3, + [90422] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2552), 5, + ACTIONS(2515), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2550), 29, + ACTIONS(2513), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102029,10 +103580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102051,25 +103602,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89328] = 7, - ACTIONS(1619), 1, + [90464] = 7, + ACTIONS(1685), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1617), 2, + ACTIONS(1683), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 5, - sym__newline, - anon_sym_SEMI, + ACTIONS(1675), 4, anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(1607), 12, + ACTIONS(1673), 12, anon_sym_as, anon_sym_if, anon_sym_in, @@ -102082,7 +103632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1611), 12, + ACTIONS(1677), 12, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -102095,20 +103645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [89379] = 3, + [90514] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 5, + ACTIONS(2554), 4, anon_sym_STAR, - anon_sym_EQ, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 29, + ACTIONS(2552), 29, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -102117,6 +103665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102135,16 +103684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89422] = 3, + [90556] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2477), 4, + ACTIONS(2558), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2475), 29, + ACTIONS(2556), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102174,16 +103723,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89464] = 3, + [90598] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2493), 4, + ACTIONS(2562), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2491), 29, + ACTIONS(2560), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102213,56 +103762,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89506] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1614), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89550] = 3, + [90640] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2497), 4, + ACTIONS(2566), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2495), 29, + ACTIONS(2564), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102292,68 +103801,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89592] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89638] = 3, + [90682] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 4, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 29, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102372,133 +103841,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89680] = 3, + [90726] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2501), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2499), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89722] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2520), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2518), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89764] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2524), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2522), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89806] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1649), 4, + ACTIONS(1617), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1644), 29, + ACTIONS(1612), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102528,8 +103880,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89848] = 4, - ACTIONS(280), 1, + [90768] = 4, + ACTIONS(272), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, @@ -102568,59 +103920,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89892] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2512), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2510), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [89934] = 4, - ACTIONS(280), 1, + [90812] = 4, + ACTIONS(1560), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(1680), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(1677), 28, anon_sym_DOT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, @@ -102628,7 +103942,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, @@ -102647,16 +103960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [89978] = 3, + [90856] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2516), 4, + ACTIONS(1558), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2514), 29, + ACTIONS(1553), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102686,18 +103999,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90020] = 4, - ACTIONS(280), 1, + [90898] = 4, + ACTIONS(1560), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(1680), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(1677), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102726,16 +104039,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90064] = 3, + [90942] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 4, + ACTIONS(2574), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(2572), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102765,56 +104078,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90106] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1614), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90150] = 3, + [90984] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2467), 4, + ACTIONS(2519), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2465), 29, + ACTIONS(2517), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102844,16 +104117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90192] = 3, + [91026] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2471), 4, + ACTIONS(2523), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(2469), 29, + ACTIONS(2521), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -102883,48 +104156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90234] = 5, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(645), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(650), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90280] = 3, + [91068] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -102963,16 +104195,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90322] = 3, + [91110] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 4, + ACTIONS(2527), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1714), 29, + ACTIONS(2525), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103002,16 +104234,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90364] = 3, + [91152] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 4, + ACTIONS(2531), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1706), 29, + ACTIONS(2529), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103041,16 +104273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90406] = 3, + [91194] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 4, + ACTIONS(2535), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 29, + ACTIONS(2533), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103080,16 +104312,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90448] = 3, + [91236] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 4, + ACTIONS(1628), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1718), 29, + ACTIONS(1623), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103119,16 +104351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90490] = 3, + [91278] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 4, + ACTIONS(2493), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2491), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103158,16 +104390,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90532] = 3, + [91320] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 4, + ACTIONS(2497), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1670), 29, + ACTIONS(2495), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103197,16 +104429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90574] = 3, + [91362] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 4, + ACTIONS(2501), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(265), 29, + ACTIONS(2499), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103236,101 +104468,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90616] = 3, + [91404] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2483), 4, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(2481), 29, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90658] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2528), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2526), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(643), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90700] = 3, + [91450] = 4, + ACTIONS(272), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 4, + ACTIONS(645), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1565), 29, + ACTIONS(686), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_GT_GT, anon_sym_if, - anon_sym_COLON, anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, @@ -103353,96 +104549,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90742] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, + [91494] = 5, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(645), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(650), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(686), 14, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [90786] = 4, - ACTIONS(1572), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1614), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(643), 15, anon_sym_COMMA, anon_sym_as, - anon_sym_GT_GT, anon_sym_if, + anon_sym_COLON, anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, + anon_sym_RBRACK, anon_sym_not, anon_sym_and, anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, anon_sym_is, anon_sym_LT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90830] = 3, + [91540] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 4, + ACTIONS(1639), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1637), 29, + ACTIONS(1634), 29, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -103472,23 +104629,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [90872] = 6, + [91582] = 6, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + ACTIONS(1680), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1617), 2, + ACTIONS(1683), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 5, + ACTIONS(1675), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(1607), 12, + ACTIONS(1673), 12, anon_sym_as, anon_sym_if, anon_sym_in, @@ -103501,7 +104658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - ACTIONS(1611), 12, + ACTIONS(1677), 12, anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -103514,525 +104671,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [90920] = 7, - ACTIONS(1619), 1, - anon_sym_EQ, + [91630] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1617), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1609), 4, + ACTIONS(1612), 3, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(1607), 12, - anon_sym_as, - anon_sym_if, - anon_sym_in, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - ACTIONS(1611), 12, anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [90970] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2508), 4, + ACTIONS(1617), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2506), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91012] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2532), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2530), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1569), 16, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91054] = 5, + 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, + [91673] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 2, + ACTIONS(1651), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1617), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 14, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_GT_GT, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1607), 15, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_RBRACK, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91100] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2536), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2534), 29, + ACTIONS(1649), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, + anon_sym_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91142] = 4, - ACTIONS(280), 1, - anon_sym_COLON_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, + [91714] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(645), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 28, + ACTIONS(1623), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91186] = 4, - ACTIONS(280), 1, - anon_sym_COLON_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(645), 4, + ACTIONS(1628), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(686), 28, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91230] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2552), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2550), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1632), 16, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91272] = 3, + 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, + [91757] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2540), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2538), 29, + ACTIONS(1634), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91314] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2544), 4, + ACTIONS(1639), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2542), 29, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91356] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2548), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2546), 29, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(1643), 16, anon_sym_COMMA, - anon_sym_as, - anon_sym_GT_GT, - anon_sym_if, anon_sym_COLON, - anon_sym_in, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91398] = 3, + 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, + [91800] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1633), 29, + ACTIONS(257), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(259), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_COLON, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91440] = 3, + ACTIONS(300), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [91843] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 28, + ACTIONS(257), 3, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, + anon_sym_LBRACK, + ACTIONS(259), 13, + anon_sym_STAR, anon_sym_GT_GT, - anon_sym_if, - anon_sym_in, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, anon_sym_PLUS, - anon_sym_not, - anon_sym_and, - anon_sym_or, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - anon_sym_is, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_GT, - [91481] = 3, + ACTIONS(300), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [91886] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 13, + ACTIONS(1692), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104046,7 +104922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1718), 19, + ACTIONS(1690), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104066,11 +104942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91522] = 3, + [91927] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 13, + ACTIONS(1663), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104084,7 +104960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1670), 19, + ACTIONS(1661), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104104,11 +104980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91563] = 3, + [91968] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1672), 13, + ACTIONS(1603), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104122,7 +104998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1670), 19, + ACTIONS(1601), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104142,15 +105018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91604] = 4, + [92009] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(686), 3, + ACTIONS(1553), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(645), 13, + ACTIONS(1558), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104164,7 +105040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(643), 16, + ACTIONS(1569), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104181,15 +105057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91647] = 4, + [92052] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(265), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(267), 13, + ACTIONS(1603), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104203,88 +105075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(308), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [91690] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1644), 3, + ACTIONS(1601), 19, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1649), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1653), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [91733] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(686), 3, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(645), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(643), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104298,15 +105095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91776] = 4, + [92093] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1655), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1660), 13, + ACTIONS(1621), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104320,49 +105113,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1664), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [91819] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(265), 3, + ACTIONS(1619), 19, anon_sym_DOT, anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(267), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(308), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, + anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104376,11 +105133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91862] = 3, + [92134] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1635), 13, + ACTIONS(1621), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104394,7 +105151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1633), 19, + ACTIONS(1619), 19, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104414,11 +105171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91903] = 3, + [92175] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1716), 13, + ACTIONS(686), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(645), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104432,13 +105193,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1714), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(643), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104452,11 +105210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91944] = 3, + [92218] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1708), 13, + ACTIONS(686), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(645), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104470,13 +105232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1706), 19, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(643), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_LBRACK, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -104490,15 +105249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [91985] = 4, + [92261] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1611), 3, + ACTIONS(1677), 3, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1614), 13, + ACTIONS(1680), 13, anon_sym_STAR, anon_sym_GT_GT, anon_sym_STAR_STAR, @@ -104512,7 +105271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1607), 16, + ACTIONS(1673), 16, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, @@ -104529,16 +105288,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [92028] = 3, + [92304] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 4, + ACTIONS(1680), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 28, + ACTIONS(1677), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_RPAREN, @@ -104567,16 +105326,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92069] = 3, + [92345] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1614), 4, + ACTIONS(1680), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 28, + ACTIONS(1677), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, @@ -104586,10 +105345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR_STAR, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, - anon_sym_RBRACE, anon_sym_PLUS, anon_sym_not, anon_sym_and, @@ -104605,167 +105364,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_GT, - [92110] = 3, + [92386] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1720), 13, + ACTIONS(1680), 4, anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1718), 19, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1677), 28, anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [92151] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1637), 3, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(1642), 13, - anon_sym_STAR, + anon_sym_as, anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, anon_sym_STAR_STAR, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - ACTIONS(1581), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [92194] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1565), 3, - anon_sym_DOT, - anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(1570), 13, - anon_sym_STAR, - anon_sym_GT_GT, - anon_sym_STAR_STAR, anon_sym_AT, anon_sym_DASH, anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_SLASH, + anon_sym_not, + anon_sym_and, + anon_sym_or, anon_sym_PERCENT, anon_sym_SLASH_SLASH, anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - ACTIONS(1581), 16, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [92237] = 20, - ACTIONS(316), 1, + anon_sym_is, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [92427] = 20, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2554), 1, + ACTIONS(2576), 1, sym_identifier, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2558), 1, + ACTIONS(2580), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(2582), 1, anon_sym_if, - ACTIONS(2562), 1, + ACTIONS(2584), 1, anon_sym_COLON, - ACTIONS(2564), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2230), 1, + STATE(2145), 1, sym_case_pattern, - STATE(2722), 1, + STATE(2634), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2236), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2570), 4, + ACTIONS(2592), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1944), 9, + STATE(1991), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -104775,51 +105456,51 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92311] = 20, - ACTIONS(316), 1, + [92501] = 20, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2554), 1, + ACTIONS(2576), 1, sym_identifier, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2558), 1, + ACTIONS(2580), 1, anon_sym_STAR, - ACTIONS(2560), 1, + ACTIONS(2582), 1, anon_sym_if, - ACTIONS(2564), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2578), 1, + ACTIONS(2600), 1, anon_sym_COLON, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2230), 1, + STATE(2145), 1, sym_case_pattern, - STATE(2762), 1, + STATE(2765), 1, sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2236), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2570), 4, + ACTIONS(2592), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1944), 9, + STATE(1991), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -104829,34 +105510,34 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92385] = 18, - ACTIONS(775), 1, + [92575] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2606), 1, + anon_sym_RPAREN, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2590), 1, - anon_sym_RBRACK, - ACTIONS(2592), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2622), 1, sym_float, - STATE(1837), 1, + STATE(1863), 1, sym_string, - STATE(2090), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2394), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, @@ -104864,12 +105545,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -104879,15 +105560,13 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92453] = 18, + [92643] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, sym_identifier, ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2606), 1, - anon_sym_RPAREN, ACTIONS(2608), 1, anon_sym_STAR, ACTIONS(2610), 1, @@ -104902,16 +105581,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - STATE(1853), 1, + ACTIONS(2624), 1, + anon_sym_RPAREN, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -104919,7 +105600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -104929,7 +105610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92521] = 18, + [92711] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -104950,18 +105631,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2624), 1, + ACTIONS(2626), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2119), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -104969,7 +105650,57 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [92779] = 18, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(2628), 1, + sym_identifier, + ACTIONS(2630), 1, + anon_sym_LPAREN, + ACTIONS(2632), 1, + anon_sym_STAR, + ACTIONS(2634), 1, + anon_sym_STAR_STAR, + ACTIONS(2636), 1, + anon_sym_LBRACK, + ACTIONS(2638), 1, + anon_sym_RBRACK, + ACTIONS(2640), 1, + anon_sym_DASH, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, + sym_integer, + ACTIONS(2648), 1, + sym_float, + STATE(1846), 1, + sym_string, + STATE(2010), 1, + sym_dotted_name, + STATE(2120), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2354), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2642), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -104979,7 +105710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92589] = 18, + [92847] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105000,18 +105731,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2626), 1, + ACTIONS(2650), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2124), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105019,7 +105750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105029,7 +105760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92657] = 18, + [92915] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105050,18 +105781,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2628), 1, + ACTIONS(2652), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2148), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105069,7 +105800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105079,47 +105810,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92725] = 18, + [92983] = 18, ACTIONS(775), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2628), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2630), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2632), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2634), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2630), 1, + ACTIONS(2654), 1, anon_sym_RBRACK, - STATE(1837), 1, + STATE(1846), 1, sym_string, - STATE(2090), 1, + STATE(2010), 1, sym_dotted_name, - STATE(2149), 1, + STATE(2337), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2305), 2, + STATE(2354), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2642), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105129,7 +105860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92793] = 18, + [93051] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105150,18 +105881,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2632), 1, + ACTIONS(2656), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2153), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105169,7 +105900,57 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [93119] = 18, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(2628), 1, + sym_identifier, + ACTIONS(2630), 1, + anon_sym_LPAREN, + ACTIONS(2632), 1, + anon_sym_STAR, + ACTIONS(2634), 1, + anon_sym_STAR_STAR, + ACTIONS(2636), 1, + anon_sym_LBRACK, + ACTIONS(2640), 1, + anon_sym_DASH, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, + sym_integer, + ACTIONS(2648), 1, + sym_float, + ACTIONS(2658), 1, + anon_sym_RBRACK, + STATE(1846), 1, + sym_string, + STATE(2010), 1, + sym_dotted_name, + STATE(2337), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2354), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2642), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105179,7 +105960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92861] = 18, + [93187] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105200,18 +105981,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2634), 1, + ACTIONS(2660), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105219,7 +106000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105229,34 +106010,34 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92929] = 18, - ACTIONS(775), 1, + [93255] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2636), 1, - anon_sym_RBRACK, - STATE(1837), 1, + ACTIONS(2662), 1, + anon_sym_RPAREN, + STATE(1863), 1, sym_string, - STATE(2090), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2394), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, @@ -105264,12 +106045,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105279,7 +106060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [92997] = 18, + [93323] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105300,18 +106081,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2638), 1, + ACTIONS(2664), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2229), 1, + STATE(2164), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105319,7 +106100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105329,7 +106110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93065] = 18, + [93391] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105350,18 +106131,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2640), 1, + ACTIONS(2666), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2163), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105369,7 +106150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105379,47 +106160,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93133] = 18, + [93459] = 18, ACTIONS(775), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2628), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2630), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2632), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2634), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2642), 1, + ACTIONS(2668), 1, anon_sym_RBRACK, - STATE(1837), 1, + STATE(1846), 1, sym_string, - STATE(2090), 1, + STATE(2010), 1, sym_dotted_name, - STATE(2394), 1, + STATE(2165), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2305), 2, + STATE(2354), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2642), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105429,7 +106210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93201] = 18, + [93527] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105450,18 +106231,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2644), 1, + ACTIONS(2670), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2136), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105469,7 +106250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105479,7 +106260,57 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93269] = 18, + [93595] = 18, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(2628), 1, + sym_identifier, + ACTIONS(2630), 1, + anon_sym_LPAREN, + ACTIONS(2632), 1, + anon_sym_STAR, + ACTIONS(2634), 1, + anon_sym_STAR_STAR, + ACTIONS(2636), 1, + anon_sym_LBRACK, + ACTIONS(2640), 1, + anon_sym_DASH, + ACTIONS(2644), 1, + anon_sym_LBRACE, + ACTIONS(2646), 1, + sym_integer, + ACTIONS(2648), 1, + sym_float, + ACTIONS(2672), 1, + anon_sym_RBRACK, + STATE(1846), 1, + sym_string, + STATE(2010), 1, + sym_dotted_name, + STATE(2137), 1, + sym_case_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(2354), 2, + sym__as_pattern, + sym_keyword_pattern, + ACTIONS(2642), 4, + anon_sym__, + sym_true, + sym_false, + sym_none, + STATE(2011), 9, + sym__simple_pattern, + sym_union_pattern, + sym__list_pattern, + sym__tuple_pattern, + sym_dict_pattern, + sym_splat_pattern, + sym_class_pattern, + sym_complex_pattern, + sym_concatenated_string, + [93663] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105500,18 +106331,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2646), 1, + ACTIONS(2674), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105519,7 +106350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105529,7 +106360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93337] = 18, + [93731] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105550,18 +106381,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2648), 1, + ACTIONS(2676), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2163), 1, + STATE(2142), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105569,7 +106400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105579,34 +106410,34 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93405] = 18, - ACTIONS(775), 1, + [93799] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2650), 1, - anon_sym_RBRACK, - STATE(1837), 1, + ACTIONS(2678), 1, + anon_sym_RPAREN, + STATE(1863), 1, sym_string, - STATE(2090), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2164), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, @@ -105614,12 +106445,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105629,47 +106460,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93473] = 18, + [93867] = 18, ACTIONS(775), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2628), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2630), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2632), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2634), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2652), 1, + ACTIONS(2680), 1, anon_sym_RBRACK, - STATE(1837), 1, + STATE(1846), 1, sym_string, - STATE(2090), 1, + STATE(2010), 1, sym_dotted_name, - STATE(2394), 1, + STATE(2337), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2305), 2, + STATE(2354), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2642), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105679,7 +106510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93541] = 18, + [93935] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105700,18 +106531,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2654), 1, + ACTIONS(2682), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105719,7 +106550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105729,47 +106560,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93609] = 18, + [94003] = 18, ACTIONS(775), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2628), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2630), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2632), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2634), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2656), 1, + ACTIONS(2684), 1, anon_sym_RBRACK, - STATE(1837), 1, + STATE(1846), 1, sym_string, - STATE(2090), 1, + STATE(2010), 1, sym_dotted_name, - STATE(2394), 1, + STATE(2337), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2305), 2, + STATE(2354), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2642), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105779,7 +106610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93677] = 18, + [94071] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105800,18 +106631,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2658), 1, + ACTIONS(2686), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105819,7 +106650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105829,34 +106660,34 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93745] = 18, - ACTIONS(775), 1, + [94139] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2660), 1, - anon_sym_RBRACK, - STATE(1837), 1, + ACTIONS(2688), 1, + anon_sym_RPAREN, + STATE(1863), 1, sym_string, - STATE(2090), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2394), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, @@ -105864,12 +106695,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105879,7 +106710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93813] = 18, + [94207] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105900,18 +106731,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2662), 1, + ACTIONS(2690), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2144), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105919,7 +106750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105929,7 +106760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93881] = 18, + [94275] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -105950,18 +106781,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2664), 1, + ACTIONS(2692), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2187), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -105969,7 +106800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -105979,7 +106810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [93949] = 18, + [94343] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -106000,18 +106831,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2666), 1, + ACTIONS(2694), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -106019,7 +106850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106029,47 +106860,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94017] = 18, + [94411] = 18, ACTIONS(775), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2628), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2630), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2632), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2634), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2668), 1, + ACTIONS(2696), 1, anon_sym_RBRACK, - STATE(1837), 1, + STATE(1846), 1, sym_string, - STATE(2090), 1, + STATE(2010), 1, sym_dotted_name, - STATE(2394), 1, + STATE(2337), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2305), 2, + STATE(2354), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2642), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106079,7 +106910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94085] = 18, + [94479] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -106100,18 +106931,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2670), 1, + ACTIONS(2698), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -106119,7 +106950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106129,47 +106960,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94153] = 18, + [94547] = 18, ACTIONS(775), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2628), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2630), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2632), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2634), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2672), 1, + ACTIONS(2700), 1, anon_sym_RBRACK, - STATE(1837), 1, + STATE(1846), 1, sym_string, - STATE(2090), 1, + STATE(2010), 1, sym_dotted_name, - STATE(2394), 1, + STATE(2337), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2305), 2, + STATE(2354), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2642), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106179,7 +107010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94221] = 18, + [94615] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -106200,18 +107031,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2674), 1, + ACTIONS(2702), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -106219,7 +107050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106229,47 +107060,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94289] = 18, - ACTIONS(731), 1, + [94683] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2602), 1, + ACTIONS(2628), 1, sym_identifier, - ACTIONS(2604), 1, + ACTIONS(2630), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2632), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2634), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2614), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2618), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2620), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2622), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2676), 1, - anon_sym_RPAREN, - STATE(1853), 1, + ACTIONS(2704), 1, + anon_sym_RBRACK, + STATE(1846), 1, sym_string, - STATE(2047), 1, + STATE(2010), 1, sym_dotted_name, - STATE(2188), 1, + STATE(2337), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2354), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2616), 4, + ACTIONS(2642), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106279,34 +107110,34 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94357] = 18, - ACTIONS(775), 1, + [94751] = 18, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2602), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2678), 1, - anon_sym_RBRACK, - STATE(1837), 1, + ACTIONS(2706), 1, + anon_sym_RPAREN, + STATE(1863), 1, sym_string, - STATE(2090), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2190), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, @@ -106314,12 +107145,12 @@ static const uint16_t ts_small_parse_table[] = { STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2616), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106329,7 +107160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94425] = 18, + [94819] = 18, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -106350,18 +107181,18 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - ACTIONS(2680), 1, + ACTIONS(2708), 1, anon_sym_RPAREN, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2118), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -106369,7 +107200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106379,47 +107210,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94493] = 18, + [94887] = 18, ACTIONS(775), 1, sym_string_start, - ACTIONS(2580), 1, + ACTIONS(2628), 1, sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2630), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2632), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2634), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2682), 1, + ACTIONS(2710), 1, anon_sym_RBRACK, - STATE(1837), 1, + STATE(1846), 1, sym_string, - STATE(2090), 1, + STATE(2010), 1, sym_dotted_name, - STATE(2119), 1, + STATE(2239), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2305), 2, + STATE(2354), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2594), 4, + ACTIONS(2642), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2063), 9, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106429,47 +107260,47 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94561] = 18, - ACTIONS(731), 1, + [94955] = 18, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2602), 1, + ACTIONS(2628), 1, sym_identifier, - ACTIONS(2604), 1, + ACTIONS(2630), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2632), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2634), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2614), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2618), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2620), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2622), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2684), 1, - anon_sym_RPAREN, - STATE(1853), 1, + ACTIONS(2712), 1, + anon_sym_RBRACK, + STATE(1846), 1, sym_string, - STATE(2047), 1, + STATE(2010), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2337), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2354), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2616), 4, + ACTIONS(2642), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106479,47 +107310,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94629] = 18, - ACTIONS(731), 1, + [95023] = 17, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2602), 1, + ACTIONS(2576), 1, sym_identifier, - ACTIONS(2604), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2580), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2620), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2622), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2686), 1, - anon_sym_RPAREN, - STATE(1853), 1, + STATE(1822), 1, sym_string, - STATE(2047), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2125), 1, + STATE(2145), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2236), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2616), 4, + ACTIONS(2592), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(1991), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106529,47 +107358,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94697] = 18, - ACTIONS(731), 1, + [95088] = 17, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2602), 1, + ACTIONS(2628), 1, sym_identifier, - ACTIONS(2604), 1, + ACTIONS(2630), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2632), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2634), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2614), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2618), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2620), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2622), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2688), 1, - anon_sym_RPAREN, - STATE(1853), 1, + STATE(1846), 1, sym_string, - STATE(2047), 1, + STATE(2010), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2337), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2354), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2616), 4, + ACTIONS(2642), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2011), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106579,47 +107406,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94765] = 18, - ACTIONS(731), 1, + [95153] = 17, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2602), 1, + ACTIONS(2576), 1, sym_identifier, - ACTIONS(2604), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2580), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2614), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2618), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2620), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2622), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2690), 1, - anon_sym_RPAREN, - STATE(1853), 1, + STATE(1822), 1, sym_string, - STATE(2047), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2170), 1, + STATE(1994), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2236), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2616), 4, + ACTIONS(2592), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(1991), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106629,45 +107454,45 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94833] = 17, - ACTIONS(316), 1, + [95218] = 17, + ACTIONS(684), 1, sym_string_start, - ACTIONS(2554), 1, + ACTIONS(2714), 1, sym_identifier, - ACTIONS(2556), 1, + ACTIONS(2716), 1, anon_sym_LPAREN, - ACTIONS(2558), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2564), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2566), 1, + ACTIONS(2722), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2724), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2728), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2730), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2732), 1, sym_float, - STATE(1791), 1, + STATE(1875), 1, sym_string, - STATE(1886), 1, - sym_case_pattern, - STATE(1978), 1, + STATE(2090), 1, sym_dotted_name, + STATE(2265), 1, + sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, + STATE(2428), 2, sym__as_pattern, sym_keyword_pattern, - ACTIONS(2570), 4, + ACTIONS(2726), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1944), 9, + STATE(2091), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106677,7 +107502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94898] = 17, + [95283] = 17, ACTIONS(731), 1, sym_string_start, ACTIONS(2602), 1, @@ -106698,16 +107523,16 @@ static const uint16_t ts_small_parse_table[] = { sym_integer, ACTIONS(2622), 1, sym_float, - STATE(1853), 1, + STATE(1863), 1, sym_string, - STATE(2047), 1, + STATE(2110), 1, sym_dotted_name, - STATE(2311), 1, + STATE(2460), 1, sym_case_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2254), 2, + STATE(2305), 2, sym__as_pattern, sym_keyword_pattern, ACTIONS(2616), 4, @@ -106715,7 +107540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - STATE(2049), 9, + STATE(2057), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106725,190 +107550,142 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [94963] = 17, - ACTIONS(316), 1, + [95348] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2554), 1, - sym_identifier, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2558), 1, - anon_sym_STAR, - ACTIONS(2564), 1, - anon_sym_STAR_STAR, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - STATE(1791), 1, + ACTIONS(2718), 1, + anon_sym_STAR, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2734), 1, + sym_identifier, + ACTIONS(2738), 1, + anon_sym_RBRACE, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2230), 1, - sym_case_pattern, + STATE(2227), 1, + sym_splat_pattern, + STATE(2495), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2150), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2570), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1944), 9, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, sym__tuple_pattern, sym_dict_pattern, - sym_splat_pattern, sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95028] = 17, - ACTIONS(775), 1, + [95414] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2580), 1, - sym_identifier, - ACTIONS(2582), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, - anon_sym_STAR, - ACTIONS(2586), 1, - anon_sym_STAR_STAR, ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2598), 1, sym_float, - STATE(1837), 1, - sym_string, - STATE(2090), 1, - sym_dotted_name, - STATE(2394), 1, - sym_case_pattern, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(2305), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2594), 4, - anon_sym__, - sym_true, - sym_false, - sym_none, - STATE(2063), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - [95093] = 17, - ACTIONS(684), 1, - sym_string_start, - ACTIONS(2692), 1, - sym_identifier, - ACTIONS(2694), 1, - anon_sym_LPAREN, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2700), 1, - anon_sym_LBRACK, - ACTIONS(2702), 1, - anon_sym_DASH, - ACTIONS(2706), 1, - anon_sym_LBRACE, - ACTIONS(2708), 1, - sym_integer, - ACTIONS(2710), 1, - sym_float, - STATE(1873), 1, + ACTIONS(2734), 1, + sym_identifier, + ACTIONS(2740), 1, + anon_sym_RBRACE, + STATE(1822), 1, sym_string, - STATE(2048), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2307), 1, - sym_case_pattern, + STATE(2227), 1, + sym_splat_pattern, + STATE(2495), 1, + sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2355), 2, - sym__as_pattern, - sym_keyword_pattern, - ACTIONS(2704), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2051), 9, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, sym__tuple_pattern, sym_dict_pattern, - sym_splat_pattern, sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95158] = 18, - ACTIONS(316), 1, + [95480] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2716), 1, + ACTIONS(2742), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2031), 1, + STATE(2106), 1, sym_splat_pattern, - STATE(2303), 1, + STATE(2465), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106917,46 +107694,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95224] = 18, - ACTIONS(316), 1, + [95546] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2718), 1, + ACTIONS(2744), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -106965,46 +107742,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95290] = 18, - ACTIONS(316), 1, + [95612] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2720), 1, + ACTIONS(2746), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2033), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2445), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107013,46 +107790,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95356] = 18, - ACTIONS(316), 1, + [95678] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2722), 1, + ACTIONS(2748), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107061,46 +107838,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95422] = 18, - ACTIONS(316), 1, + [95744] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2724), 1, + ACTIONS(2750), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2064), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2319), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107109,46 +107886,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95488] = 18, - ACTIONS(316), 1, + [95810] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2726), 1, + ACTIONS(2752), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2052), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2278), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107157,46 +107934,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95554] = 18, - ACTIONS(316), 1, + [95876] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2728), 1, + ACTIONS(2754), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107205,46 +107982,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95620] = 18, - ACTIONS(316), 1, + [95942] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2730), 1, + ACTIONS(2756), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107253,46 +108030,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95686] = 18, - ACTIONS(316), 1, + [96008] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2732), 1, + ACTIONS(2758), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107301,46 +108078,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95752] = 18, - ACTIONS(316), 1, + [96074] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, - sym_identifier, ACTIONS(2734), 1, + sym_identifier, + ACTIONS(2760), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107349,46 +108126,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95818] = 18, - ACTIONS(316), 1, + [96140] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2736), 1, + ACTIONS(2762), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2061), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2258), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107397,46 +108174,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95884] = 18, - ACTIONS(316), 1, + [96206] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2738), 1, + ACTIONS(2764), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107445,46 +108222,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [95950] = 18, - ACTIONS(316), 1, + [96272] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2740), 1, + ACTIONS(2766), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107493,46 +108270,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96016] = 18, - ACTIONS(316), 1, + [96338] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2742), 1, + ACTIONS(2768), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107541,46 +108318,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96082] = 18, - ACTIONS(316), 1, + [96404] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2744), 1, + ACTIONS(2770), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107589,46 +108366,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96148] = 18, - ACTIONS(316), 1, + [96470] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2746), 1, + ACTIONS(2772), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107637,46 +108414,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96214] = 18, - ACTIONS(316), 1, + [96536] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2748), 1, + ACTIONS(2774), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2058), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2360), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107685,46 +108462,46 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96280] = 18, - ACTIONS(316), 1, + [96602] = 18, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2750), 1, + ACTIONS(2776), 1, anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2042), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2331), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107733,46 +108510,44 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96346] = 18, - ACTIONS(316), 1, + [96668] = 17, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2696), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - ACTIONS(2752), 1, - anon_sym_RBRACE, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, - STATE(2116), 1, + STATE(2227), 1, sym_splat_pattern, - STATE(2526), 1, + STATE(2495), 1, sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2736), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2464), 8, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107781,134 +108556,163 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96412] = 18, - ACTIONS(316), 1, + [96731] = 15, + ACTIONS(684), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2716), 1, anon_sym_LPAREN, - ACTIONS(2566), 1, + ACTIONS(2718), 1, + anon_sym_STAR, + ACTIONS(2720), 1, + anon_sym_STAR_STAR, + ACTIONS(2722), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2724), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2728), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2730), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2732), 1, sym_float, - ACTIONS(2696), 1, - anon_sym_STAR, - ACTIONS(2698), 1, - anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2778), 1, sym_identifier, - ACTIONS(2754), 1, - anon_sym_RBRACE, - STATE(1791), 1, + STATE(1875), 1, sym_string, - STATE(1978), 1, + STATE(2090), 1, sym_dotted_name, - STATE(2116), 1, - sym_splat_pattern, - STATE(2526), 1, - sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2780), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2103), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, sym__tuple_pattern, sym_dict_pattern, + sym_splat_pattern, sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96478] = 17, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(2556), 1, - anon_sym_LPAREN, - ACTIONS(2566), 1, + [96789] = 9, + ACTIONS(2787), 1, + anon_sym_EQ, + ACTIONS(2789), 1, + anon_sym_not, + ACTIONS(2792), 1, + anon_sym_is, + STATE(1551), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2795), 2, + anon_sym_LT, + anon_sym_GT, + STATE(867), 2, + sym__not_in, + sym__is_not, + ACTIONS(2784), 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(2782), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_and, + anon_sym_or, + [96835] = 15, + ACTIONS(775), 1, + sym_string_start, + ACTIONS(2630), 1, + anon_sym_LPAREN, + ACTIONS(2632), 1, + anon_sym_STAR, + ACTIONS(2634), 1, + anon_sym_STAR_STAR, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2696), 1, - anon_sym_STAR, - ACTIONS(2698), 1, - anon_sym_STAR_STAR, - ACTIONS(2712), 1, + ACTIONS(2798), 1, sym_identifier, - STATE(1791), 1, + STATE(1846), 1, sym_string, - STATE(1978), 1, + STATE(2010), 1, sym_dotted_name, - STATE(2116), 1, - sym_splat_pattern, - STATE(2526), 1, - sym__key_value_pattern, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2714), 4, + ACTIONS(2800), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2358), 8, + STATE(2021), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, sym__tuple_pattern, sym_dict_pattern, + sym_splat_pattern, sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96541] = 15, - ACTIONS(316), 1, + [96893] = 15, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2556), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2558), 1, + ACTIONS(2580), 1, anon_sym_STAR, - ACTIONS(2564), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2566), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2568), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2572), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2574), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2576), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2712), 1, + ACTIONS(2734), 1, sym_identifier, - STATE(1791), 1, + STATE(1822), 1, sym_string, - STATE(1978), 1, + STATE(1923), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2756), 4, + ACTIONS(2802), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(1918), 9, + STATE(1930), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107918,40 +108722,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96599] = 15, - ACTIONS(775), 1, + [96951] = 15, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2758), 1, + ACTIONS(2804), 1, sym_identifier, - STATE(1837), 1, + STATE(1863), 1, sym_string, - STATE(2090), 1, + STATE(2110), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2760), 4, + ACTIONS(2806), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2078), 9, + STATE(2007), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -107961,40 +108765,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96657] = 15, - ACTIONS(684), 1, + [97009] = 15, + ACTIONS(308), 1, sym_string_start, - ACTIONS(2694), 1, + ACTIONS(2578), 1, anon_sym_LPAREN, - ACTIONS(2696), 1, + ACTIONS(2580), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2586), 1, anon_sym_STAR_STAR, - ACTIONS(2700), 1, + ACTIONS(2588), 1, anon_sym_LBRACK, - ACTIONS(2702), 1, + ACTIONS(2590), 1, anon_sym_DASH, - ACTIONS(2706), 1, + ACTIONS(2594), 1, anon_sym_LBRACE, - ACTIONS(2708), 1, + ACTIONS(2596), 1, sym_integer, - ACTIONS(2710), 1, + ACTIONS(2598), 1, sym_float, - ACTIONS(2762), 1, + ACTIONS(2734), 1, sym_identifier, - STATE(1873), 1, + STATE(1822), 1, sym_string, - STATE(2048), 1, + STATE(1923), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2764), 4, + ACTIONS(2808), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2054), 9, + STATE(1909), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108004,40 +108808,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96715] = 15, - ACTIONS(684), 1, + [97067] = 15, + ACTIONS(731), 1, sym_string_start, - ACTIONS(2694), 1, + ACTIONS(2604), 1, anon_sym_LPAREN, - ACTIONS(2696), 1, + ACTIONS(2608), 1, anon_sym_STAR, - ACTIONS(2698), 1, + ACTIONS(2610), 1, anon_sym_STAR_STAR, - ACTIONS(2700), 1, + ACTIONS(2612), 1, anon_sym_LBRACK, - ACTIONS(2702), 1, + ACTIONS(2614), 1, anon_sym_DASH, - ACTIONS(2706), 1, + ACTIONS(2618), 1, anon_sym_LBRACE, - ACTIONS(2708), 1, + ACTIONS(2620), 1, sym_integer, - ACTIONS(2710), 1, + ACTIONS(2622), 1, sym_float, - ACTIONS(2762), 1, + ACTIONS(2804), 1, sym_identifier, - STATE(1873), 1, + STATE(1863), 1, sym_string, - STATE(2048), 1, + STATE(2110), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2766), 4, + ACTIONS(2810), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2050), 9, + STATE(2006), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108047,32 +108851,32 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96773] = 9, - ACTIONS(2098), 1, + [97125] = 9, + ACTIONS(2122), 1, anon_sym_not, - ACTIONS(2104), 1, + ACTIONS(2128), 1, anon_sym_is, - ACTIONS(2770), 1, + ACTIONS(2814), 1, anon_sym_EQ, - STATE(1550), 1, + STATE(1551), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2106), 2, + ACTIONS(2130), 2, anon_sym_LT, anon_sym_GT, - STATE(873), 2, + STATE(867), 2, sym__not_in, sym__is_not, - ACTIONS(2084), 6, + ACTIONS(2108), 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(2768), 11, + ACTIONS(2812), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -108084,83 +108888,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [96819] = 15, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(2556), 1, - anon_sym_LPAREN, - ACTIONS(2558), 1, - anon_sym_STAR, - ACTIONS(2564), 1, - anon_sym_STAR_STAR, - ACTIONS(2566), 1, - anon_sym_LBRACK, - ACTIONS(2568), 1, - anon_sym_DASH, - ACTIONS(2572), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - sym_integer, - ACTIONS(2576), 1, - sym_float, - ACTIONS(2712), 1, - sym_identifier, - STATE(1791), 1, - sym_string, - STATE(1978), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2772), 4, - anon_sym__, - sym_true, - sym_false, - sym_none, - STATE(1934), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - [96877] = 15, - ACTIONS(775), 1, + [97171] = 15, + ACTIONS(684), 1, sym_string_start, - ACTIONS(2582), 1, + ACTIONS(2716), 1, anon_sym_LPAREN, - ACTIONS(2584), 1, + ACTIONS(2718), 1, anon_sym_STAR, - ACTIONS(2586), 1, + ACTIONS(2720), 1, anon_sym_STAR_STAR, - ACTIONS(2588), 1, + ACTIONS(2722), 1, anon_sym_LBRACK, - ACTIONS(2592), 1, + ACTIONS(2724), 1, anon_sym_DASH, - ACTIONS(2596), 1, + ACTIONS(2728), 1, anon_sym_LBRACE, - ACTIONS(2598), 1, + ACTIONS(2730), 1, sym_integer, - ACTIONS(2600), 1, + ACTIONS(2732), 1, sym_float, - ACTIONS(2758), 1, + ACTIONS(2778), 1, sym_identifier, - STATE(1837), 1, + STATE(1875), 1, sym_string, STATE(2090), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2774), 4, + ACTIONS(2816), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2000), 9, + STATE(2102), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108170,83 +108931,40 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [96935] = 15, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(2604), 1, - anon_sym_LPAREN, - ACTIONS(2608), 1, - anon_sym_STAR, - ACTIONS(2610), 1, - anon_sym_STAR_STAR, - ACTIONS(2612), 1, - anon_sym_LBRACK, - ACTIONS(2614), 1, - anon_sym_DASH, - ACTIONS(2618), 1, - anon_sym_LBRACE, - ACTIONS(2620), 1, - sym_integer, - ACTIONS(2622), 1, - sym_float, - ACTIONS(2776), 1, - sym_identifier, - STATE(1853), 1, - sym_string, - STATE(2047), 1, - sym_dotted_name, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2778), 4, - anon_sym__, - sym_true, - sym_false, - sym_none, - STATE(2087), 9, - sym__simple_pattern, - sym_union_pattern, - sym__list_pattern, - sym__tuple_pattern, - sym_dict_pattern, - sym_splat_pattern, - sym_class_pattern, - sym_complex_pattern, - sym_concatenated_string, - [96993] = 15, - ACTIONS(731), 1, + [97229] = 15, + ACTIONS(775), 1, sym_string_start, - ACTIONS(2604), 1, + ACTIONS(2630), 1, anon_sym_LPAREN, - ACTIONS(2608), 1, + ACTIONS(2632), 1, anon_sym_STAR, - ACTIONS(2610), 1, + ACTIONS(2634), 1, anon_sym_STAR_STAR, - ACTIONS(2612), 1, + ACTIONS(2636), 1, anon_sym_LBRACK, - ACTIONS(2614), 1, + ACTIONS(2640), 1, anon_sym_DASH, - ACTIONS(2618), 1, + ACTIONS(2644), 1, anon_sym_LBRACE, - ACTIONS(2620), 1, + ACTIONS(2646), 1, sym_integer, - ACTIONS(2622), 1, + ACTIONS(2648), 1, sym_float, - ACTIONS(2776), 1, + ACTIONS(2798), 1, sym_identifier, - STATE(1853), 1, + STATE(1846), 1, sym_string, - STATE(2047), 1, + STATE(2010), 1, sym_dotted_name, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2780), 4, + ACTIONS(2818), 4, anon_sym__, sym_true, sym_false, sym_none, - STATE(2101), 9, + STATE(2024), 9, sym__simple_pattern, sym_union_pattern, sym__list_pattern, @@ -108256,62 +108974,25 @@ static const uint16_t ts_small_parse_table[] = { sym_class_pattern, sym_complex_pattern, sym_concatenated_string, - [97051] = 9, - ACTIONS(2787), 1, - anon_sym_EQ, - ACTIONS(2789), 1, - anon_sym_not, - ACTIONS(2792), 1, - anon_sym_is, - STATE(1550), 1, - aux_sym_comparison_operator_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2795), 2, - anon_sym_LT, - anon_sym_GT, - STATE(873), 2, - sym__not_in, - sym__is_not, - ACTIONS(2784), 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(2782), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [97097] = 9, + [97287] = 9, ACTIONS(2787), 1, anon_sym_as, ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2801), 1, + ACTIONS(2823), 1, anon_sym_is, - STATE(1551), 1, + STATE(1560), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2804), 2, + ACTIONS(2826), 2, anon_sym_LT, anon_sym_GT, - STATE(914), 2, + STATE(921), 2, sym__not_in, sym__is_not, - ACTIONS(2798), 6, + ACTIONS(2820), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -108329,32 +109010,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97142] = 9, - ACTIONS(2098), 1, + [97332] = 9, + ACTIONS(2122), 1, anon_sym_not, - ACTIONS(2134), 1, + ACTIONS(2180), 1, anon_sym_is, - ACTIONS(2770), 1, + ACTIONS(2814), 1, anon_sym_as, - STATE(1551), 1, + STATE(1560), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2136), 2, + ACTIONS(2182), 2, anon_sym_LT, anon_sym_GT, - STATE(914), 2, + STATE(921), 2, sym__not_in, sym__is_not, - ACTIONS(2118), 6, + ACTIONS(2164), 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(2768), 10, + ACTIONS(2812), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -108365,32 +109046,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97187] = 9, - ACTIONS(2787), 1, - anon_sym_EQ, - ACTIONS(2789), 1, + [97377] = 9, + ACTIONS(2122), 1, anon_sym_not, - ACTIONS(2810), 1, + ACTIONS(2407), 1, anon_sym_is, - STATE(1553), 1, + ACTIONS(2814), 1, + anon_sym_EQ, + STATE(1564), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2813), 2, + ACTIONS(2409), 2, anon_sym_LT, anon_sym_GT, - STATE(892), 2, + STATE(943), 2, sym__not_in, sym__is_not, - ACTIONS(2807), 6, + ACTIONS(2391), 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(2782), 9, + ACTIONS(2812), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -108400,32 +109081,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97231] = 9, - ACTIONS(2098), 1, + [97421] = 9, + ACTIONS(2122), 1, anon_sym_not, - ACTIONS(2357), 1, + ACTIONS(2379), 1, anon_sym_is, - ACTIONS(2770), 1, + ACTIONS(2814), 1, anon_sym_EQ, - STATE(1556), 1, + STATE(1565), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2359), 2, + ACTIONS(2381), 2, anon_sym_LT, anon_sym_GT, - STATE(927), 2, + STATE(913), 2, sym__not_in, sym__is_not, - ACTIONS(2341), 6, + ACTIONS(2363), 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(2768), 9, + ACTIONS(2812), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108435,32 +109116,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97275] = 9, - ACTIONS(2098), 1, + [97465] = 9, + ACTIONS(2787), 1, + anon_sym_EQ, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2385), 1, + ACTIONS(2832), 1, anon_sym_is, - ACTIONS(2770), 1, - anon_sym_EQ, - STATE(1553), 1, + STATE(1564), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2387), 2, + ACTIONS(2835), 2, anon_sym_LT, anon_sym_GT, - STATE(892), 2, + STATE(943), 2, sym__not_in, sym__is_not, - ACTIONS(2369), 6, + ACTIONS(2829), 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(2768), 9, + ACTIONS(2782), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -108470,25 +109151,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97319] = 9, + [97509] = 9, ACTIONS(2787), 1, anon_sym_EQ, ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2819), 1, + ACTIONS(2841), 1, anon_sym_is, - STATE(1556), 1, + STATE(1565), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2822), 2, + ACTIONS(2844), 2, anon_sym_LT, anon_sym_GT, - STATE(927), 2, + STATE(913), 2, sym__not_in, sym__is_not, - ACTIONS(2816), 6, + ACTIONS(2838), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -108505,25 +109186,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97363] = 9, + [97553] = 9, ACTIONS(2787), 1, anon_sym_as, ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2828), 1, + ACTIONS(2850), 1, anon_sym_is, - STATE(1557), 1, + STATE(1566), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2831), 2, + ACTIONS(2853), 2, anon_sym_LT, anon_sym_GT, - STATE(861), 2, + STATE(915), 2, sym__not_in, sym__is_not, - ACTIONS(2825), 6, + ACTIONS(2847), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -108539,99 +109220,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97406] = 9, - ACTIONS(2098), 1, + [97596] = 8, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2242), 1, + ACTIONS(2859), 1, anon_sym_is, - ACTIONS(2770), 1, - anon_sym_EQ, - STATE(1561), 1, + STATE(1567), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2244), 2, + ACTIONS(2862), 2, anon_sym_LT, anon_sym_GT, - STATE(856), 2, + STATE(912), 2, sym__not_in, sym__is_not, - ACTIONS(2226), 6, + ACTIONS(2856), 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(2768), 8, + ACTIONS(2782), 9, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, anon_sym_or, - sym_type_conversion, - [97449] = 8, - ACTIONS(2098), 1, + [97637] = 9, + ACTIONS(2122), 1, anon_sym_not, - ACTIONS(2431), 1, + ACTIONS(2288), 1, anon_sym_is, - STATE(1562), 1, + ACTIONS(2814), 1, + anon_sym_EQ, + STATE(1570), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2433), 2, + ACTIONS(2290), 2, anon_sym_LT, anon_sym_GT, - STATE(947), 2, + STATE(881), 2, sym__not_in, sym__is_not, - ACTIONS(2415), 6, + ACTIONS(2272), 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(2768), 9, - anon_sym_DOT, + ACTIONS(2812), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, + anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97490] = 9, - ACTIONS(2098), 1, + sym_type_conversion, + [97680] = 9, + ACTIONS(2122), 1, anon_sym_not, - ACTIONS(2212), 1, + ACTIONS(2208), 1, anon_sym_is, - ACTIONS(2770), 1, + ACTIONS(2814), 1, anon_sym_as, - STATE(1557), 1, + STATE(1566), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2214), 2, + ACTIONS(2210), 2, anon_sym_LT, anon_sym_GT, - STATE(861), 2, + STATE(915), 2, sym__not_in, sym__is_not, - ACTIONS(2196), 6, + ACTIONS(2192), 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(2768), 8, + ACTIONS(2812), 8, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, @@ -108640,25 +109321,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_and, anon_sym_or, - [97533] = 9, + [97723] = 9, ACTIONS(2787), 1, anon_sym_EQ, ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2837), 1, + ACTIONS(2868), 1, anon_sym_is, - STATE(1561), 1, + STATE(1570), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2840), 2, + ACTIONS(2871), 2, anon_sym_LT, anon_sym_GT, - STATE(856), 2, + STATE(881), 2, sym__not_in, sym__is_not, - ACTIONS(2834), 6, + ACTIONS(2865), 6, anon_sym_in, anon_sym_LT_EQ, anon_sym_EQ_EQ, @@ -108674,30 +109355,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [97576] = 8, - ACTIONS(2789), 1, + [97766] = 8, + ACTIONS(2122), 1, anon_sym_not, - ACTIONS(2846), 1, + ACTIONS(2457), 1, anon_sym_is, - STATE(1562), 1, + STATE(1567), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2849), 2, + ACTIONS(2459), 2, anon_sym_LT, anon_sym_GT, - STATE(947), 2, + STATE(912), 2, sym__not_in, sym__is_not, - ACTIONS(2843), 6, + ACTIONS(2441), 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(2782), 9, + ACTIONS(2812), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -108707,20 +109388,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [97617] = 4, + [97807] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(1558), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(308), 5, + ACTIONS(1569), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(265), 14, + ACTIONS(1553), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -108735,53 +109416,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97649] = 9, - ACTIONS(2787), 1, - anon_sym_as, - ACTIONS(2789), 1, - anon_sym_not, - ACTIONS(2855), 1, - anon_sym_is, - STATE(1564), 1, - aux_sym_comparison_operator_repeat1, + [97839] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2858), 2, - anon_sym_LT, - anon_sym_GT, - STATE(854), 2, - sym__not_in, - sym__is_not, - ACTIONS(2852), 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(2782), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [97691] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1660), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1664), 5, + ACTIONS(300), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1655), 14, + ACTIONS(257), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -108796,11 +109444,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97723] = 3, + [97871] = 9, + ACTIONS(2122), 1, + anon_sym_not, + ACTIONS(2351), 1, + anon_sym_is, + ACTIONS(2814), 1, + anon_sym_as, + STATE(1576), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2353), 2, + anon_sym_LT, + anon_sym_GT, + STATE(891), 2, + sym__not_in, + sym__is_not, + ACTIONS(2335), 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(2812), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + [97913] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2863), 10, + ACTIONS(2876), 10, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, @@ -108811,7 +109492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2861), 11, + ACTIONS(2874), 11, anon_sym_print, anon_sym_match, anon_sym_async, @@ -108823,60 +109504,32 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [97753] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1570), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1581), 5, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - ACTIONS(1565), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [97785] = 9, - ACTIONS(2098), 1, + [97943] = 9, + ACTIONS(2787), 1, + anon_sym_as, + ACTIONS(2789), 1, anon_sym_not, - ACTIONS(2322), 1, + ACTIONS(2881), 1, anon_sym_is, - ACTIONS(2770), 1, - anon_sym_as, - STATE(1564), 1, + STATE(1576), 1, aux_sym_comparison_operator_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2324), 2, + ACTIONS(2884), 2, anon_sym_LT, anon_sym_GT, - STATE(854), 2, + STATE(891), 2, sym__not_in, sym__is_not, - ACTIONS(2306), 6, + ACTIONS(2878), 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(2768), 7, + ACTIONS(2782), 7, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, @@ -108884,20 +109537,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_and, anon_sym_or, - [97827] = 4, + [97985] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1642), 2, + ACTIONS(1617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 5, + ACTIONS(1569), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1637), 14, + ACTIONS(1612), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -108912,11 +109565,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97859] = 3, + [98017] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2867), 10, + ACTIONS(2889), 10, sym_string_start, anon_sym_LPAREN, anon_sym_STAR, @@ -108927,7 +109580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, sym_ellipsis, sym_float, - ACTIONS(2865), 11, + ACTIONS(2887), 11, anon_sym_print, anon_sym_match, anon_sym_async, @@ -108939,20 +109592,20 @@ static const uint16_t ts_small_parse_table[] = { sym_true, sym_false, sym_none, - [97889] = 4, + [98047] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 2, + ACTIONS(1639), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1653), 5, + ACTIONS(1643), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(1644), 14, + ACTIONS(1634), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -108967,20 +109620,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97921] = 4, + [98079] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(308), 5, + ACTIONS(300), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - ACTIONS(265), 14, + ACTIONS(257), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -108995,18 +109648,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97953] = 4, + [98111] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(1628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1371), 3, - anon_sym_RPAREN, + ACTIONS(1632), 5, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(265), 14, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1623), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109021,44 +109676,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [97983] = 4, - ACTIONS(2869), 1, - anon_sym_COMMA, - STATE(1576), 1, - aux_sym__patterns_repeat1, + [98143] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(971), 17, - sym__newline, - anon_sym_SEMI, + ACTIONS(259), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1351), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [98013] = 4, + ACTIONS(257), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [98173] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(1558), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(643), 3, + ACTIONS(2891), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(265), 14, + ACTIONS(1553), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109073,15 +109728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98043] = 4, - ACTIONS(2873), 1, + [98203] = 4, + ACTIONS(2895), 1, anon_sym_COMMA, - STATE(1576), 1, + STATE(1584), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 17, + ACTIONS(2893), 17, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -109099,18 +109754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98073] = 4, + [98233] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(643), 3, + ACTIONS(1351), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(265), 14, + ACTIONS(257), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109125,18 +109780,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98103] = 4, + [98263] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1371), 3, + ACTIONS(643), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(265), 14, + ACTIONS(257), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109151,18 +109806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98133] = 4, + [98293] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 3, + ACTIONS(643), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1565), 14, + ACTIONS(257), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109177,18 +109832,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98163] = 4, + [98323] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(1558), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2876), 3, + ACTIONS(1673), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(1565), 14, + ACTIONS(1553), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109203,76 +109858,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98193] = 13, - ACTIONS(2298), 1, - anon_sym_DOT, - ACTIONS(2310), 1, - anon_sym_LBRACK, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2351), 1, - anon_sym_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2337), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [98240] = 4, + [98353] = 4, + ACTIONS(2898), 1, + anon_sym_COMMA, + STATE(1584), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1664), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1655), 14, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [98269] = 4, + ACTIONS(957), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [98383] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(1558), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(308), 2, + ACTIONS(2891), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(265), 14, + anon_sym_COLON, + ACTIONS(1553), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109287,11 +109909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98298] = 2, + [98412] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2878), 18, + ACTIONS(2893), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -109310,17 +109932,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98323] = 4, + [98437] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(308), 2, + ACTIONS(1569), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(265), 14, + ACTIONS(1617), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1612), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109335,17 +109957,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98352] = 4, + [98466] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, + ACTIONS(1569), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1642), 2, + anon_sym_in, + ACTIONS(1617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 14, + ACTIONS(1612), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109360,17 +109982,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98381] = 4, + [98495] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(1558), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 2, + ACTIONS(1569), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1565), 14, + anon_sym_in, + ACTIONS(1553), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109385,51 +110007,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98410] = 13, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2345), 1, - anon_sym_LBRACK, - ACTIONS(2351), 1, - anon_sym_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_CARET, + [98524] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(300), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(257), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98457] = 4, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [98553] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1642), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 14, + ACTIONS(643), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(257), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109444,51 +110057,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98486] = 13, - ACTIONS(2076), 1, - anon_sym_DOT, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2351), 1, - anon_sym_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_CARET, + [98582] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(643), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(257), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98533] = 4, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [98611] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(1628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(308), 2, + ACTIONS(1632), 2, anon_sym_COMMA, anon_sym_in, - ACTIONS(265), 14, + ACTIONS(1623), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109503,17 +110107,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98562] = 4, + [98640] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1660), 2, + ACTIONS(1558), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1664), 2, + ACTIONS(1569), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1655), 14, + anon_sym_RBRACK, + ACTIONS(1553), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109528,40 +110132,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98591] = 2, + [98669] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(1569), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [98616] = 4, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1660), 2, + ACTIONS(1617), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1664), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1655), 14, + ACTIONS(1612), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109576,17 +110157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98645] = 4, + [98698] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(1558), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 2, + ACTIONS(1569), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1565), 14, + ACTIONS(1553), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109601,17 +110182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98674] = 4, + [98727] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(1628), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(308), 2, + ACTIONS(1632), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(265), 14, + ACTIONS(1623), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109626,74 +110207,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98703] = 2, + [98756] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 18, - sym__newline, - anon_sym_SEMI, + ACTIONS(259), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(300), 2, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_AT_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [98728] = 13, - ACTIONS(2294), 1, + anon_sym_RBRACK, + ACTIONS(257), 14, anon_sym_DOT, - ACTIONS(2296), 1, - anon_sym_LBRACK, - ACTIONS(2335), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2351), 1, - anon_sym_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2337), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2339), 2, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98775] = 4, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [98785] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(300), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1565), 14, + anon_sym_RBRACK, + ACTIONS(257), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109708,51 +110257,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98804] = 13, - ACTIONS(2218), 1, - anon_sym_DOT, - ACTIONS(2230), 1, - anon_sym_LBRACK, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2351), 1, - anon_sym_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_CARET, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2337), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2339), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, - anon_sym_DASH, - anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, - anon_sym_PERCENT, - anon_sym_SLASH_SLASH, - [98851] = 4, + [98814] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_RPAREN, + ACTIONS(300), 2, anon_sym_COMMA, - ACTIONS(1644), 14, + anon_sym_in, + ACTIONS(257), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109767,11 +110282,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98880] = 2, + [98843] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 18, + ACTIONS(2900), 18, sym__newline, anon_sym_SEMI, anon_sym_COMMA, @@ -109790,51 +110305,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [98905] = 13, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2351), 1, - anon_sym_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_CARET, - ACTIONS(2361), 1, - anon_sym_DOT, - ACTIONS(2373), 1, - anon_sym_LBRACK, + [98868] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(1639), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(1643), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1634), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [98952] = 4, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [98897] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1642), 2, + ACTIONS(1639), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1637), 14, + ACTIONS(1643), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1634), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109849,17 +110355,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [98981] = 4, + [98926] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1371), 2, + ACTIONS(1351), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(265), 14, + ACTIONS(257), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -109874,119 +110380,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99010] = 13, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2351), 1, - anon_sym_PIPE, - ACTIONS(2353), 1, - anon_sym_AMP, - ACTIONS(2355), 1, - anon_sym_CARET, - ACTIONS(2407), 1, - anon_sym_DOT, - ACTIONS(2419), 1, - anon_sym_LBRACK, + [98955] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(1351), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(257), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99057] = 13, - ACTIONS(2110), 1, - anon_sym_DOT, - ACTIONS(2122), 1, - anon_sym_LBRACK, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_STAR_STAR, - ACTIONS(2351), 1, - anon_sym_PIPE, - ACTIONS(2353), 1, anon_sym_AMP, - ACTIONS(2355), 1, anon_sym_CARET, + anon_sym_LT_LT, + [98984] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(1639), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(1643), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1634), 14, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(2349), 2, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, anon_sym_DASH, + anon_sym_PIPE, anon_sym_PLUS, - STATE(1386), 2, - sym_argument_list, - sym_generator_expression, - ACTIONS(2347), 3, - anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99104] = 13, - ACTIONS(2188), 1, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [99013] = 13, + ACTIONS(2316), 1, anon_sym_DOT, - ACTIONS(2200), 1, + ACTIONS(2318), 1, anon_sym_LBRACK, - ACTIONS(2335), 1, + ACTIONS(2357), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(2365), 1, anon_sym_STAR_STAR, - ACTIONS(2351), 1, + ACTIONS(2373), 1, anon_sym_PIPE, - ACTIONS(2353), 1, + ACTIONS(2375), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2377), 1, anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(2359), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(2361), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2349), 2, + ACTIONS(2371), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1386), 2, + STATE(1338), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2347), 3, + ACTIONS(2369), 3, anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99151] = 4, + [99060] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(1558), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(308), 2, + ACTIONS(1673), 2, anon_sym_COMMA, - anon_sym_in, - ACTIONS(265), 14, + anon_sym_COLON, + ACTIONS(1553), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110001,17 +110489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99180] = 4, + [99089] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2876), 2, + ACTIONS(300), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1565), 14, + ACTIONS(257), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110026,17 +110514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99209] = 4, + [99118] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1570), 2, + ACTIONS(259), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1581), 2, + ACTIONS(300), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_in, - ACTIONS(1565), 14, + ACTIONS(257), 14, anon_sym_DOT, anon_sym_LPAREN, anon_sym_GT_GT, @@ -110051,233 +110539,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_CARET, anon_sym_LT_LT, - [99238] = 4, + [99147] = 13, + ACTIONS(2355), 1, + anon_sym_DOT, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2367), 1, + anon_sym_LBRACK, + ACTIONS(2373), 1, + anon_sym_PIPE, + ACTIONS(2375), 1, + anon_sym_AMP, + ACTIONS(2377), 1, + anon_sym_CARET, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 2, + ACTIONS(2359), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1644), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2361), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2371), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - [99267] = 4, + [99194] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(643), 2, + ACTIONS(2902), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(265), 14, + 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, + [99219] = 13, + ACTIONS(2100), 1, anon_sym_DOT, + ACTIONS(2114), 1, + anon_sym_LBRACK, + ACTIONS(2357), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2365), 1, anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, - anon_sym_DASH, + ACTIONS(2373), 1, anon_sym_PIPE, + ACTIONS(2375), 1, + anon_sym_AMP, + ACTIONS(2377), 1, + anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2359), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2371), 2, + anon_sym_DASH, anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [99266] = 13, + ACTIONS(2327), 1, + anon_sym_DOT, + ACTIONS(2339), 1, + anon_sym_LBRACK, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_PIPE, + ACTIONS(2375), 1, anon_sym_AMP, + ACTIONS(2377), 1, anon_sym_CARET, - anon_sym_LT_LT, - [99296] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1649), 2, + ACTIONS(2359), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1653), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(1644), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2361), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2371), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [99313] = 13, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_PIPE, + ACTIONS(2375), 1, anon_sym_AMP, + ACTIONS(2377), 1, anon_sym_CARET, - anon_sym_LT_LT, - [99325] = 4, + ACTIONS(2904), 1, + anon_sym_DOT, + ACTIONS(2906), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(2359), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(643), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(265), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2361), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2371), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [99360] = 13, + ACTIONS(2264), 1, + anon_sym_DOT, + ACTIONS(2276), 1, + anon_sym_LBRACK, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_PIPE, + ACTIONS(2375), 1, anon_sym_AMP, + ACTIONS(2377), 1, anon_sym_CARET, - anon_sym_LT_LT, - [99354] = 4, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(2359), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1371), 2, + ACTIONS(2361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2371), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99407] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1569), 18, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(265), 14, - anon_sym_DOT, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [99432] = 13, + ACTIONS(2357), 1, anon_sym_LPAREN, - anon_sym_GT_GT, + ACTIONS(2365), 1, anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_PIPE, + ACTIONS(2375), 1, + anon_sym_AMP, + ACTIONS(2377), 1, + anon_sym_CARET, + ACTIONS(2383), 1, + anon_sym_DOT, + ACTIONS(2395), 1, anon_sym_LBRACK, - anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2359), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2361), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(2371), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [99479] = 13, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_PIPE, + ACTIONS(2375), 1, anon_sym_AMP, + ACTIONS(2377), 1, anon_sym_CARET, - anon_sym_LT_LT, - [99383] = 4, + ACTIONS(2433), 1, + anon_sym_DOT, + ACTIONS(2445), 1, + anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(267), 2, + ACTIONS(2359), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(308), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(265), 14, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2361), 2, anon_sym_GT_GT, - anon_sym_STAR_STAR, - anon_sym_LBRACK, - anon_sym_AT, + anon_sym_LT_LT, + ACTIONS(2371), 2, anon_sym_DASH, - anon_sym_PIPE, anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, anon_sym_PERCENT, anon_sym_SLASH_SLASH, + [99526] = 13, + ACTIONS(2156), 1, + anon_sym_DOT, + ACTIONS(2168), 1, + anon_sym_LBRACK, + ACTIONS(2357), 1, + anon_sym_LPAREN, + ACTIONS(2365), 1, + anon_sym_STAR_STAR, + ACTIONS(2373), 1, + anon_sym_PIPE, + ACTIONS(2375), 1, anon_sym_AMP, + ACTIONS(2377), 1, anon_sym_CARET, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2359), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2361), 2, + anon_sym_GT_GT, anon_sym_LT_LT, - [99412] = 13, - ACTIONS(2335), 1, + ACTIONS(2371), 2, + anon_sym_DASH, + anon_sym_PLUS, + STATE(1338), 2, + sym_argument_list, + sym_generator_expression, + ACTIONS(2369), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99573] = 13, + ACTIONS(2184), 1, + anon_sym_DOT, + ACTIONS(2196), 1, + anon_sym_LBRACK, + ACTIONS(2357), 1, anon_sym_LPAREN, - ACTIONS(2343), 1, + ACTIONS(2365), 1, anon_sym_STAR_STAR, - ACTIONS(2351), 1, + ACTIONS(2373), 1, anon_sym_PIPE, - ACTIONS(2353), 1, + ACTIONS(2375), 1, anon_sym_AMP, - ACTIONS(2355), 1, + ACTIONS(2377), 1, anon_sym_CARET, - ACTIONS(2882), 1, - anon_sym_DOT, - ACTIONS(2884), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2337), 2, + ACTIONS(2359), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2339), 2, + ACTIONS(2361), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(2349), 2, + ACTIONS(2371), 2, anon_sym_DASH, anon_sym_PLUS, - STATE(1386), 2, + STATE(1338), 2, sym_argument_list, sym_generator_expression, - ACTIONS(2347), 3, + ACTIONS(2369), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [99620] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1628), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1632), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1623), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, anon_sym_AT, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_PLUS, anon_sym_PERCENT, anon_sym_SLASH_SLASH, - [99459] = 13, - ACTIONS(2886), 1, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [99649] = 13, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2888), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2892), 1, + ACTIONS(2914), 1, anon_sym_COLON, - ACTIONS(2894), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2896), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - STATE(2347), 1, + STATE(2388), 1, sym_parameter, - STATE(2350), 1, + STATE(2438), 1, sym_tuple_pattern, - STATE(2767), 1, - sym__parameters, - STATE(2776), 1, + STATE(2740), 1, sym_lambda_parameters, + STATE(2757), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2503), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99505] = 4, - ACTIONS(2898), 1, - anon_sym_COMMA, - STATE(1620), 1, - aux_sym__patterns_repeat1, + [99695] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 15, + ACTIONS(2900), 17, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_in, anon_sym_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -110292,85 +110971,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99533] = 13, - ACTIONS(2886), 1, + [99719] = 13, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2888), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2894), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2896), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - ACTIONS(2901), 1, + ACTIONS(2920), 1, anon_sym_COLON, - STATE(2347), 1, + STATE(2388), 1, sym_parameter, - STATE(2350), 1, + STATE(2438), 1, sym_tuple_pattern, - STATE(2760), 1, + STATE(2687), 1, sym_lambda_parameters, - STATE(2767), 1, + STATE(2757), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2503), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99579] = 13, - ACTIONS(2886), 1, - sym_identifier, - ACTIONS(2888), 1, - anon_sym_LPAREN, - ACTIONS(2890), 1, - anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_STAR_STAR, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2903), 1, - anon_sym_COLON, - STATE(2347), 1, - sym_parameter, - STATE(2350), 1, - sym_tuple_pattern, - STATE(2728), 1, - sym_lambda_parameters, - STATE(2767), 1, - sym__parameters, + [99765] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2503), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [99625] = 6, - ACTIONS(2905), 1, + ACTIONS(1569), 17, anon_sym_COMMA, - ACTIONS(2907), 1, anon_sym_COLON, - ACTIONS(2909), 1, + anon_sym_in, anon_sym_EQ, - STATE(1574), 1, - aux_sym__patterns_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2911), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110384,63 +111026,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99657] = 6, - ACTIONS(2907), 1, + [99789] = 13, + ACTIONS(2908), 1, + sym_identifier, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, + anon_sym_STAR, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_SLASH, + ACTIONS(2922), 1, anon_sym_COLON, - ACTIONS(2909), 1, - anon_sym_EQ, - ACTIONS(2913), 1, - anon_sym_COMMA, - STATE(1638), 1, - aux_sym__patterns_repeat1, + STATE(2388), 1, + sym_parameter, + STATE(2438), 1, + sym_tuple_pattern, + STATE(2628), 1, + sym_lambda_parameters, + STATE(2757), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2911), 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, - [99689] = 2, + STATE(2538), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2587), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99835] = 13, + ACTIONS(2908), 1, + sym_identifier, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, + anon_sym_STAR, + ACTIONS(2916), 1, + anon_sym_STAR_STAR, + ACTIONS(2918), 1, + anon_sym_SLASH, + ACTIONS(2924), 1, + anon_sym_COLON, + STATE(2388), 1, + sym_parameter, + STATE(2438), 1, + sym_tuple_pattern, + STATE(2715), 1, + sym_lambda_parameters, + STATE(2757), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2878), 17, + STATE(2538), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2587), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [99881] = 6, + ACTIONS(2926), 1, anon_sym_COMMA, + ACTIONS(2928), 1, anon_sym_COLON, - anon_sym_in, + ACTIONS(2930), 1, 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, - [99713] = 2, + STATE(1589), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 17, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_in, - anon_sym_EQ, + ACTIONS(2932), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110454,110 +111118,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99737] = 13, - ACTIONS(2886), 1, + [99913] = 13, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2888), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2894), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2896), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - ACTIONS(2915), 1, + ACTIONS(2934), 1, anon_sym_COLON, - STATE(2347), 1, + STATE(2388), 1, sym_parameter, - STATE(2350), 1, + STATE(2438), 1, sym_tuple_pattern, - STATE(2652), 1, - sym_lambda_parameters, - STATE(2767), 1, + STATE(2757), 1, sym__parameters, + STATE(2769), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2503), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99783] = 13, - ACTIONS(2886), 1, + [99959] = 13, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2888), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2894), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2896), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - ACTIONS(2917), 1, + ACTIONS(2936), 1, anon_sym_COLON, - STATE(2347), 1, + STATE(2388), 1, sym_parameter, - STATE(2350), 1, + STATE(2438), 1, sym_tuple_pattern, - STATE(2764), 1, + STATE(2712), 1, sym_lambda_parameters, - STATE(2767), 1, + STATE(2757), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2503), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99829] = 13, - ACTIONS(2886), 1, + [100005] = 13, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2888), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2894), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2896), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - ACTIONS(2919), 1, + ACTIONS(2938), 1, anon_sym_COLON, - STATE(2347), 1, + STATE(2388), 1, sym_parameter, - STATE(2350), 1, + STATE(2438), 1, sym_tuple_pattern, - STATE(2751), 1, + STATE(2606), 1, sym_lambda_parameters, - STATE(2767), 1, + STATE(2757), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2503), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99875] = 2, + [100051] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 17, + ACTIONS(2902), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -110575,117 +111239,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [99899] = 13, - ACTIONS(2886), 1, + [100075] = 4, + ACTIONS(2940), 1, + anon_sym_COMMA, + STATE(1646), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(957), 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, + [100103] = 13, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2888), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2894), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2896), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - ACTIONS(2921), 1, + ACTIONS(2942), 1, anon_sym_COLON, - STATE(2347), 1, + STATE(2388), 1, sym_parameter, - STATE(2350), 1, + STATE(2438), 1, sym_tuple_pattern, - STATE(2684), 1, + STATE(2701), 1, sym_lambda_parameters, - STATE(2767), 1, + STATE(2757), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2503), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99945] = 13, - ACTIONS(2886), 1, + [100149] = 13, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2888), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2894), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2896), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - ACTIONS(2923), 1, + ACTIONS(2944), 1, anon_sym_COLON, - STATE(2347), 1, + STATE(2388), 1, sym_parameter, - STATE(2350), 1, + STATE(2438), 1, sym_tuple_pattern, - STATE(2639), 1, + STATE(2652), 1, sym_lambda_parameters, - STATE(2767), 1, + STATE(2757), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2503), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [99991] = 13, - ACTIONS(2886), 1, + [100195] = 13, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2888), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2894), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2896), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - ACTIONS(2925), 1, + ACTIONS(2946), 1, anon_sym_COLON, - STATE(2347), 1, + STATE(2388), 1, sym_parameter, - STATE(2350), 1, + STATE(2438), 1, sym_tuple_pattern, - STATE(2668), 1, + STATE(2718), 1, sym_lambda_parameters, - STATE(2767), 1, + STATE(2757), 1, sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2503), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100037] = 5, - ACTIONS(2907), 1, + [100241] = 6, + ACTIONS(2928), 1, anon_sym_COLON, - ACTIONS(2909), 1, + ACTIONS(2930), 1, anon_sym_EQ, + ACTIONS(2948), 1, + anon_sym_COMMA, + STATE(1639), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2927), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2911), 13, + ACTIONS(2932), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -110699,44 +111388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100067] = 13, - ACTIONS(2886), 1, - sym_identifier, - ACTIONS(2888), 1, - anon_sym_LPAREN, - ACTIONS(2890), 1, - anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_STAR_STAR, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2929), 1, - anon_sym_COLON, - STATE(2347), 1, - sym_parameter, - STATE(2350), 1, - sym_tuple_pattern, - STATE(2597), 1, - sym_lambda_parameters, - STATE(2767), 1, - sym__parameters, + [100273] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2503), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100113] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2871), 17, + ACTIONS(2893), 17, anon_sym_COMMA, anon_sym_COLON, anon_sym_in, @@ -110754,48 +111410,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100137] = 13, - ACTIONS(2886), 1, - sym_identifier, - ACTIONS(2888), 1, - anon_sym_LPAREN, - ACTIONS(2890), 1, - anon_sym_STAR, - ACTIONS(2894), 1, - anon_sym_STAR_STAR, - ACTIONS(2896), 1, - anon_sym_SLASH, - ACTIONS(2931), 1, + [100297] = 5, + ACTIONS(2928), 1, anon_sym_COLON, - STATE(2347), 1, - sym_parameter, - STATE(2350), 1, - sym_tuple_pattern, - STATE(2707), 1, - sym_lambda_parameters, - STATE(2767), 1, - sym__parameters, + ACTIONS(2930), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, - sym_list_splat_pattern, - sym_dictionary_splat_pattern, - STATE(2503), 5, - sym_default_parameter, - sym_typed_default_parameter, - sym_typed_parameter, - sym_positional_separator, - sym_keyword_separator, - [100183] = 4, - ACTIONS(2933), 1, + ACTIONS(2950), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2932), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [100327] = 4, + ACTIONS(2952), 1, anon_sym_COMMA, - STATE(1620), 1, + STATE(1646), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(971), 15, + ACTIONS(2893), 15, anon_sym_COLON, anon_sym_EQ, anon_sym_PLUS_EQ, @@ -110811,352 +111459,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [100211] = 12, - ACTIONS(2935), 1, + [100355] = 13, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2937), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2939), 1, - anon_sym_RPAREN, - ACTIONS(2941), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2943), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2945), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - STATE(2320), 1, + ACTIONS(2955), 1, + anon_sym_COLON, + STATE(2388), 1, sym_parameter, - STATE(2321), 1, + STATE(2438), 1, sym_tuple_pattern, - STATE(2626), 1, + STATE(2757), 1, sym__parameters, + STATE(2760), 1, + sym_lambda_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2323), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2544), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100254] = 11, - ACTIONS(2935), 1, + [100401] = 12, + ACTIONS(2957), 1, sym_identifier, - ACTIONS(2937), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(2941), 1, + ACTIONS(2961), 1, + anon_sym_RPAREN, + ACTIONS(2963), 1, anon_sym_STAR, - ACTIONS(2943), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2945), 1, + ACTIONS(2967), 1, anon_sym_SLASH, - ACTIONS(2947), 1, - anon_sym_RPAREN, - STATE(2321), 1, - sym_tuple_pattern, - STATE(2554), 1, + STATE(2417), 1, sym_parameter, + STATE(2419), 1, + sym_tuple_pattern, + STATE(2633), 1, + sym__parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2323), 2, + STATE(2423), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2544), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100294] = 11, - ACTIONS(2935), 1, + [100444] = 11, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2937), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2941), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2943), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2945), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - ACTIONS(2949), 1, - anon_sym_RPAREN, - STATE(2321), 1, + ACTIONS(2969), 1, + anon_sym_COLON, + STATE(2438), 1, sym_tuple_pattern, - STATE(2554), 1, + STATE(2525), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2323), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2544), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100334] = 11, - ACTIONS(2886), 1, + [100484] = 4, + ACTIONS(2928), 1, + anon_sym_COLON, + ACTIONS(2930), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2932), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [100510] = 11, + ACTIONS(2957), 1, sym_identifier, - ACTIONS(2888), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2963), 1, anon_sym_STAR, - ACTIONS(2894), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2896), 1, + ACTIONS(2967), 1, anon_sym_SLASH, - ACTIONS(2947), 1, - anon_sym_COLON, - STATE(2350), 1, + ACTIONS(2969), 1, + anon_sym_RPAREN, + STATE(2419), 1, sym_tuple_pattern, - STATE(2514), 1, + STATE(2508), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, + STATE(2423), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2503), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100374] = 11, - ACTIONS(2886), 1, + [100550] = 11, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2888), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2894), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2896), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - ACTIONS(2949), 1, + ACTIONS(2971), 1, anon_sym_COLON, - STATE(2350), 1, + STATE(2438), 1, sym_tuple_pattern, - STATE(2514), 1, + STATE(2525), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2503), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100414] = 4, - ACTIONS(2907), 1, - anon_sym_COLON, - ACTIONS(2909), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2911), 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, - [100440] = 11, - ACTIONS(2953), 1, - anon_sym_as, - ACTIONS(2955), 1, - anon_sym_if, + [100590] = 11, ACTIONS(2957), 1, - anon_sym_async, - ACTIONS(2959), 1, - anon_sym_for, - ACTIONS(2961), 1, - anon_sym_and, - ACTIONS(2963), 1, - anon_sym_or, - STATE(1858), 1, - sym_for_in_clause, - STATE(2397), 1, - aux_sym__collection_elements_repeat1, - STATE(2591), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2951), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [100479] = 10, - ACTIONS(2886), 1, sym_identifier, - ACTIONS(2888), 1, + ACTIONS(2959), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, + ACTIONS(2963), 1, anon_sym_STAR, - ACTIONS(2894), 1, + ACTIONS(2965), 1, anon_sym_STAR_STAR, - ACTIONS(2896), 1, + ACTIONS(2967), 1, anon_sym_SLASH, - STATE(2350), 1, + ACTIONS(2971), 1, + anon_sym_RPAREN, + STATE(2419), 1, sym_tuple_pattern, - STATE(2514), 1, + STATE(2508), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2518), 2, + STATE(2423), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2503), 5, + STATE(2526), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100516] = 10, - ACTIONS(2935), 1, + [100630] = 10, + ACTIONS(2908), 1, sym_identifier, - ACTIONS(2937), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(2941), 1, + ACTIONS(2912), 1, anon_sym_STAR, - ACTIONS(2943), 1, + ACTIONS(2916), 1, anon_sym_STAR_STAR, - ACTIONS(2945), 1, + ACTIONS(2918), 1, anon_sym_SLASH, - STATE(2321), 1, + STATE(2438), 1, sym_tuple_pattern, - STATE(2554), 1, + STATE(2525), 1, sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2323), 2, + STATE(2538), 2, sym_list_splat_pattern, sym_dictionary_splat_pattern, - STATE(2544), 5, + STATE(2587), 5, sym_default_parameter, sym_typed_default_parameter, sym_typed_parameter, sym_positional_separator, sym_keyword_separator, - [100553] = 6, - ACTIONS(2967), 1, + [100667] = 11, + ACTIONS(2975), 1, anon_sym_as, - ACTIONS(2969), 1, + ACTIONS(2977), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(2985), 1, anon_sym_or, + STATE(1884), 1, + sym_for_in_clause, + STATE(2471), 1, + aux_sym__collection_elements_repeat1, + STATE(2743), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2965), 8, - sym__newline, - anon_sym_SEMI, + ACTIONS(2973), 5, anon_sym_DOT, - anon_sym_from, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [100580] = 2, + [100706] = 10, + ACTIONS(2957), 1, + sym_identifier, + ACTIONS(2959), 1, + anon_sym_LPAREN, + ACTIONS(2963), 1, + anon_sym_STAR, + ACTIONS(2965), 1, + anon_sym_STAR_STAR, + ACTIONS(2967), 1, + anon_sym_SLASH, + STATE(2419), 1, + sym_tuple_pattern, + STATE(2508), 1, + sym_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2074), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [100599] = 13, - ACTIONS(2975), 1, + STATE(2423), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(2526), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [100743] = 13, + ACTIONS(2987), 1, anon_sym_COMMA, - ACTIONS(2977), 1, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2991), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2993), 1, anon_sym_COLON, - ACTIONS(2983), 1, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(2987), 1, + ACTIONS(2999), 1, anon_sym_RBRACE, - ACTIONS(2989), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3003), 1, anon_sym_or, STATE(1838), 1, sym_for_in_clause, - STATE(2434), 1, + STATE(2406), 1, aux_sym__collection_elements_repeat1, - STATE(2582), 1, + STATE(2600), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100640] = 5, - ACTIONS(2971), 1, + [100784] = 6, + ACTIONS(3007), 1, + anon_sym_as, + ACTIONS(3009), 1, + anon_sym_if, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3013), 1, anon_sym_or, - ACTIONS(2995), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2993), 9, + ACTIONS(3005), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100665] = 4, - ACTIONS(2971), 1, - anon_sym_and, - ACTIONS(2973), 1, - anon_sym_or, + [100811] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2998), 10, + ACTIONS(2098), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111167,284 +111807,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100688] = 6, - ACTIONS(2967), 1, - anon_sym_as, - ACTIONS(2969), 1, - anon_sym_if, - ACTIONS(2971), 1, anon_sym_and, - ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3000), 8, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_from, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [100715] = 3, - ACTIONS(2971), 1, + [100830] = 5, + ACTIONS(3011), 1, anon_sym_and, + ACTIONS(3013), 1, + anon_sym_or, + ACTIONS(3017), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3002), 11, + ACTIONS(3015), 9, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - anon_sym_or, - [100736] = 13, - ACTIONS(2975), 1, + [100855] = 13, + ACTIONS(2987), 1, anon_sym_COMMA, - ACTIONS(2977), 1, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2991), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2993), 1, anon_sym_COLON, - ACTIONS(2983), 1, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(2987), 1, + ACTIONS(2999), 1, anon_sym_RBRACE, - ACTIONS(2989), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3003), 1, anon_sym_or, STATE(1838), 1, sym_for_in_clause, - STATE(2434), 1, + STATE(2406), 1, aux_sym__collection_elements_repeat1, - STATE(2708), 1, + STATE(2641), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100777] = 13, - ACTIONS(2975), 1, - anon_sym_COMMA, - ACTIONS(2977), 1, + [100896] = 6, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(2981), 1, - anon_sym_COLON, - ACTIONS(2983), 1, - anon_sym_async, - ACTIONS(2985), 1, - anon_sym_for, - ACTIONS(2987), 1, - anon_sym_RBRACE, - ACTIONS(2989), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3013), 1, anon_sym_or, - STATE(1838), 1, - sym_for_in_clause, - STATE(2434), 1, - aux_sym__collection_elements_repeat1, - STATE(2757), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100818] = 13, - ACTIONS(2975), 1, + ACTIONS(3020), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, anon_sym_COMMA, - ACTIONS(2977), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [100923] = 13, + ACTIONS(2987), 1, + anon_sym_COMMA, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2991), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2993), 1, anon_sym_COLON, - ACTIONS(2983), 1, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(2987), 1, + ACTIONS(2999), 1, anon_sym_RBRACE, - ACTIONS(2989), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3003), 1, anon_sym_or, STATE(1838), 1, sym_for_in_clause, - STATE(2434), 1, + STATE(2406), 1, aux_sym__collection_elements_repeat1, - STATE(2734), 1, + STATE(2691), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100859] = 6, - ACTIONS(2967), 1, + [100964] = 4, + ACTIONS(3011), 1, + anon_sym_and, + ACTIONS(3013), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3022), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2969), 1, anon_sym_if, - ACTIONS(2971), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [100987] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3024), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_from, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_and, - ACTIONS(2973), 1, anon_sym_or, + [101006] = 3, + ACTIONS(3011), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3004), 8, + ACTIONS(3024), 11, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [100886] = 13, - ACTIONS(2975), 1, + anon_sym_or, + [101027] = 13, + ACTIONS(2987), 1, anon_sym_COMMA, - ACTIONS(2977), 1, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2991), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2993), 1, anon_sym_COLON, - ACTIONS(2983), 1, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(2987), 1, + ACTIONS(2999), 1, anon_sym_RBRACE, - ACTIONS(2989), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3003), 1, anon_sym_or, STATE(1838), 1, sym_for_in_clause, - STATE(2434), 1, + STATE(2406), 1, aux_sym__collection_elements_repeat1, - STATE(2704), 1, + STATE(2772), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100927] = 13, - ACTIONS(2975), 1, + [101068] = 13, + ACTIONS(2987), 1, anon_sym_COMMA, - ACTIONS(2977), 1, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2991), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2993), 1, anon_sym_COLON, - ACTIONS(2983), 1, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(2987), 1, + ACTIONS(2999), 1, anon_sym_RBRACE, - ACTIONS(2989), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3003), 1, anon_sym_or, STATE(1838), 1, sym_for_in_clause, - STATE(2434), 1, + STATE(2406), 1, aux_sym__collection_elements_repeat1, - STATE(2713), 1, + STATE(2651), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [100968] = 13, - ACTIONS(2975), 1, + [101109] = 13, + ACTIONS(2987), 1, anon_sym_COMMA, - ACTIONS(2977), 1, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2991), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2993), 1, anon_sym_COLON, - ACTIONS(2983), 1, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(2987), 1, + ACTIONS(2999), 1, anon_sym_RBRACE, - ACTIONS(2989), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3003), 1, anon_sym_or, STATE(1838), 1, sym_for_in_clause, - STATE(2434), 1, + STATE(2406), 1, aux_sym__collection_elements_repeat1, - STATE(2692), 1, + STATE(2728), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101009] = 13, - ACTIONS(2975), 1, + [101150] = 13, + ACTIONS(2987), 1, anon_sym_COMMA, - ACTIONS(2977), 1, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2991), 1, anon_sym_if, - ACTIONS(2981), 1, + ACTIONS(2993), 1, anon_sym_COLON, - ACTIONS(2983), 1, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(2987), 1, + ACTIONS(2999), 1, anon_sym_RBRACE, - ACTIONS(2989), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3003), 1, anon_sym_or, STATE(1838), 1, sym_for_in_clause, - STATE(2434), 1, + STATE(2406), 1, aux_sym__collection_elements_repeat1, - STATE(2604), 1, + STATE(2720), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101050] = 2, + [101191] = 6, + ACTIONS(3007), 1, + anon_sym_as, + ACTIONS(3009), 1, + anon_sym_if, + ACTIONS(3011), 1, + anon_sym_and, + ACTIONS(3013), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 12, + ACTIONS(3026), 8, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_from, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + [101218] = 13, + ACTIONS(2987), 1, + anon_sym_COMMA, + ACTIONS(2989), 1, + anon_sym_as, + ACTIONS(2991), 1, + anon_sym_if, + ACTIONS(2993), 1, + anon_sym_COLON, + ACTIONS(2995), 1, + anon_sym_async, + ACTIONS(2997), 1, + anon_sym_for, + ACTIONS(2999), 1, + anon_sym_RBRACE, + ACTIONS(3001), 1, anon_sym_and, + ACTIONS(3003), 1, anon_sym_or, - [101069] = 2, + STATE(1838), 1, + sym_for_in_clause, + STATE(2406), 1, + aux_sym__collection_elements_repeat1, + STATE(2613), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101259] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3002), 12, + ACTIONS(3028), 12, sym__newline, anon_sym_SEMI, anon_sym_DOT, @@ -111457,916 +112138,726 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [101088] = 12, - ACTIONS(3008), 1, + [101278] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3030), 1, + anon_sym_LBRACE, + ACTIONS(3036), 1, + anon_sym_BSLASH, + ACTIONS(3039), 1, + sym_string_end, + STATE(1809), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3033), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1674), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [101308] = 12, + ACTIONS(3041), 1, anon_sym_RPAREN, - ACTIONS(3010), 1, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(3012), 1, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3016), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(3018), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - STATE(1859), 1, + STATE(1849), 1, sym_for_in_clause, - STATE(2346), 1, + STATE(2481), 1, aux_sym__collection_elements_repeat1, - STATE(2653), 1, + STATE(2723), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101346] = 12, + ACTIONS(3045), 1, + anon_sym_as, + ACTIONS(3047), 1, + anon_sym_if, + ACTIONS(3049), 1, + anon_sym_async, + ACTIONS(3051), 1, + anon_sym_for, + ACTIONS(3053), 1, + anon_sym_and, + ACTIONS(3055), 1, + anon_sym_or, + ACTIONS(3057), 1, + anon_sym_RPAREN, + ACTIONS(3059), 1, + anon_sym_COMMA, + STATE(1849), 1, + sym_for_in_clause, + STATE(2344), 1, + aux_sym_argument_list_repeat1, + STATE(2723), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101126] = 8, + [101384] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3030), 1, + ACTIONS(3067), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1667), 3, + STATE(1679), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101156] = 8, + [101414] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3032), 1, + ACTIONS(3069), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1697), 3, + STATE(1674), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101186] = 12, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3016), 1, - anon_sym_async, - ACTIONS(3018), 1, - anon_sym_for, - ACTIONS(3020), 1, - anon_sym_and, - ACTIONS(3022), 1, - anon_sym_or, - ACTIONS(3034), 1, - anon_sym_RPAREN, - ACTIONS(3036), 1, - anon_sym_COMMA, - STATE(1859), 1, - sym_for_in_clause, - STATE(2248), 1, - aux_sym_argument_list_repeat1, - STATE(2752), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101224] = 8, + [101444] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3038), 1, + ACTIONS(3071), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1697), 3, + STATE(1674), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101254] = 6, - ACTIONS(2953), 1, + [101474] = 12, + ACTIONS(3043), 1, + anon_sym_COMMA, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(2955), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(2961), 1, + ACTIONS(3049), 1, + anon_sym_async, + ACTIONS(3051), 1, + anon_sym_for, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(3055), 1, anon_sym_or, + ACTIONS(3073), 1, + anon_sym_RPAREN, + STATE(1849), 1, + sym_for_in_clause, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, + STATE(2699), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2965), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [101280] = 3, - ACTIONS(3040), 1, + [101512] = 12, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3006), 10, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3047), 1, anon_sym_if, - anon_sym_COLON, + ACTIONS(3049), 1, anon_sym_async, + ACTIONS(3051), 1, anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(3053), 1, anon_sym_and, + ACTIONS(3055), 1, anon_sym_or, - [101300] = 8, + ACTIONS(3075), 1, + anon_sym_RPAREN, + ACTIONS(3077), 1, + anon_sym_COMMA, + STATE(1849), 1, + sym_for_in_clause, + STATE(2369), 1, + aux_sym_argument_list_repeat1, + STATE(2699), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [101550] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3042), 1, + ACTIONS(3079), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1675), 3, + STATE(1716), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101330] = 6, - ACTIONS(2953), 1, + [101580] = 6, + ACTIONS(2975), 1, anon_sym_as, - ACTIONS(2955), 1, + ACTIONS(2977), 1, anon_sym_if, - ACTIONS(2961), 1, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(2985), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3000), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [101356] = 3, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3002), 10, + ACTIONS(3005), 7, anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [101376] = 8, + [101606] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3046), 1, + ACTIONS(3081), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1697), 3, + STATE(1686), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101406] = 12, - ACTIONS(3010), 1, - anon_sym_COMMA, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3016), 1, - anon_sym_async, - ACTIONS(3018), 1, - anon_sym_for, - ACTIONS(3020), 1, - anon_sym_and, - ACTIONS(3022), 1, - anon_sym_or, - ACTIONS(3048), 1, - anon_sym_RPAREN, - STATE(1859), 1, - sym_for_in_clause, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, - STATE(2622), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101444] = 12, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3016), 1, - anon_sym_async, - ACTIONS(3018), 1, - anon_sym_for, - ACTIONS(3020), 1, - anon_sym_and, - ACTIONS(3022), 1, - anon_sym_or, - ACTIONS(3050), 1, - anon_sym_RPAREN, - ACTIONS(3052), 1, - anon_sym_COMMA, - STATE(1859), 1, - sym_for_in_clause, - STATE(2290), 1, - aux_sym_argument_list_repeat1, - STATE(2622), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101482] = 12, - ACTIONS(3010), 1, + [101636] = 12, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(3012), 1, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3016), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(3018), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3054), 1, + ACTIONS(3083), 1, anon_sym_RPAREN, - STATE(1859), 1, + STATE(1849), 1, sym_for_in_clause, - STATE(2346), 1, + STATE(2481), 1, aux_sym__collection_elements_repeat1, - STATE(2739), 1, + STATE(2729), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101520] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3024), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, - anon_sym_BSLASH, - ACTIONS(3056), 1, - sym_string_end, - STATE(1783), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3026), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1697), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101550] = 4, - ACTIONS(2961), 1, - anon_sym_and, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3002), 9, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_or, - [101572] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3024), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, - anon_sym_BSLASH, - ACTIONS(3058), 1, - sym_string_end, - STATE(1783), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3026), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1682), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [101602] = 8, + [101674] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3060), 1, + ACTIONS(3085), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1697), 3, + STATE(1674), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101632] = 12, - ACTIONS(3010), 1, + [101704] = 12, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(3012), 1, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3016), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(3018), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3062), 1, + ACTIONS(3087), 1, anon_sym_RPAREN, - STATE(1859), 1, + STATE(1849), 1, sym_for_in_clause, - STATE(2346), 1, + STATE(2481), 1, aux_sym__collection_elements_repeat1, - STATE(2693), 1, - sym__comprehension_clauses, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [101670] = 12, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3016), 1, - anon_sym_async, - ACTIONS(3018), 1, - anon_sym_for, - ACTIONS(3020), 1, - anon_sym_and, - ACTIONS(3022), 1, - anon_sym_or, - ACTIONS(3064), 1, - anon_sym_RPAREN, - ACTIONS(3066), 1, - anon_sym_COMMA, - STATE(1859), 1, - sym_for_in_clause, - STATE(2337), 1, - aux_sym_argument_list_repeat1, - STATE(2693), 1, + STATE(2694), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101708] = 9, - ACTIONS(2967), 1, - anon_sym_as, - ACTIONS(2969), 1, - anon_sym_if, - ACTIONS(2971), 1, - anon_sym_and, - ACTIONS(2973), 1, - anon_sym_or, - ACTIONS(3070), 1, - anon_sym_COMMA, - STATE(2111), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3068), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(2951), 3, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_PIPE, - [101740] = 8, + [101742] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3072), 1, + ACTIONS(3089), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1689), 3, + STATE(1674), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101770] = 12, - ACTIONS(3012), 1, + [101772] = 12, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3016), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(3018), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3074), 1, + ACTIONS(3091), 1, anon_sym_RPAREN, - ACTIONS(3076), 1, + ACTIONS(3093), 1, anon_sym_COMMA, - STATE(1859), 1, + STATE(1849), 1, sym_for_in_clause, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, - STATE(2752), 1, + STATE(2398), 1, + aux_sym_argument_list_repeat1, + STATE(2694), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101808] = 12, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3016), 1, - anon_sym_async, - ACTIONS(3018), 1, - anon_sym_for, - ACTIONS(3020), 1, + [101810] = 5, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(2985), 1, anon_sym_or, - ACTIONS(3079), 1, - anon_sym_RPAREN, - ACTIONS(3081), 1, - anon_sym_COMMA, - STATE(1859), 1, - sym_for_in_clause, - STATE(2376), 1, - aux_sym_argument_list_repeat1, - STATE(2739), 1, - sym__comprehension_clauses, + ACTIONS(3095), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101846] = 8, + ACTIONS(3015), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + [101834] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3083), 1, + ACTIONS(3098), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1697), 3, + STATE(1694), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101876] = 12, - ACTIONS(3012), 1, + [101864] = 6, + ACTIONS(2975), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(2977), 1, anon_sym_if, - ACTIONS(3016), 1, - anon_sym_async, - ACTIONS(3018), 1, - anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(2985), 1, anon_sym_or, - ACTIONS(3085), 1, - anon_sym_RPAREN, - ACTIONS(3087), 1, - anon_sym_COMMA, - STATE(1859), 1, - sym_for_in_clause, - STATE(2364), 1, - aux_sym_argument_list_repeat1, - STATE(2653), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [101914] = 8, + ACTIONS(3026), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + [101890] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3089), 1, + ACTIONS(3100), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1692), 3, + STATE(1688), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101944] = 8, + [101920] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3091), 1, + ACTIONS(3102), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1697), 3, + STATE(1674), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [101974] = 12, - ACTIONS(3010), 1, + [101950] = 12, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(3012), 1, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3016), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(3018), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3093), 1, + ACTIONS(3104), 1, anon_sym_RPAREN, - STATE(1859), 1, + STATE(1849), 1, sym_for_in_clause, - STATE(2346), 1, + STATE(2481), 1, aux_sym__collection_elements_repeat1, - STATE(2681), 1, + STATE(2609), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102012] = 6, - ACTIONS(2953), 1, - anon_sym_as, - ACTIONS(2955), 1, - anon_sym_if, - ACTIONS(2961), 1, - anon_sym_and, - ACTIONS(2963), 1, - anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3004), 7, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [102038] = 12, - ACTIONS(3012), 1, + [101988] = 12, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3016), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(3018), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3095), 1, + ACTIONS(3106), 1, anon_sym_RPAREN, - ACTIONS(3097), 1, + ACTIONS(3108), 1, anon_sym_COMMA, - STATE(1859), 1, + STATE(1849), 1, sym_for_in_clause, - STATE(2388), 1, + STATE(2418), 1, aux_sym_argument_list_repeat1, - STATE(2681), 1, + STATE(2609), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102076] = 8, + [102026] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3099), 1, + ACTIONS(3110), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1698), 3, + STATE(1727), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102106] = 8, - ACTIONS(3), 1, + [102056] = 12, + ACTIONS(3045), 1, + anon_sym_as, + ACTIONS(3047), 1, + anon_sym_if, + ACTIONS(3049), 1, + anon_sym_async, + ACTIONS(3051), 1, + anon_sym_for, + ACTIONS(3053), 1, + anon_sym_and, + ACTIONS(3055), 1, + anon_sym_or, + ACTIONS(3112), 1, + anon_sym_RPAREN, + ACTIONS(3114), 1, + anon_sym_COMMA, + STATE(1849), 1, + sym_for_in_clause, + STATE(2377), 1, + aux_sym_argument_list_repeat1, + STATE(2681), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3101), 1, - anon_sym_LBRACE, - ACTIONS(3107), 1, - anon_sym_BSLASH, - ACTIONS(3110), 1, - sym_string_end, - STATE(1783), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3104), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1697), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102136] = 8, + [102094] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3112), 1, + ACTIONS(3116), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1697), 3, + STATE(1708), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102166] = 12, - ACTIONS(3010), 1, + [102124] = 12, + ACTIONS(2975), 1, + anon_sym_as, + ACTIONS(2977), 1, + anon_sym_if, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(2983), 1, + anon_sym_and, + ACTIONS(2985), 1, + anon_sym_or, + ACTIONS(2999), 1, + anon_sym_RBRACK, + ACTIONS(3118), 1, + anon_sym_COMMA, + STATE(1884), 1, + sym_for_in_clause, + STATE(2471), 1, + aux_sym__collection_elements_repeat1, + STATE(2671), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102162] = 12, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(3012), 1, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3016), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(3018), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3114), 1, + ACTIONS(3120), 1, anon_sym_RPAREN, - STATE(1859), 1, + STATE(1849), 1, sym_for_in_clause, - STATE(2346), 1, + STATE(2481), 1, aux_sym__collection_elements_repeat1, - STATE(2600), 1, + STATE(2637), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102204] = 12, - ACTIONS(3012), 1, + [102200] = 12, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3016), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(3018), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3116), 1, + ACTIONS(3122), 1, anon_sym_RPAREN, - ACTIONS(3118), 1, + ACTIONS(3124), 1, anon_sym_COMMA, - STATE(1859), 1, + STATE(1849), 1, sym_for_in_clause, - STATE(2336), 1, + STATE(2358), 1, aux_sym_argument_list_repeat1, - STATE(2590), 1, + STATE(2729), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102242] = 12, - ACTIONS(3012), 1, + [102238] = 12, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3016), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(3018), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3120), 1, + ACTIONS(3126), 1, anon_sym_RPAREN, - ACTIONS(3122), 1, + ACTIONS(3128), 1, anon_sym_COMMA, - STATE(1859), 1, + STATE(1849), 1, sym_for_in_clause, - STATE(2412), 1, + STATE(2306), 1, aux_sym_argument_list_repeat1, - STATE(2600), 1, + STATE(2637), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102280] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3024), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, - anon_sym_BSLASH, - ACTIONS(3124), 1, - sym_string_end, - STATE(1783), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3026), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1703), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102310] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3024), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, - anon_sym_BSLASH, - ACTIONS(3126), 1, - sym_string_end, - STATE(1783), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3026), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1697), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102340] = 5, - ACTIONS(2961), 1, + [102276] = 5, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(2985), 1, anon_sym_or, - ACTIONS(3128), 1, + ACTIONS(3130), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2993), 8, + ACTIONS(3022), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -112375,135 +112866,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_RBRACK, anon_sym_PIPE, - [102364] = 12, - ACTIONS(2953), 1, + [102300] = 12, + ACTIONS(2975), 1, anon_sym_as, - ACTIONS(2955), 1, + ACTIONS(2977), 1, anon_sym_if, - ACTIONS(2957), 1, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2959), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(2961), 1, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(2985), 1, anon_sym_or, - ACTIONS(2987), 1, + ACTIONS(2999), 1, anon_sym_RBRACK, - ACTIONS(3131), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - STATE(1858), 1, + STATE(1884), 1, sym_for_in_clause, - STATE(2397), 1, + STATE(2471), 1, aux_sym__collection_elements_repeat1, - STATE(2753), 1, + STATE(2743), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102402] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3024), 1, - anon_sym_LBRACE, - ACTIONS(3028), 1, - anon_sym_BSLASH, - ACTIONS(3133), 1, - sym_string_end, - STATE(1783), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3026), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - STATE(1679), 3, - sym_string_content, - sym_interpolation, - aux_sym_string_repeat1, - [102432] = 12, - ACTIONS(2953), 1, + [102338] = 12, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(2955), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(2957), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(2959), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(2961), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(2987), 1, - anon_sym_RBRACK, - ACTIONS(3131), 1, + ACTIONS(3132), 1, + anon_sym_RPAREN, + ACTIONS(3134), 1, anon_sym_COMMA, - STATE(1858), 1, + STATE(1849), 1, sym_for_in_clause, - STATE(2397), 1, + STATE(2481), 1, aux_sym__collection_elements_repeat1, - STATE(2591), 1, + STATE(2668), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102470] = 8, + [102376] = 9, + ACTIONS(3007), 1, + anon_sym_as, + ACTIONS(3009), 1, + anon_sym_if, + ACTIONS(3011), 1, + anon_sym_and, + ACTIONS(3013), 1, + anon_sym_or, + ACTIONS(3139), 1, + anon_sym_COMMA, + STATE(2113), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3137), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2973), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [102408] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3024), 1, + ACTIONS(3061), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3065), 1, anon_sym_BSLASH, - ACTIONS(3135), 1, + ACTIONS(3141), 1, sym_string_end, - STATE(1783), 2, + STATE(1809), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3026), 3, + ACTIONS(3063), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - STATE(1669), 3, + STATE(1674), 3, sym_string_content, sym_interpolation, aux_sym_string_repeat1, - [102500] = 12, - ACTIONS(2953), 1, + [102438] = 12, + ACTIONS(2975), 1, anon_sym_as, - ACTIONS(2955), 1, + ACTIONS(2977), 1, anon_sym_if, - ACTIONS(2957), 1, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2959), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(2961), 1, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(2985), 1, anon_sym_or, - ACTIONS(2987), 1, + ACTIONS(2999), 1, anon_sym_RBRACK, - ACTIONS(3131), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - STATE(1858), 1, + STATE(1884), 1, sym_for_in_clause, - STATE(2397), 1, + STATE(2471), 1, aux_sym__collection_elements_repeat1, - STATE(2686), 1, + STATE(2643), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102538] = 3, - ACTIONS(2088), 1, + [102476] = 3, + ACTIONS(3143), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2074), 10, + ACTIONS(3024), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_if, @@ -112514,267 +113006,496 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102558] = 5, - ACTIONS(2961), 1, - anon_sym_and, - ACTIONS(2963), 1, - anon_sym_or, - ACTIONS(3137), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2998), 8, - anon_sym_DOT, + [102496] = 12, + ACTIONS(3043), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - anon_sym_PIPE, - [102582] = 12, - ACTIONS(2953), 1, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(2955), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(2957), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(2959), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(2961), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(2987), 1, - anon_sym_RBRACK, - ACTIONS(3131), 1, - anon_sym_COMMA, - STATE(1858), 1, + ACTIONS(3132), 1, + anon_sym_RPAREN, + STATE(1849), 1, sym_for_in_clause, - STATE(2397), 1, + STATE(2481), 1, aux_sym__collection_elements_repeat1, - STATE(2697), 1, + STATE(2668), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102620] = 12, - ACTIONS(2953), 1, + [102534] = 12, + ACTIONS(2975), 1, anon_sym_as, - ACTIONS(2955), 1, + ACTIONS(2977), 1, anon_sym_if, - ACTIONS(2957), 1, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(2959), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(2961), 1, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(2985), 1, anon_sym_or, - ACTIONS(2987), 1, + ACTIONS(2999), 1, anon_sym_RBRACK, - ACTIONS(3131), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - STATE(1858), 1, + STATE(1884), 1, sym_for_in_clause, - STATE(2397), 1, + STATE(2471), 1, aux_sym__collection_elements_repeat1, - STATE(2685), 1, + STATE(2724), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102658] = 12, - ACTIONS(2953), 1, + [102572] = 4, + ACTIONS(2983), 1, + anon_sym_and, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(2955), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3024), 9, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2957), 1, + anon_sym_COLON, anon_sym_async, - ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2961), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_or, + [102594] = 12, + ACTIONS(3045), 1, + anon_sym_as, + ACTIONS(3047), 1, + anon_sym_if, + ACTIONS(3049), 1, + anon_sym_async, + ACTIONS(3051), 1, + anon_sym_for, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(2987), 1, + ACTIONS(3145), 1, + anon_sym_RPAREN, + ACTIONS(3147), 1, + anon_sym_COMMA, + STATE(1849), 1, + sym_for_in_clause, + STATE(2266), 1, + aux_sym_argument_list_repeat1, + STATE(2668), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [102632] = 12, + ACTIONS(2975), 1, + anon_sym_as, + ACTIONS(2977), 1, + anon_sym_if, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(2983), 1, + anon_sym_and, + ACTIONS(2985), 1, + anon_sym_or, + ACTIONS(2999), 1, anon_sym_RBRACK, - ACTIONS(3131), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - STATE(1858), 1, + STATE(1884), 1, sym_for_in_clause, - STATE(2397), 1, + STATE(2471), 1, aux_sym__collection_elements_repeat1, - STATE(2661), 1, + STATE(2592), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102696] = 12, - ACTIONS(2953), 1, + [102670] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3061), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, + anon_sym_BSLASH, + ACTIONS(3149), 1, + sym_string_end, + STATE(1809), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3063), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1674), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102700] = 3, + ACTIONS(3151), 1, anon_sym_as, - ACTIONS(2955), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3028), 10, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2957), 1, + anon_sym_COLON, anon_sym_async, - ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2961), 1, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, - ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2987), 1, + [102720] = 12, + ACTIONS(2975), 1, + anon_sym_as, + ACTIONS(2977), 1, + anon_sym_if, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(2983), 1, + anon_sym_and, + ACTIONS(2985), 1, + anon_sym_or, + ACTIONS(2999), 1, anon_sym_RBRACK, - ACTIONS(3131), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - STATE(1858), 1, + STATE(1884), 1, sym_for_in_clause, - STATE(2397), 1, + STATE(2471), 1, aux_sym__collection_elements_repeat1, - STATE(2682), 1, + STATE(2696), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102734] = 12, - ACTIONS(2953), 1, + [102758] = 3, + ACTIONS(2112), 1, anon_sym_as, - ACTIONS(2955), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2098), 10, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_if, - ACTIONS(2957), 1, + anon_sym_COLON, anon_sym_async, - ACTIONS(2959), 1, anon_sym_for, - ACTIONS(2961), 1, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, - ACTIONS(2963), 1, anon_sym_or, - ACTIONS(2987), 1, + [102778] = 12, + ACTIONS(2975), 1, + anon_sym_as, + ACTIONS(2977), 1, + anon_sym_if, + ACTIONS(2979), 1, + anon_sym_async, + ACTIONS(2981), 1, + anon_sym_for, + ACTIONS(2983), 1, + anon_sym_and, + ACTIONS(2985), 1, + anon_sym_or, + ACTIONS(2999), 1, anon_sym_RBRACK, - ACTIONS(3131), 1, + ACTIONS(3118), 1, anon_sym_COMMA, - STATE(1858), 1, + STATE(1884), 1, sym_for_in_clause, - STATE(2397), 1, + STATE(2471), 1, aux_sym__collection_elements_repeat1, - STATE(2601), 1, + STATE(2659), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102772] = 12, - ACTIONS(3010), 1, - anon_sym_COMMA, - ACTIONS(3012), 1, + [102816] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3061), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, + anon_sym_BSLASH, + ACTIONS(3153), 1, + sym_string_end, + STATE(1809), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3063), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1725), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102846] = 12, + ACTIONS(2975), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(2977), 1, anon_sym_if, - ACTIONS(3016), 1, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(3018), 1, + ACTIONS(2981), 1, anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(2985), 1, anon_sym_or, - ACTIONS(3139), 1, - anon_sym_RPAREN, - STATE(1859), 1, + ACTIONS(2999), 1, + anon_sym_RBRACK, + ACTIONS(3118), 1, + anon_sym_COMMA, + STATE(1884), 1, sym_for_in_clause, - STATE(2346), 1, + STATE(2471), 1, aux_sym__collection_elements_repeat1, - STATE(2590), 1, + STATE(2610), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102810] = 12, - ACTIONS(3010), 1, + [102884] = 12, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(3012), 1, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3014), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3016), 1, + ACTIONS(3049), 1, anon_sym_async, - ACTIONS(3018), 1, + ACTIONS(3051), 1, anon_sym_for, - ACTIONS(3020), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3074), 1, + ACTIONS(3155), 1, anon_sym_RPAREN, - STATE(1859), 1, + STATE(1849), 1, sym_for_in_clause, - STATE(2346), 1, + STATE(2481), 1, aux_sym__collection_elements_repeat1, - STATE(2752), 1, + STATE(2681), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [102848] = 2, + [102922] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3061), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, + anon_sym_BSLASH, + ACTIONS(3157), 1, + sym_string_end, + STATE(1809), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3063), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1678), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102952] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3061), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, + anon_sym_BSLASH, + ACTIONS(3159), 1, + sym_string_end, + STATE(1809), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3063), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1674), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [102982] = 6, + ACTIONS(2975), 1, + anon_sym_as, + ACTIONS(2977), 1, + anon_sym_if, + ACTIONS(2983), 1, + anon_sym_and, + ACTIONS(2985), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 10, + ACTIONS(3020), 7, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_PIPE, + [103008] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3061), 1, + anon_sym_LBRACE, + ACTIONS(3065), 1, + anon_sym_BSLASH, + ACTIONS(3161), 1, + sym_string_end, + STATE(1809), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3063), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1674), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [103038] = 6, + ACTIONS(3163), 1, anon_sym_as, + ACTIONS(3165), 1, anon_sym_if, + ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, + [103063] = 6, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, anon_sym_and, + ACTIONS(3177), 1, anon_sym_or, - [102865] = 8, - ACTIONS(3141), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3026), 6, + anon_sym_DOT, anon_sym_COMMA, - ACTIONS(3143), 1, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [103088] = 8, + ACTIONS(3179), 1, + anon_sym_COMMA, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3145), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3187), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3189), 1, anon_sym_or, - STATE(1889), 1, + STATE(1984), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3147), 4, + ACTIONS(3185), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [102894] = 6, - ACTIONS(3153), 1, + [103117] = 8, + ACTIONS(3179), 1, + anon_sym_COMMA, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3187), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3189), 1, anon_sym_or, + STATE(1984), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2965), 6, + ACTIONS(3191), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103146] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3028), 10, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [102919] = 2, + anon_sym_and, + anon_sym_or, + [103163] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2074), 10, + ACTIONS(2098), 10, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, @@ -112785,11 +113506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102936] = 2, + [103180] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2074), 10, + ACTIONS(2098), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -112800,103 +113521,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [102953] = 6, - ACTIONS(2967), 1, - anon_sym_as, - ACTIONS(2969), 1, - anon_sym_if, - ACTIONS(2971), 1, - anon_sym_and, - ACTIONS(2973), 1, - anon_sym_or, + [103197] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2951), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3028), 10, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [102978] = 6, - ACTIONS(3161), 1, + anon_sym_and, + anon_sym_or, + [103214] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3004), 6, + ACTIONS(3020), 6, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103003] = 5, - ACTIONS(3165), 1, + [103239] = 6, + ACTIONS(3007), 1, + anon_sym_as, + ACTIONS(3009), 1, + anon_sym_if, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3013), 1, anon_sym_or, - ACTIONS(3169), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2993), 7, + ACTIONS(2973), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103026] = 6, - ACTIONS(3153), 1, + [103264] = 6, + ACTIONS(3163), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3165), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3167), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3169), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3000), 6, + ACTIONS(3005), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103051] = 4, - ACTIONS(3165), 1, + [103289] = 5, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, + ACTIONS(3193), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2998), 8, + ACTIONS(3015), 7, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103072] = 2, + [103312] = 4, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3002), 10, + ACTIONS(3022), 8, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -112905,15 +113628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103089] = 3, - ACTIONS(3165), 1, - anon_sym_and, + [103333] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3002), 9, + ACTIONS(3024), 10, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -112922,383 +113641,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_EQ, anon_sym_PIPE, + anon_sym_and, anon_sym_or, - [103108] = 6, - ACTIONS(3161), 1, + [103350] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3000), 6, + ACTIONS(3005), 6, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103133] = 6, - ACTIONS(3153), 1, - anon_sym_as, - ACTIONS(3155), 1, - anon_sym_if, - ACTIONS(3157), 1, + [103375] = 5, + ACTIONS(3167), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3169), 1, anon_sym_or, + ACTIONS(3196), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3004), 6, + ACTIONS(3015), 7, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103158] = 6, - ACTIONS(3153), 1, - anon_sym_as, - ACTIONS(3155), 1, - anon_sym_if, - ACTIONS(3157), 1, + [103398] = 4, + ACTIONS(3167), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3169), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2951), 6, + ACTIONS(3022), 8, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [103183] = 8, - ACTIONS(3141), 1, - anon_sym_COMMA, - ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3149), 1, - anon_sym_and, - ACTIONS(3151), 1, - anon_sym_or, - STATE(1889), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3172), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [103212] = 2, + anon_sym_PIPE, + [103419] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 10, + ACTIONS(3024), 10, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103229] = 5, - ACTIONS(3157), 1, + [103436] = 3, + ACTIONS(3167), 1, anon_sym_and, - ACTIONS(3159), 1, - anon_sym_or, - ACTIONS(3174), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2993), 7, + ACTIONS(3024), 9, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103252] = 4, - ACTIONS(3157), 1, + anon_sym_or, + [103455] = 6, + ACTIONS(3163), 1, + anon_sym_as, + ACTIONS(3165), 1, + anon_sym_if, + ACTIONS(3167), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3169), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2998), 8, + ACTIONS(2973), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103273] = 2, + [103480] = 3, + ACTIONS(3175), 1, + anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3002), 10, + ACTIONS(3024), 9, anon_sym_DOT, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, + anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - anon_sym_and, anon_sym_or, - [103290] = 6, - ACTIONS(3161), 1, - anon_sym_as, + [103499] = 6, ACTIONS(3163), 1, - anon_sym_if, + anon_sym_as, ACTIONS(3165), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2965), 6, + ACTIONS(3026), 6, anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, - anon_sym_else, anon_sym_EQ, anon_sym_PIPE, - [103315] = 3, - ACTIONS(3157), 1, - anon_sym_and, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3002), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, + [103524] = 6, + ACTIONS(3199), 1, anon_sym_as, + ACTIONS(3201), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(3203), 1, + anon_sym_and, + ACTIONS(3205), 1, anon_sym_or, - [103334] = 3, - ACTIONS(3040), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 8, + ACTIONS(3026), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [103352] = 5, - ACTIONS(2989), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [103548] = 4, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2991), 1, - anon_sym_or, - ACTIONS(3137), 1, + ACTIONS(3143), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2998), 6, + ACTIONS(3024), 7, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103374] = 3, - ACTIONS(3044), 1, + anon_sym_or, + [103568] = 6, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3002), 8, - anon_sym_COMMA, + ACTIONS(3183), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, + ACTIONS(3187), 1, anon_sym_and, + ACTIONS(3189), 1, anon_sym_or, - [103392] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3002), 9, - anon_sym_DOT, + ACTIONS(3005), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103408] = 6, - ACTIONS(3177), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103592] = 6, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3205), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3004), 5, + ACTIONS(3005), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103432] = 5, - ACTIONS(3185), 1, + [103616] = 5, + ACTIONS(3207), 1, anon_sym_DOT, - ACTIONS(3189), 1, + ACTIONS(3211), 1, anon_sym_EQ, - STATE(1772), 1, + STATE(1778), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 6, + ACTIONS(3209), 6, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [103454] = 4, - ACTIONS(3185), 1, - anon_sym_DOT, - STATE(1772), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3187), 7, - anon_sym_import, - anon_sym_LPAREN, - anon_sym_COMMA, + [103638] = 6, + ACTIONS(3181), 1, anon_sym_as, + ACTIONS(3183), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [103474] = 2, + ACTIONS(3187), 1, + anon_sym_and, + ACTIONS(3189), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2074), 9, - anon_sym_DOT, + ACTIONS(3026), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_and, - anon_sym_or, - [103490] = 4, - ACTIONS(2989), 1, - anon_sym_and, - ACTIONS(3044), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [103662] = 3, + ACTIONS(2112), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3002), 7, + ACTIONS(2098), 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, - [103510] = 3, - ACTIONS(3181), 1, + [103680] = 6, + ACTIONS(3199), 1, + anon_sym_as, + ACTIONS(3201), 1, + anon_sym_if, + ACTIONS(3203), 1, anon_sym_and, + ACTIONS(3205), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3002), 8, + ACTIONS(3020), 5, anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_or, - [103528] = 6, - ACTIONS(3177), 1, + [103704] = 6, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3205), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2965), 5, + ACTIONS(2973), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103552] = 6, - ACTIONS(2977), 1, + [103728] = 6, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2991), 1, anon_sym_if, - ACTIONS(2989), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3003), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3000), 5, + ACTIONS(3005), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103576] = 2, + [103752] = 4, + ACTIONS(3207), 1, + anon_sym_DOT, + STATE(1778), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3209), 7, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [103772] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 9, + ACTIONS(2098), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113308,199 +113986,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_and, anon_sym_or, - [103592] = 3, - ACTIONS(2088), 1, + [103788] = 5, + ACTIONS(3203), 1, + anon_sym_and, + ACTIONS(3205), 1, + anon_sym_or, + ACTIONS(3213), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2074), 8, + ACTIONS(3015), 6, + anon_sym_DOT, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - [103610] = 6, - ACTIONS(2977), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [103810] = 6, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(2979), 1, + ACTIONS(2991), 1, anon_sym_if, - ACTIONS(2989), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3003), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2965), 5, + ACTIONS(3026), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103634] = 6, - ACTIONS(3177), 1, - anon_sym_as, - ACTIONS(3179), 1, - anon_sym_if, - ACTIONS(3181), 1, + [103834] = 4, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3205), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2951), 5, + ACTIONS(3022), 7, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [103658] = 6, - ACTIONS(3143), 1, + [103854] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3024), 9, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3149), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, anon_sym_and, - ACTIONS(3151), 1, + anon_sym_or, + [103870] = 6, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, + anon_sym_if, + ACTIONS(3187), 1, + anon_sym_and, + ACTIONS(3189), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3000), 5, + ACTIONS(3216), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103682] = 2, + [103894] = 9, + ACTIONS(3007), 1, + anon_sym_as, + ACTIONS(3009), 1, + anon_sym_if, + ACTIONS(3011), 1, + anon_sym_and, + ACTIONS(3013), 1, + anon_sym_or, + ACTIONS(3220), 1, + anon_sym_from, + ACTIONS(3222), 1, + anon_sym_COMMA, + STATE(2005), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3006), 9, - anon_sym_COMMA, + ACTIONS(3218), 2, + sym__newline, + anon_sym_SEMI, + [103924] = 6, + ACTIONS(3181), 1, anon_sym_as, + ACTIONS(3183), 1, anon_sym_if, + ACTIONS(3187), 1, + anon_sym_and, + ACTIONS(3189), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3020), 5, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, sym_type_conversion, - [103698] = 6, - ACTIONS(3143), 1, - anon_sym_as, - ACTIONS(3145), 1, - anon_sym_if, - ACTIONS(3149), 1, - anon_sym_and, - ACTIONS(3151), 1, - anon_sym_or, + [103948] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2965), 5, + ACTIONS(2098), 9, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, sym_type_conversion, - [103722] = 6, - ACTIONS(3143), 1, + [103964] = 6, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3145), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3187), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3189), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3004), 5, + ACTIONS(3224), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103746] = 5, - ACTIONS(3149), 1, + [103988] = 5, + ACTIONS(3187), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3189), 1, anon_sym_or, - ACTIONS(3191), 1, + ACTIONS(3226), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2993), 6, + ACTIONS(3015), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [103768] = 6, - ACTIONS(3161), 1, + [104010] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2951), 5, + ACTIONS(2973), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [103792] = 6, - ACTIONS(2977), 1, + [104034] = 4, + ACTIONS(3231), 1, + anon_sym_DOT, + STATE(1773), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3229), 7, + anon_sym_import, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2979), 1, anon_sym_if, - ACTIONS(2989), 1, + anon_sym_COLON, + anon_sym_PIPE, + [104054] = 4, + ACTIONS(3187), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3189), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3004), 5, + ACTIONS(3022), 7, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - anon_sym_async, - anon_sym_for, + anon_sym_EQ, anon_sym_RBRACE, - [103816] = 4, - ACTIONS(3149), 1, + sym_type_conversion, + [104074] = 6, + ACTIONS(2989), 1, + anon_sym_as, + ACTIONS(2991), 1, + anon_sym_if, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3003), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2998), 7, + ACTIONS(3020), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [103836] = 2, + [104098] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3002), 9, + ACTIONS(3024), 9, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -113510,13 +114239,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_or, sym_type_conversion, - [103852] = 3, - ACTIONS(3149), 1, + [104114] = 3, + ACTIONS(3187), 1, anon_sym_and, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3002), 8, + ACTIONS(3024), 8, anon_sym_COMMA, anon_sym_as, anon_sym_if, @@ -113525,15 +114254,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_or, sym_type_conversion, - [103870] = 4, - ACTIONS(3196), 1, + [104132] = 4, + ACTIONS(3207), 1, anon_sym_DOT, - STATE(1767), 1, + STATE(1773), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 7, + ACTIONS(3234), 7, anon_sym_import, anon_sym_LPAREN, anon_sym_COMMA, @@ -113541,115 +114270,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [103890] = 5, - ACTIONS(2989), 1, + [104152] = 5, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3003), 1, anon_sym_or, - ACTIONS(3199), 1, + ACTIONS(3236), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2993), 6, + ACTIONS(3015), 6, anon_sym_COMMA, anon_sym_if, anon_sym_COLON, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [103912] = 2, + [104174] = 5, + ACTIONS(3001), 1, + anon_sym_and, + ACTIONS(3003), 1, + anon_sym_or, + ACTIONS(3130), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2074), 9, + ACTIONS(3022), 6, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - sym_type_conversion, - [103928] = 6, - ACTIONS(3143), 1, - anon_sym_as, - ACTIONS(3145), 1, - anon_sym_if, - ACTIONS(3149), 1, - anon_sym_and, + [104196] = 3, ACTIONS(3151), 1, - anon_sym_or, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3202), 5, + ACTIONS(3028), 8, anon_sym_COMMA, + anon_sym_if, anon_sym_COLON, - anon_sym_EQ, + anon_sym_async, + anon_sym_for, anon_sym_RBRACE, - sym_type_conversion, - [103952] = 5, - ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3183), 1, anon_sym_or, - ACTIONS(3204), 1, + [104214] = 3, + ACTIONS(3143), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2993), 6, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_if, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [103974] = 4, - ACTIONS(3185), 1, - anon_sym_DOT, - STATE(1767), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3207), 7, - anon_sym_import, - anon_sym_LPAREN, + ACTIONS(3024), 8, anon_sym_COMMA, - anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [103994] = 6, - ACTIONS(3143), 1, - anon_sym_as, - ACTIONS(3145), 1, - anon_sym_if, - ACTIONS(3149), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(3151), 1, anon_sym_or, + [104232] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 5, + ACTIONS(3028), 9, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - sym_type_conversion, - [104018] = 4, - ACTIONS(3181), 1, anon_sym_and, - ACTIONS(3183), 1, anon_sym_or, + sym_type_conversion, + [104248] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2998), 7, + ACTIONS(3028), 9, anon_sym_DOT, anon_sym_COMMA, anon_sym_as, @@ -113657,3665 +114360,3671 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [104038] = 9, - ACTIONS(2967), 1, - anon_sym_as, - ACTIONS(2969), 1, - anon_sym_if, - ACTIONS(2971), 1, anon_sym_and, - ACTIONS(2973), 1, anon_sym_or, - ACTIONS(3213), 1, - anon_sym_from, - ACTIONS(3215), 1, - anon_sym_COMMA, - STATE(2076), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3211), 2, - sym__newline, - anon_sym_SEMI, - [104068] = 6, - ACTIONS(3177), 1, - anon_sym_as, - ACTIONS(3179), 1, - anon_sym_if, - ACTIONS(3181), 1, + [104264] = 3, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3183), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3000), 5, + ACTIONS(3024), 8, anon_sym_DOT, anon_sym_COMMA, + anon_sym_as, + anon_sym_if, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [104092] = 9, - ACTIONS(3177), 1, + anon_sym_or, + [104282] = 9, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3205), 1, anon_sym_or, - ACTIONS(3217), 1, + ACTIONS(3239), 1, anon_sym_COMMA, - ACTIONS(3219), 1, + ACTIONS(3241), 1, anon_sym_COLON, - ACTIONS(3221), 1, + ACTIONS(3243), 1, anon_sym_RBRACK, - STATE(2294), 1, + STATE(2372), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104121] = 8, - ACTIONS(2967), 1, + [104311] = 6, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(2969), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3215), 1, - anon_sym_COMMA, - STATE(2076), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3223), 2, - sym__newline, - anon_sym_SEMI, - [104148] = 5, - ACTIONS(3012), 1, + ACTIONS(3020), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [104334] = 6, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(3020), 1, + ACTIONS(2991), 1, + anon_sym_if, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3003), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3225), 5, - anon_sym_RPAREN, + ACTIONS(3245), 4, anon_sym_COMMA, - anon_sym_if, anon_sym_async, anon_sym_for, - [104169] = 9, - ACTIONS(3177), 1, + anon_sym_RBRACE, + [104357] = 9, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3205), 1, anon_sym_or, - ACTIONS(3219), 1, + ACTIONS(3241), 1, anon_sym_COLON, - ACTIONS(3227), 1, + ACTIONS(3247), 1, anon_sym_COMMA, - ACTIONS(3229), 1, + ACTIONS(3249), 1, anon_sym_RBRACK, - STATE(2251), 1, + STATE(2364), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104198] = 8, - ACTIONS(2967), 1, + [104386] = 5, + ACTIONS(3251), 1, + anon_sym_DOT, + ACTIONS(3253), 1, + anon_sym_EQ, + STATE(1835), 1, + aux_sym_dotted_name_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3209), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(2969), 1, + anon_sym_PIPE, + [104407] = 6, + ACTIONS(3007), 1, + anon_sym_as, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3013), 1, anon_sym_or, - ACTIONS(3233), 1, - anon_sym_COMMA, - STATE(2108), 1, - aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3231), 2, + ACTIONS(3224), 4, sym__newline, anon_sym_SEMI, - [104225] = 5, - ACTIONS(2953), 1, + anon_sym_from, + anon_sym_COMMA, + [104430] = 8, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(2961), 1, + ACTIONS(3009), 1, + anon_sym_if, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(3013), 1, anon_sym_or, + ACTIONS(3257), 1, + anon_sym_COMMA, + STATE(2160), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3255), 2, + sym__newline, + anon_sym_SEMI, + [104457] = 4, + ACTIONS(3053), 1, + anon_sym_and, + ACTIONS(3143), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3225), 5, + ACTIONS(3024), 6, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, + anon_sym_or, + [104476] = 9, + ACTIONS(3199), 1, + anon_sym_as, + ACTIONS(3201), 1, + anon_sym_if, + ACTIONS(3203), 1, + anon_sym_and, + ACTIONS(3205), 1, + anon_sym_or, + ACTIONS(3241), 1, + anon_sym_COLON, + ACTIONS(3259), 1, + anon_sym_COMMA, + ACTIONS(3261), 1, anon_sym_RBRACK, - [104246] = 6, - ACTIONS(3), 1, + STATE(2402), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3239), 1, - anon_sym_BSLASH, - ACTIONS(3235), 2, - sym_string_end, - anon_sym_LBRACE, - STATE(1804), 2, - sym__not_escape_sequence, - aux_sym_string_content_repeat1, - ACTIONS(3237), 3, - sym__string_content, - sym_escape_interpolation, - sym_escape_sequence, - [104269] = 5, - ACTIONS(2953), 1, + [104505] = 5, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(2961), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(3003), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3225), 5, + ACTIONS(3263), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [104290] = 6, - ACTIONS(2967), 1, + anon_sym_RBRACE, + [104526] = 8, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(2969), 1, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3013), 1, anon_sym_or, + ACTIONS(3222), 1, + anon_sym_COMMA, + STATE(2005), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 4, + ACTIONS(2950), 2, sym__newline, anon_sym_SEMI, - anon_sym_from, - anon_sym_COMMA, - [104313] = 9, - ACTIONS(3177), 1, + [104553] = 6, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3241), 1, - anon_sym_COMMA, - ACTIONS(3243), 1, - anon_sym_RBRACK, - STATE(2385), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104342] = 5, - ACTIONS(3245), 1, + ACTIONS(3005), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [104576] = 5, + ACTIONS(3265), 1, anon_sym_DOT, - ACTIONS(3247), 1, + ACTIONS(3267), 1, anon_sym_EQ, - STATE(1835), 1, + STATE(1837), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 5, + ACTIONS(3209), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [104363] = 3, - ACTIONS(3040), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3006), 7, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_and, - anon_sym_or, - [104380] = 6, - ACTIONS(2977), 1, + [104597] = 5, + ACTIONS(2975), 1, anon_sym_as, - ACTIONS(2979), 1, - anon_sym_if, - ACTIONS(2989), 1, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(2985), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3249), 4, + ACTIONS(3263), 5, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [104403] = 6, - ACTIONS(3012), 1, + anon_sym_RBRACK, + [104618] = 3, + ACTIONS(3151), 1, anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3020), 1, - anon_sym_and, - ACTIONS(3022), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2965), 4, + ACTIONS(3028), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [104426] = 4, - ACTIONS(316), 1, - sym_string_start, - ACTIONS(3), 2, + anon_sym_and, + anon_sym_or, + [104635] = 6, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - STATE(1013), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3251), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [104445] = 9, - ACTIONS(3177), 1, + ACTIONS(3274), 1, + anon_sym_BSLASH, + ACTIONS(3269), 2, + sym_string_end, + anon_sym_LBRACE, + STATE(1801), 2, + sym__not_escape_sequence, + aux_sym_string_content_repeat1, + ACTIONS(3271), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [104658] = 9, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3205), 1, anon_sym_or, - ACTIONS(3219), 1, + ACTIONS(3241), 1, anon_sym_COLON, - ACTIONS(3253), 1, + ACTIONS(3277), 1, anon_sym_COMMA, - ACTIONS(3255), 1, + ACTIONS(3279), 1, anon_sym_RBRACK, - STATE(2340), 1, + STATE(2421), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104474] = 8, - ACTIONS(2967), 1, + [104687] = 5, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(2969), 1, - anon_sym_if, - ACTIONS(2971), 1, - anon_sym_and, - ACTIONS(2973), 1, - anon_sym_or, - ACTIONS(3215), 1, - anon_sym_COMMA, - STATE(2076), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3172), 2, - sym__newline, - anon_sym_SEMI, - [104501] = 5, - ACTIONS(3020), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3257), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2993), 5, + ACTIONS(3263), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104522] = 5, - ACTIONS(3020), 1, + [104708] = 5, + ACTIONS(3045), 1, + anon_sym_as, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3137), 1, - anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2998), 5, + ACTIONS(3263), 5, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [104543] = 3, - ACTIONS(3044), 1, + [104729] = 9, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3002), 7, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3201), 1, anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(3203), 1, anon_sym_and, + ACTIONS(3205), 1, anon_sym_or, - [104560] = 4, - ACTIONS(3020), 1, - anon_sym_and, - ACTIONS(3044), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3002), 6, - anon_sym_RPAREN, + ACTIONS(3241), 1, + anon_sym_COLON, + ACTIONS(3281), 1, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_or, - [104579] = 5, - ACTIONS(2977), 1, - anon_sym_as, - ACTIONS(2989), 1, - anon_sym_and, - ACTIONS(2991), 1, - anon_sym_or, + ACTIONS(3283), 1, + anon_sym_RBRACK, + STATE(2426), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3225), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [104600] = 8, - ACTIONS(2967), 1, + [104758] = 8, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(2969), 1, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3013), 1, anon_sym_or, - ACTIONS(3070), 1, + ACTIONS(3222), 1, anon_sym_COMMA, - STATE(2111), 1, + STATE(2005), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3068), 2, + ACTIONS(3285), 2, sym__newline, anon_sym_SEMI, - [104627] = 9, - ACTIONS(3177), 1, + [104785] = 9, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3205), 1, anon_sym_or, - ACTIONS(3219), 1, + ACTIONS(3241), 1, anon_sym_COLON, - ACTIONS(3260), 1, + ACTIONS(3287), 1, anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3289), 1, anon_sym_RBRACK, - STATE(2480), 1, + STATE(2432), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104656] = 8, - ACTIONS(2967), 1, - anon_sym_as, - ACTIONS(2969), 1, - anon_sym_if, - ACTIONS(2971), 1, - anon_sym_and, - ACTIONS(2973), 1, - anon_sym_or, - ACTIONS(3266), 1, - anon_sym_COMMA, - STATE(2216), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3264), 2, - sym__newline, - anon_sym_SEMI, - [104683] = 5, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3020), 1, - anon_sym_and, - ACTIONS(3022), 1, - anon_sym_or, + [104814] = 5, + ACTIONS(3291), 1, + anon_sym_DOT, + ACTIONS(3293), 1, + anon_sym_EQ, + STATE(1843), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3225), 5, - anon_sym_RPAREN, + ACTIONS(3209), 5, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [104704] = 9, - ACTIONS(3177), 1, anon_sym_as, - ACTIONS(3179), 1, - anon_sym_if, - ACTIONS(3181), 1, - anon_sym_and, - ACTIONS(3183), 1, - anon_sym_or, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3268), 1, - anon_sym_COMMA, - ACTIONS(3270), 1, - anon_sym_RBRACK, - STATE(2392), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [104733] = 6, + anon_sym_PIPE, + anon_sym_RBRACE, + [104835] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3277), 1, + ACTIONS(3299), 1, anon_sym_BSLASH, - ACTIONS(3272), 2, + ACTIONS(3295), 2, sym_string_end, anon_sym_LBRACE, - STATE(1804), 2, + STATE(1801), 2, sym__not_escape_sequence, aux_sym_string_content_repeat1, - ACTIONS(3274), 3, + ACTIONS(3297), 3, sym__string_content, sym_escape_interpolation, sym_escape_sequence, - [104756] = 8, - ACTIONS(2967), 1, + [104858] = 9, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(2969), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3205), 1, anon_sym_or, - ACTIONS(3233), 1, + ACTIONS(3241), 1, + anon_sym_COLON, + ACTIONS(3301), 1, anon_sym_COMMA, - STATE(2217), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3303), 1, + anon_sym_RBRACK, + STATE(2310), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3280), 2, - sym__newline, - anon_sym_SEMI, - [104783] = 5, - ACTIONS(3282), 1, - anon_sym_DOT, - ACTIONS(3284), 1, - anon_sym_EQ, - STATE(1861), 1, - aux_sym_dotted_name_repeat1, + [104887] = 5, + ACTIONS(3045), 1, + anon_sym_as, + ACTIONS(3053), 1, + anon_sym_and, + ACTIONS(3055), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3263), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [104908] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 5, + ACTIONS(3229), 8, + anon_sym_import, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [104804] = 3, - ACTIONS(2088), 1, + [104923] = 5, + ACTIONS(2989), 1, anon_sym_as, + ACTIONS(3001), 1, + anon_sym_and, + ACTIONS(3003), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2074), 7, - anon_sym_RPAREN, + ACTIONS(3263), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_and, - anon_sym_or, - [104821] = 6, - ACTIONS(3012), 1, + anon_sym_RBRACE, + [104944] = 3, + ACTIONS(3143), 1, anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3020), 1, - anon_sym_and, - ACTIONS(3022), 1, - anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3004), 4, + ACTIONS(3024), 7, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [104844] = 9, - ACTIONS(3177), 1, + anon_sym_and, + anon_sym_or, + [104961] = 8, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3013), 1, anon_sym_or, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3286), 1, + ACTIONS(3222), 1, anon_sym_COMMA, - ACTIONS(3288), 1, - anon_sym_RBRACK, - STATE(2415), 1, - aux_sym_subscript_repeat1, + STATE(2005), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104873] = 6, - ACTIONS(3012), 1, - anon_sym_as, - ACTIONS(3014), 1, - anon_sym_if, - ACTIONS(3020), 1, + ACTIONS(3185), 2, + sym__newline, + anon_sym_SEMI, + [104988] = 5, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(3055), 1, anon_sym_or, + ACTIONS(3130), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3000), 4, + ACTIONS(3022), 5, anon_sym_RPAREN, anon_sym_COMMA, + anon_sym_if, anon_sym_async, anon_sym_for, - [104896] = 9, - ACTIONS(3177), 1, + [105009] = 5, + ACTIONS(2975), 1, anon_sym_as, - ACTIONS(3179), 1, - anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(2985), 1, anon_sym_or, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3290), 1, - anon_sym_COMMA, - ACTIONS(3292), 1, - anon_sym_RBRACK, - STATE(2422), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104925] = 9, - ACTIONS(3177), 1, + ACTIONS(3263), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [105030] = 8, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3013), 1, anon_sym_or, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3294), 1, + ACTIONS(3139), 1, anon_sym_COMMA, - ACTIONS(3296), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_subscript_repeat1, + STATE(2113), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104954] = 9, - ACTIONS(3177), 1, + ACTIONS(3137), 2, + sym__newline, + anon_sym_SEMI, + [105057] = 6, + ACTIONS(3045), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3047), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3053), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3055), 1, anon_sym_or, - ACTIONS(3219), 1, - anon_sym_COLON, - ACTIONS(3298), 1, - anon_sym_COMMA, - ACTIONS(3300), 1, - anon_sym_RBRACK, - STATE(2351), 1, - aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [104983] = 5, - ACTIONS(2953), 1, + ACTIONS(3026), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + [105080] = 5, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(2961), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(3003), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3225), 5, + ACTIONS(3263), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [105004] = 5, - ACTIONS(3302), 1, - anon_sym_DOT, - ACTIONS(3304), 1, - anon_sym_EQ, - STATE(1834), 1, - aux_sym_dotted_name_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3187), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [105025] = 8, - ACTIONS(2967), 1, + anon_sym_RBRACE, + [105101] = 8, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(2969), 1, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3013), 1, anon_sym_or, - ACTIONS(3215), 1, + ACTIONS(3222), 1, anon_sym_COMMA, - STATE(2076), 1, + STATE(2005), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2927), 2, + ACTIONS(3305), 2, sym__newline, anon_sym_SEMI, - [105052] = 7, - ACTIONS(63), 1, - anon_sym_AT, - ACTIONS(3306), 1, - anon_sym_async, - ACTIONS(3308), 1, - anon_sym_def, - ACTIONS(3310), 1, - anon_sym_class, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(769), 2, - sym_function_definition, - sym_class_definition, - STATE(1897), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - [105077] = 2, + [105128] = 4, + ACTIONS(308), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 8, - anon_sym_import, - anon_sym_DOT, - anon_sym_LPAREN, + STATE(995), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3307), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [105092] = 7, + [105147] = 9, + ACTIONS(3199), 1, + anon_sym_as, + ACTIONS(3201), 1, + anon_sym_if, + ACTIONS(3203), 1, + anon_sym_and, + ACTIONS(3205), 1, + anon_sym_or, + ACTIONS(3241), 1, + anon_sym_COLON, + ACTIONS(3309), 1, + anon_sym_COMMA, + ACTIONS(3311), 1, + anon_sym_RBRACK, + STATE(2268), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [105176] = 7, ACTIONS(63), 1, anon_sym_AT, - ACTIONS(3312), 1, + ACTIONS(3313), 1, anon_sym_async, - ACTIONS(3314), 1, + ACTIONS(3315), 1, anon_sym_def, - ACTIONS(3316), 1, + ACTIONS(3317), 1, anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(773), 2, + STATE(829), 2, sym_function_definition, sym_class_definition, - STATE(1897), 2, + STATE(1977), 2, sym_decorator, aux_sym_decorated_definition_repeat1, - [105117] = 5, - ACTIONS(2977), 1, + [105201] = 9, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(3201), 1, + anon_sym_if, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3205), 1, anon_sym_or, + ACTIONS(3241), 1, + anon_sym_COLON, + ACTIONS(3319), 1, + anon_sym_COMMA, + ACTIONS(3321), 1, + anon_sym_RBRACK, + STATE(2346), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3225), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [105138] = 5, - ACTIONS(2977), 1, + [105230] = 8, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(2989), 1, + ACTIONS(3009), 1, + anon_sym_if, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3013), 1, anon_sym_or, + ACTIONS(3325), 1, + anon_sym_COMMA, + STATE(2168), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3323), 2, + sym__newline, + anon_sym_SEMI, + [105257] = 3, + ACTIONS(2112), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3225), 5, + ACTIONS(2098), 7, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [105159] = 5, - ACTIONS(3012), 1, + anon_sym_and, + anon_sym_or, + [105274] = 5, + ACTIONS(2975), 1, anon_sym_as, - ACTIONS(3020), 1, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(2985), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3225), 5, - anon_sym_RPAREN, + ACTIONS(3263), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - [105180] = 8, - ACTIONS(2967), 1, + anon_sym_RBRACK, + [105295] = 8, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(2969), 1, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3013), 1, anon_sym_or, - ACTIONS(3215), 1, + ACTIONS(3257), 1, anon_sym_COMMA, - STATE(2076), 1, + STATE(2195), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3318), 2, + ACTIONS(3327), 2, sym__newline, anon_sym_SEMI, - [105207] = 6, - ACTIONS(3320), 1, + [105322] = 5, + ACTIONS(3053), 1, + anon_sym_and, + ACTIONS(3055), 1, + anon_sym_or, + ACTIONS(3329), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3015), 5, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3323), 1, anon_sym_async, - ACTIONS(3326), 1, anon_sym_for, - ACTIONS(3329), 1, - anon_sym_RBRACK, + [105343] = 7, + ACTIONS(63), 1, + anon_sym_AT, + ACTIONS(3332), 1, + anon_sym_async, + ACTIONS(3334), 1, + anon_sym_def, + ACTIONS(3336), 1, + anon_sym_class, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105229] = 6, - ACTIONS(2967), 1, + STATE(805), 2, + sym_function_definition, + sym_class_definition, + STATE(1977), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [105368] = 9, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(2969), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3205), 1, anon_sym_or, + ACTIONS(3241), 1, + anon_sym_COLON, + ACTIONS(3338), 1, + anon_sym_COMMA, + ACTIONS(3340), 1, + anon_sym_RBRACK, + STATE(2435), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3331), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [105251] = 8, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, + [105397] = 6, + ACTIONS(2995), 1, + anon_sym_async, + ACTIONS(2997), 1, + anon_sym_for, + ACTIONS(3342), 1, anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3333), 1, - anon_sym_COMMA, - ACTIONS(3335), 1, - anon_sym_COLON, - STATE(2450), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3344), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105277] = 8, - ACTIONS(3034), 1, - anon_sym_RPAREN, - ACTIONS(3036), 1, - anon_sym_COMMA, - ACTIONS(3153), 1, + STATE(1879), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105419] = 7, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3205), 1, anon_sym_or, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + ACTIONS(3241), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105303] = 4, - ACTIONS(3337), 1, + ACTIONS(3346), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [105443] = 4, + ACTIONS(3251), 1, anon_sym_DOT, - STATE(1828), 1, + STATE(1864), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 5, + ACTIONS(3234), 5, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [105321] = 8, - ACTIONS(2983), 1, + [105461] = 8, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(3340), 1, + ACTIONS(3348), 1, anon_sym_COMMA, - ACTIONS(3342), 1, + ACTIONS(3350), 1, anon_sym_RBRACE, STATE(1838), 1, sym_for_in_clause, - STATE(2268), 1, + STATE(2296), 1, aux_sym_dictionary_repeat1, - STATE(2723), 1, + STATE(2706), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105347] = 4, - ACTIONS(3302), 1, + [105487] = 4, + ACTIONS(3265), 1, anon_sym_DOT, - STATE(1834), 1, + STATE(1839), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [105365] = 8, - ACTIONS(3344), 1, - sym_identifier, - ACTIONS(3346), 1, + ACTIONS(3234), 5, anon_sym_LPAREN, - ACTIONS(3348), 1, - anon_sym_STAR, - STATE(1988), 1, - sym_dotted_name, - STATE(2113), 1, - sym_aliased_import, - STATE(2481), 1, - sym_wildcard_import, - STATE(2559), 1, - sym__import_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105391] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3352), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3350), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [105407] = 8, - ACTIONS(2983), 1, + [105505] = 6, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(3354), 1, - anon_sym_COMMA, - ACTIONS(3356), 1, + ACTIONS(3342), 1, + anon_sym_if, + ACTIONS(3352), 1, anon_sym_RBRACE, - STATE(1838), 1, - sym_for_in_clause, - STATE(2407), 1, - aux_sym_dictionary_repeat1, - STATE(2605), 1, - sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105433] = 4, - ACTIONS(3302), 1, + STATE(1833), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105527] = 4, + ACTIONS(3354), 1, anon_sym_DOT, - STATE(1864), 1, + STATE(1839), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3207), 5, + ACTIONS(3229), 5, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [105451] = 4, - ACTIONS(3245), 1, + [105545] = 7, + ACTIONS(1355), 1, + anon_sym_COLON, + ACTIONS(3199), 1, + anon_sym_as, + ACTIONS(3201), 1, + anon_sym_if, + ACTIONS(3203), 1, + anon_sym_and, + ACTIONS(3205), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1353), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [105569] = 4, + ACTIONS(3357), 1, anon_sym_DOT, - STATE(1828), 1, + STATE(1841), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3207), 5, + ACTIONS(3229), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [105469] = 8, - ACTIONS(2983), 1, + [105587] = 8, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(3358), 1, - anon_sym_COMMA, ACTIONS(3360), 1, + anon_sym_COMMA, + ACTIONS(3362), 1, anon_sym_RBRACE, STATE(1838), 1, sym_for_in_clause, - STATE(2473), 1, + STATE(2242), 1, aux_sym_dictionary_repeat1, - STATE(2758), 1, + STATE(2663), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105495] = 4, - ACTIONS(775), 1, - sym_string_start, + [105613] = 4, + ACTIONS(3291), 1, + anon_sym_DOT, + STATE(1841), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1086), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3251), 4, + ACTIONS(3234), 5, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [105513] = 6, - ACTIONS(2983), 1, + anon_sym_RBRACE, + [105631] = 8, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(3362), 1, - anon_sym_if, ACTIONS(3364), 1, + anon_sym_COMMA, + ACTIONS(3366), 1, anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1867), 3, + STATE(1838), 1, sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105535] = 3, + STATE(2339), 1, + aux_sym_dictionary_repeat1, + STATE(2730), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3251), 5, - anon_sym_COMMA, + [105657] = 7, + ACTIONS(3199), 1, anon_sym_as, + ACTIONS(3201), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [105551] = 5, - ACTIONS(2953), 1, - anon_sym_as, - ACTIONS(2961), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(2963), 1, + ACTIONS(3205), 1, anon_sym_or, + ACTIONS(3368), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3368), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, + ACTIONS(1425), 2, + anon_sym_COMMA, anon_sym_RBRACK, - [105571] = 7, - ACTIONS(2712), 1, - sym_identifier, - ACTIONS(3370), 1, - anon_sym_DOT, - ACTIONS(3372), 1, - anon_sym___future__, - STATE(2132), 1, - aux_sym_import_prefix_repeat1, - STATE(2349), 1, - sym_import_prefix, + [105681] = 4, + ACTIONS(775), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(2625), 2, - sym_relative_import, - sym_dotted_name, - [105595] = 8, - ACTIONS(3161), 1, + STATE(1115), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3307), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3374), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [105699] = 8, + ACTIONS(2995), 1, + anon_sym_async, + ACTIONS(2997), 1, + anon_sym_for, + ACTIONS(3370), 1, anon_sym_COMMA, - ACTIONS(3376), 1, - anon_sym_COLON, - STATE(2432), 1, - aux_sym_match_statement_repeat1, + ACTIONS(3372), 1, + anon_sym_RBRACE, + STATE(1838), 1, + sym_for_in_clause, + STATE(2361), 1, + aux_sym_dictionary_repeat1, + STATE(2604), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105621] = 5, - ACTIONS(3012), 1, + [105725] = 5, + ACTIONS(2975), 1, anon_sym_as, - ACTIONS(3020), 1, + ACTIONS(2983), 1, anon_sym_and, - ACTIONS(3022), 1, + ACTIONS(2985), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3368), 4, - anon_sym_RPAREN, + ACTIONS(3374), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [105641] = 4, - ACTIONS(3245), 1, + anon_sym_RBRACK, + [105745] = 6, + ACTIONS(3049), 1, + anon_sym_async, + ACTIONS(3051), 1, + anon_sym_for, + ACTIONS(3352), 1, + anon_sym_RPAREN, + ACTIONS(3376), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1865), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [105767] = 4, + ACTIONS(3265), 1, anon_sym_DOT, - STATE(1835), 1, + STATE(1837), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 5, + ACTIONS(3209), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [105659] = 7, - ACTIONS(3177), 1, - anon_sym_as, - ACTIONS(3179), 1, - anon_sym_if, - ACTIONS(3181), 1, - anon_sym_and, - ACTIONS(3183), 1, - anon_sym_or, + [105785] = 8, + ACTIONS(2995), 1, + anon_sym_async, + ACTIONS(2997), 1, + anon_sym_for, ACTIONS(3378), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1449), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [105683] = 8, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, ACTIONS(3380), 1, - anon_sym_COMMA, - ACTIONS(3382), 1, - anon_sym_COLON, - STATE(2470), 1, - aux_sym_match_statement_repeat1, + anon_sym_RBRACE, + STATE(1838), 1, + sym_for_in_clause, + STATE(2257), 1, + aux_sym_dictionary_repeat1, + STATE(2603), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105709] = 6, - ACTIONS(2967), 1, - anon_sym_as, - ACTIONS(2969), 1, - anon_sym_if, - ACTIONS(2971), 1, - anon_sym_and, - ACTIONS(2973), 1, - anon_sym_or, + [105811] = 8, + ACTIONS(2995), 1, + anon_sym_async, + ACTIONS(2997), 1, + anon_sym_for, + ACTIONS(3382), 1, + anon_sym_COMMA, + ACTIONS(3384), 1, + anon_sym_RBRACE, + STATE(1838), 1, + sym_for_in_clause, + STATE(2390), 1, + aux_sym_dictionary_repeat1, + STATE(2722), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3384), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [105731] = 6, - ACTIONS(3016), 1, - anon_sym_async, - ACTIONS(3018), 1, - anon_sym_for, - ACTIONS(3386), 1, - anon_sym_RPAREN, - ACTIONS(3388), 1, - anon_sym_if, + [105837] = 4, + ACTIONS(3251), 1, + anon_sym_DOT, + STATE(1835), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1852), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105753] = 8, - ACTIONS(3161), 1, + ACTIONS(3209), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3163), 1, + anon_sym_PIPE, + [105855] = 8, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3333), 1, + ACTIONS(3386), 1, anon_sym_COMMA, - ACTIONS(3390), 1, + ACTIONS(3388), 1, anon_sym_COLON, - STATE(2450), 1, - aux_sym_assert_statement_repeat1, + STATE(2325), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105779] = 8, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, + [105881] = 8, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3333), 1, + ACTIONS(3390), 1, anon_sym_COMMA, ACTIONS(3392), 1, + anon_sym_as, + ACTIONS(3394), 1, anon_sym_COLON, - STATE(2450), 1, - aux_sym_assert_statement_repeat1, + STATE(2454), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105805] = 6, - ACTIONS(2957), 1, - anon_sym_async, - ACTIONS(2959), 1, - anon_sym_for, - ACTIONS(3386), 1, - anon_sym_RBRACK, - ACTIONS(3394), 1, - anon_sym_if, + [105907] = 5, + ACTIONS(3045), 1, + anon_sym_as, + ACTIONS(3053), 1, + anon_sym_and, + ACTIONS(3055), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1824), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105827] = 6, - ACTIONS(3329), 1, + ACTIONS(3374), 4, anon_sym_RPAREN, - ACTIONS(3396), 1, anon_sym_if, - ACTIONS(3399), 1, anon_sym_async, - ACTIONS(3402), 1, anon_sym_for, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1852), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105849] = 4, - ACTIONS(731), 1, - sym_string_start, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(992), 2, - sym_string, - aux_sym_concatenated_string_repeat1, - ACTIONS(3251), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [105867] = 8, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, + [105927] = 8, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3333), 1, + ACTIONS(3390), 1, anon_sym_COMMA, - ACTIONS(3405), 1, + ACTIONS(3396), 1, + anon_sym_as, + ACTIONS(3398), 1, anon_sym_COLON, - STATE(2450), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [105893] = 8, - ACTIONS(2983), 1, - anon_sym_async, - ACTIONS(2985), 1, - anon_sym_for, - ACTIONS(3407), 1, - anon_sym_COMMA, - ACTIONS(3409), 1, - anon_sym_RBRACE, - STATE(1838), 1, - sym_for_in_clause, - STATE(2359), 1, - aux_sym_dictionary_repeat1, - STATE(2724), 1, - sym__comprehension_clauses, + STATE(2453), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105919] = 8, - ACTIONS(2983), 1, + [105953] = 8, + ACTIONS(2995), 1, anon_sym_async, - ACTIONS(2985), 1, + ACTIONS(2997), 1, anon_sym_for, - ACTIONS(3411), 1, + ACTIONS(3400), 1, anon_sym_COMMA, - ACTIONS(3413), 1, + ACTIONS(3402), 1, anon_sym_RBRACE, STATE(1838), 1, sym_for_in_clause, - STATE(2240), 1, + STATE(2411), 1, aux_sym_dictionary_repeat1, - STATE(2710), 1, + STATE(2614), 1, sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105945] = 8, - ACTIONS(3153), 1, + [105979] = 8, + ACTIONS(3185), 1, + anon_sym_RBRACK, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3205), 1, anon_sym_or, - ACTIONS(3172), 1, - anon_sym_RPAREN, - ACTIONS(3415), 1, + ACTIONS(3404), 1, anon_sym_COMMA, - STATE(2444), 1, + STATE(2329), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [105971] = 6, - ACTIONS(2957), 1, - anon_sym_async, - ACTIONS(2959), 1, - anon_sym_for, - ACTIONS(3364), 1, - anon_sym_RBRACK, - ACTIONS(3394), 1, + [106005] = 8, + ACTIONS(3163), 1, + anon_sym_as, + ACTIONS(3165), 1, anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1851), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [105993] = 6, - ACTIONS(3016), 1, - anon_sym_async, - ACTIONS(3018), 1, - anon_sym_for, - ACTIONS(3364), 1, + ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, + anon_sym_or, + ACTIONS(3185), 1, anon_sym_RPAREN, - ACTIONS(3388), 1, - anon_sym_if, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1848), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106015] = 8, - ACTIONS(2983), 1, - anon_sym_async, - ACTIONS(2985), 1, - anon_sym_for, - ACTIONS(3417), 1, + ACTIONS(3406), 1, anon_sym_COMMA, - ACTIONS(3419), 1, - anon_sym_RBRACE, - STATE(1838), 1, - sym_for_in_clause, - STATE(2282), 1, - aux_sym_dictionary_repeat1, - STATE(2744), 1, - sym__comprehension_clauses, + STATE(2415), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106041] = 4, - ACTIONS(3282), 1, + [106031] = 4, + ACTIONS(3291), 1, anon_sym_DOT, - STATE(1863), 1, + STATE(1843), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3207), 5, + ACTIONS(3209), 5, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [106059] = 8, - ACTIONS(3172), 1, - anon_sym_RBRACK, - ACTIONS(3177), 1, - anon_sym_as, - ACTIONS(3179), 1, - anon_sym_if, - ACTIONS(3181), 1, - anon_sym_and, - ACTIONS(3183), 1, - anon_sym_or, - ACTIONS(3421), 1, - anon_sym_COMMA, - STATE(2291), 1, - aux_sym_assert_statement_repeat1, + anon_sym_RBRACE, + [106049] = 8, + ACTIONS(3408), 1, + sym_identifier, + ACTIONS(3410), 1, + anon_sym_LPAREN, + ACTIONS(3412), 1, + anon_sym_STAR, + STATE(2082), 1, + sym_dotted_name, + STATE(2153), 1, + sym_aliased_import, + STATE(2516), 1, + sym__import_list, + STATE(2518), 1, + sym_wildcard_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106085] = 4, - ACTIONS(3423), 1, - anon_sym_DOT, - STATE(1863), 1, - aux_sym_dotted_name_repeat1, + [106075] = 4, + ACTIONS(731), 1, + sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 5, - anon_sym_LPAREN, + STATE(1027), 2, + sym_string, + aux_sym_concatenated_string_repeat1, + ACTIONS(3307), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [106103] = 4, - ACTIONS(3426), 1, + [106093] = 4, + ACTIONS(3414), 1, anon_sym_DOT, STATE(1864), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 5, + ACTIONS(3229), 5, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [106121] = 7, - ACTIONS(3177), 1, + [106111] = 6, + ACTIONS(3049), 1, + anon_sym_async, + ACTIONS(3051), 1, + anon_sym_for, + ACTIONS(3344), 1, + anon_sym_RPAREN, + ACTIONS(3376), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1874), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106133] = 8, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3219), 1, + ACTIONS(3417), 1, + anon_sym_COMMA, + ACTIONS(3419), 1, anon_sym_COLON, + STATE(2275), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3429), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106145] = 7, - ACTIONS(1347), 1, - anon_sym_COLON, - ACTIONS(3177), 1, + [106159] = 6, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3013), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1345), 2, + ACTIONS(3421), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - [106169] = 6, - ACTIONS(2983), 1, - anon_sym_async, - ACTIONS(2985), 1, - anon_sym_for, - ACTIONS(3362), 1, + [106181] = 8, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3386), 1, - anon_sym_RBRACE, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3423), 1, + anon_sym_COMMA, + ACTIONS(3425), 1, + anon_sym_COLON, + STATE(2290), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1872), 3, - sym_for_in_clause, - sym_if_clause, - aux_sym__comprehension_clauses_repeat1, - [106191] = 8, - ACTIONS(2983), 1, - anon_sym_async, - ACTIONS(2985), 1, - anon_sym_for, - ACTIONS(3431), 1, + [106207] = 8, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3423), 1, anon_sym_COMMA, - ACTIONS(3433), 1, - anon_sym_RBRACE, - STATE(1838), 1, - sym_for_in_clause, - STATE(2330), 1, - aux_sym_dictionary_repeat1, - STATE(2706), 1, - sym__comprehension_clauses, + ACTIONS(3427), 1, + anon_sym_COLON, + STATE(2290), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106217] = 8, - ACTIONS(2983), 1, - anon_sym_async, - ACTIONS(2985), 1, - anon_sym_for, - ACTIONS(3435), 1, + [106233] = 8, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3423), 1, anon_sym_COMMA, - ACTIONS(3437), 1, - anon_sym_RBRACE, - STATE(1838), 1, - sym_for_in_clause, - STATE(2381), 1, - aux_sym_dictionary_repeat1, - STATE(2696), 1, - sym__comprehension_clauses, + ACTIONS(3429), 1, + anon_sym_COLON, + STATE(2290), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106243] = 4, - ACTIONS(3282), 1, - anon_sym_DOT, - STATE(1861), 1, - aux_sym_dotted_name_repeat1, + [106259] = 8, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3390), 1, + anon_sym_COMMA, + ACTIONS(3396), 1, + anon_sym_as, + ACTIONS(3431), 1, + anon_sym_COLON, + STATE(2449), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 5, - anon_sym_LPAREN, + [106285] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3435), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3433), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - [106261] = 5, - ACTIONS(2977), 1, - anon_sym_as, - ACTIONS(2989), 1, + [106301] = 8, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(2991), 1, + ACTIONS(3177), 1, anon_sym_or, + ACTIONS(3390), 1, + anon_sym_COMMA, + ACTIONS(3392), 1, + anon_sym_as, + ACTIONS(3437), 1, + anon_sym_COLON, + STATE(2452), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3368), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [106281] = 6, - ACTIONS(3329), 1, - anon_sym_RBRACE, + [106327] = 6, ACTIONS(3439), 1, + anon_sym_RPAREN, + ACTIONS(3441), 1, anon_sym_if, - ACTIONS(3442), 1, + ACTIONS(3444), 1, anon_sym_async, - ACTIONS(3445), 1, + ACTIONS(3447), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(1872), 3, + STATE(1874), 3, sym_for_in_clause, sym_if_clause, aux_sym__comprehension_clauses_repeat1, - [106303] = 4, + [106349] = 4, ACTIONS(684), 1, sym_string_start, ACTIONS(3), 2, sym_comment, sym_line_continuation, - STATE(964), 2, + STATE(975), 2, sym_string, aux_sym_concatenated_string_repeat1, - ACTIONS(3251), 4, + ACTIONS(3307), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [106321] = 4, - ACTIONS(3448), 1, - anon_sym_DOT, - STATE(1980), 1, - aux_sym_dotted_name_repeat1, + [106367] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3207), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3450), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3307), 5, anon_sym_COMMA, anon_sym_as, - [106338] = 4, - ACTIONS(3450), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3452), 4, anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [106383] = 6, + ACTIONS(2979), 1, anon_sym_async, + ACTIONS(2981), 1, anon_sym_for, - anon_sym_RBRACE, - [106355] = 2, + ACTIONS(3344), 1, + anon_sym_RBRACK, + ACTIONS(3452), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3454), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106368] = 6, - ACTIONS(3177), 1, + STATE(1883), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106405] = 5, + ACTIONS(2989), 1, anon_sym_as, - ACTIONS(3179), 1, - anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3001), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3003), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3456), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [106389] = 4, - ACTIONS(3458), 1, - anon_sym_COMMA, - STATE(1888), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3460), 4, + ACTIONS(3374), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [106406] = 2, + anon_sym_RBRACE, + [106425] = 6, + ACTIONS(3439), 1, + anon_sym_RBRACE, + ACTIONS(3454), 1, + anon_sym_if, + ACTIONS(3457), 1, + anon_sym_async, + ACTIONS(3460), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3462), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106419] = 6, - ACTIONS(3161), 1, + STATE(1879), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106447] = 8, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3464), 2, + ACTIONS(3423), 1, anon_sym_COMMA, + ACTIONS(3463), 1, anon_sym_COLON, - [106440] = 2, + STATE(2290), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106453] = 6, - ACTIONS(3153), 1, + [106473] = 6, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3013), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3468), 2, - anon_sym_RPAREN, + ACTIONS(3465), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - [106474] = 5, - ACTIONS(3472), 1, + [106495] = 7, + ACTIONS(2734), 1, + sym_identifier, + ACTIONS(3467), 1, anon_sym_DOT, - ACTIONS(3474), 1, - anon_sym_COLON, - ACTIONS(3476), 1, - anon_sym_PIPE, + ACTIONS(3469), 1, + anon_sym___future__, + STATE(2176), 1, + aux_sym_import_prefix_repeat1, + STATE(2389), 1, + sym_import_prefix, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3470), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_EQ, - [106493] = 4, - ACTIONS(3478), 1, - anon_sym_COMMA, - STATE(1894), 1, - aux_sym_for_in_clause_repeat1, + STATE(2768), 2, + sym_relative_import, + sym_dotted_name, + [106519] = 6, + ACTIONS(3439), 1, + anon_sym_RBRACK, + ACTIONS(3471), 1, + anon_sym_if, + ACTIONS(3474), 1, + anon_sym_async, + ACTIONS(3477), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3460), 4, - anon_sym_RPAREN, - anon_sym_if, + STATE(1883), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106541] = 6, + ACTIONS(2979), 1, anon_sym_async, + ACTIONS(2981), 1, anon_sym_for, - [106510] = 2, + ACTIONS(3352), 1, + anon_sym_RBRACK, + ACTIONS(3452), 1, + anon_sym_if, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [106523] = 7, + STATE(1877), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [106563] = 8, + ACTIONS(2995), 1, + anon_sym_async, + ACTIONS(2997), 1, + anon_sym_for, ACTIONS(3480), 1, anon_sym_COMMA, ACTIONS(3482), 1, - anon_sym_as, - ACTIONS(3484), 1, - anon_sym_if, - ACTIONS(3486), 1, - anon_sym_COLON, - STATE(2039), 1, - aux_sym_case_clause_repeat1, - STATE(2745), 1, - sym_if_clause, + anon_sym_RBRACE, + STATE(1838), 1, + sym_for_in_clause, + STATE(2299), 1, + aux_sym_dictionary_repeat1, + STATE(2654), 1, + sym__comprehension_clauses, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106546] = 4, - ACTIONS(3490), 1, - anon_sym_PIPE, - STATE(1964), 1, - aux_sym_union_pattern_repeat1, + [106589] = 8, + ACTIONS(3145), 1, + anon_sym_RPAREN, + ACTIONS(3147), 1, + anon_sym_COMMA, + ACTIONS(3163), 1, + anon_sym_as, + ACTIONS(3165), 1, + anon_sym_if, + ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, + anon_sym_or, + STATE(2266), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3488), 4, - anon_sym_COMMA, + [106615] = 6, + ACTIONS(3163), 1, anon_sym_as, + ACTIONS(3165), 1, anon_sym_if, - anon_sym_COLON, - [106563] = 4, - ACTIONS(3492), 1, - anon_sym_COMMA, - STATE(1888), 1, - aux_sym_for_in_clause_repeat1, + ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3495), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [106580] = 4, - ACTIONS(3497), 1, + ACTIONS(3484), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1970), 1, - aux_sym_assert_statement_repeat1, + [106636] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1287), 4, + ACTIONS(3486), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [106597] = 4, - ACTIONS(3499), 1, + anon_sym_PIPE, + [106649] = 6, + ACTIONS(3163), 1, + anon_sym_as, + ACTIONS(3165), 1, + anon_sym_if, + ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3488), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1911), 1, - aux_sym__patterns_repeat1, + [106670] = 6, + ACTIONS(3163), 1, + anon_sym_as, + ACTIONS(3165), 1, + anon_sym_if, + ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(971), 4, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [106614] = 4, + ACTIONS(3216), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [106691] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3503), 1, + ACTIONS(3492), 1, anon_sym_BSLASH, - ACTIONS(3501), 5, + ACTIONS(3490), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [106631] = 4, - ACTIONS(3505), 1, + [106708] = 4, + ACTIONS(3496), 1, anon_sym_COMMA, - STATE(1878), 1, + STATE(1916), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3507), 4, + ACTIONS(3494), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [106648] = 4, + [106725] = 4, + ACTIONS(3500), 1, + anon_sym_COMMA, + STATE(1945), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3498), 4, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [106742] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3511), 1, + ACTIONS(3504), 1, anon_sym_BSLASH, - ACTIONS(3509), 5, + ACTIONS(3502), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [106665] = 4, - ACTIONS(3513), 1, + [106759] = 6, + ACTIONS(3163), 1, + anon_sym_as, + ACTIONS(3165), 1, + anon_sym_if, + ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3506), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(1894), 1, + [106780] = 5, + ACTIONS(3510), 1, + anon_sym_DOT, + ACTIONS(3512), 1, + anon_sym_COLON, + ACTIONS(3514), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3508), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [106799] = 6, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, + anon_sym_if, + ACTIONS(3187), 1, + anon_sym_and, + ACTIONS(3189), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3245), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [106820] = 4, + ACTIONS(3516), 1, + anon_sym_COMMA, + STATE(1966), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3495), 4, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [106682] = 7, - ACTIONS(3516), 1, + ACTIONS(3518), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [106837] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3520), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106850] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3522), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106863] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3486), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(3518), 1, - anon_sym_COMMA, - ACTIONS(3520), 1, anon_sym_COLON, - ACTIONS(3522), 1, - anon_sym_RBRACK, - ACTIONS(3524), 1, + anon_sym_EQ, anon_sym_PIPE, - STATE(2297), 1, - aux_sym_type_parameter_repeat1, + [106876] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [106705] = 6, - ACTIONS(3143), 1, + ACTIONS(3229), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3145), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [106889] = 6, + ACTIONS(3163), 1, + anon_sym_as, + ACTIONS(3165), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3167), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3169), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3249), 2, + ACTIONS(3524), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACE, - [106726] = 4, - ACTIONS(3528), 1, - anon_sym_AT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - STATE(1897), 2, - sym_decorator, - aux_sym_decorated_definition_repeat1, - ACTIONS(3526), 3, - anon_sym_async, - anon_sym_def, - anon_sym_class, - [106743] = 6, - ACTIONS(2967), 1, + [106910] = 6, + ACTIONS(3163), 1, anon_sym_as, - ACTIONS(2969), 1, + ACTIONS(3165), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(3167), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3169), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3202), 2, - sym__newline, - anon_sym_SEMI, - [106764] = 6, - ACTIONS(2967), 1, - anon_sym_as, - ACTIONS(2969), 1, - anon_sym_if, - ACTIONS(2971), 1, - anon_sym_and, - ACTIONS(2973), 1, - anon_sym_or, + ACTIONS(3526), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [106931] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3531), 2, - sym__newline, - anon_sym_SEMI, - [106785] = 6, - ACTIONS(3177), 1, - anon_sym_as, - ACTIONS(3179), 1, - anon_sym_if, - ACTIONS(3181), 1, - anon_sym_and, - ACTIONS(3183), 1, - anon_sym_or, + ACTIONS(3528), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [106944] = 4, + ACTIONS(3530), 1, + anon_sym_COMMA, + STATE(1954), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1417), 2, - anon_sym_COMMA, + ACTIONS(3494), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - [106806] = 2, + [106961] = 4, + ACTIONS(3532), 1, + anon_sym_COMMA, + STATE(1972), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3518), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [106978] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 6, + ACTIONS(2973), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106819] = 6, - ACTIONS(3161), 1, + [106991] = 4, + ACTIONS(3536), 1, + anon_sym_PIPE, + STATE(1956), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3534), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3165), 1, + anon_sym_COLON, + [107008] = 6, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3535), 2, + ACTIONS(3538), 2, anon_sym_COMMA, anon_sym_COLON, - [106840] = 6, - ACTIONS(3153), 1, + [107029] = 6, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3205), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3537), 2, - anon_sym_RPAREN, + ACTIONS(3216), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107050] = 4, + ACTIONS(3540), 1, anon_sym_COMMA, - [106861] = 4, + STATE(1915), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3542), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [107067] = 6, + ACTIONS(3163), 1, + anon_sym_as, ACTIONS(3165), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2998), 4, + ACTIONS(3224), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [106878] = 3, + [107088] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3539), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3350), 4, + ACTIONS(3520), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [106893] = 4, - ACTIONS(3541), 1, + [107101] = 4, + ACTIONS(3544), 1, anon_sym_COMMA, - STATE(1888), 1, + STATE(1915), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3452), 4, + ACTIONS(3547), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [106910] = 4, - ACTIONS(3543), 1, + anon_sym_RBRACE, + [107118] = 4, + ACTIONS(3549), 1, anon_sym_COMMA, - STATE(1884), 1, + STATE(1945), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3507), 4, + ACTIONS(3542), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [106927] = 4, - ACTIONS(3545), 1, - anon_sym_COMMA, - STATE(1957), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3460), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [106944] = 2, + [107135] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 6, + ACTIONS(3528), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [106957] = 3, + [107148] = 7, + ACTIONS(3551), 1, + anon_sym_DOT, + ACTIONS(3553), 1, + anon_sym_COMMA, + ACTIONS(3555), 1, + anon_sym_COLON, + ACTIONS(3557), 1, + anon_sym_RBRACK, + ACTIONS(3559), 1, + anon_sym_PIPE, + STATE(2271), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3547), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3251), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [106972] = 4, - ACTIONS(3549), 1, - anon_sym_COMMA, - STATE(1911), 1, - aux_sym__patterns_repeat1, + [107171] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 4, - anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3229), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - sym_type_conversion, - [106989] = 6, - ACTIONS(3143), 1, + [107184] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3145), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3177), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3552), 2, + ACTIONS(3526), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [107010] = 6, - ACTIONS(3177), 1, + anon_sym_COLON, + [107205] = 6, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3205), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 2, + ACTIONS(3224), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107031] = 7, - ACTIONS(3516), 1, + [107226] = 7, + ACTIONS(3551), 1, anon_sym_DOT, - ACTIONS(3520), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3524), 1, + ACTIONS(3559), 1, anon_sym_PIPE, - ACTIONS(3554), 1, + ACTIONS(3561), 1, anon_sym_COMMA, - ACTIONS(3556), 1, + ACTIONS(3563), 1, anon_sym_RBRACK, - STATE(2253), 1, + STATE(2312), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107054] = 4, + [107249] = 3, + ACTIONS(3565), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3307), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [107264] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3567), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3307), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [107279] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3560), 1, + ACTIONS(3571), 1, anon_sym_BSLASH, - ACTIONS(3558), 5, + ACTIONS(3569), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [107071] = 6, - ACTIONS(3153), 1, - anon_sym_as, - ACTIONS(3155), 1, - anon_sym_if, - ACTIONS(3157), 1, - anon_sym_and, - ACTIONS(3159), 1, - anon_sym_or, + [107296] = 4, + ACTIONS(3573), 1, + anon_sym_DOT, + STATE(1968), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3562), 2, - anon_sym_RPAREN, + ACTIONS(3209), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - [107092] = 6, - ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3155), 1, + [107313] = 6, + ACTIONS(3007), 1, + anon_sym_as, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3013), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3564), 2, - anon_sym_RPAREN, + ACTIONS(3575), 2, + sym__newline, + anon_sym_SEMI, + [107334] = 4, + ACTIONS(3577), 1, anon_sym_COMMA, - [107113] = 4, - ACTIONS(3490), 1, - anon_sym_PIPE, - STATE(1887), 1, - aux_sym_union_pattern_repeat1, + STATE(1993), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3566), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(957), 4, anon_sym_COLON, - [107130] = 3, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [107351] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3568), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3350), 4, - anon_sym_RPAREN, + ACTIONS(3307), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [107145] = 6, - ACTIONS(3143), 1, + anon_sym_RBRACE, + [107366] = 3, + STATE(1956), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3581), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3145), 1, anon_sym_if, - ACTIONS(3149), 1, + anon_sym_COLON, + anon_sym_PIPE, + [107381] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3585), 1, + anon_sym_BSLASH, + ACTIONS(3583), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107398] = 6, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, + anon_sym_if, + ACTIONS(3187), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3189), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3537), 2, + ACTIONS(3587), 2, anon_sym_COMMA, anon_sym_RBRACE, - [107166] = 2, + [107419] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3570), 6, + ACTIONS(3589), 6, + sym__newline, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107179] = 2, + [107432] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2951), 6, + ACTIONS(1675), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107192] = 6, - ACTIONS(3161), 1, + [107445] = 7, + ACTIONS(3551), 1, + anon_sym_DOT, + ACTIONS(3555), 1, + anon_sym_COLON, + ACTIONS(3559), 1, + anon_sym_PIPE, + ACTIONS(3591), 1, + anon_sym_COMMA, + ACTIONS(3593), 1, + anon_sym_RBRACK, + STATE(2408), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [107468] = 6, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3205), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 2, + ACTIONS(3484), 2, anon_sym_COMMA, - anon_sym_COLON, - [107213] = 6, - ACTIONS(3572), 1, - anon_sym_DOT, - ACTIONS(3576), 1, - anon_sym_COLON, - ACTIONS(3578), 1, - anon_sym_EQ, - ACTIONS(3580), 1, - anon_sym_PIPE, + anon_sym_RBRACK, + [107489] = 6, + ACTIONS(3199), 1, + anon_sym_as, + ACTIONS(3201), 1, + anon_sym_if, + ACTIONS(3203), 1, + anon_sym_and, + ACTIONS(3205), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3574), 2, + ACTIONS(1425), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [107510] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3589), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - [107234] = 4, - ACTIONS(3448), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107523] = 4, + ACTIONS(3595), 1, anon_sym_DOT, - STATE(1874), 1, + STATE(1939), 1, aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3187), 4, + ACTIONS(3229), 4, sym__newline, anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - [107251] = 2, + [107540] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3600), 1, + anon_sym_BSLASH, + ACTIONS(3598), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107557] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3570), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3602), 6, anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107264] = 6, - ACTIONS(3153), 1, - anon_sym_as, - ACTIONS(3155), 1, - anon_sym_if, - ACTIONS(3157), 1, + [107570] = 5, + ACTIONS(3604), 1, + anon_sym_DOT, + ACTIONS(3606), 1, + anon_sym_COLON, + ACTIONS(3608), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3508), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [107589] = 4, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3177), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3202), 2, - anon_sym_RPAREN, + ACTIONS(3022), 4, anon_sym_COMMA, - [107285] = 6, - ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3157), 1, - anon_sym_and, - ACTIONS(3159), 1, - anon_sym_or, + anon_sym_COLON, + [107606] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3582), 2, + ACTIONS(3522), 6, + anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, - [107306] = 4, - ACTIONS(3584), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107619] = 4, + ACTIONS(3610), 1, anon_sym_COMMA, - STATE(1906), 1, + STATE(1945), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3586), 4, + ACTIONS(3547), 4, + anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [107323] = 2, + [107636] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3454), 6, + ACTIONS(3528), 6, anon_sym_DOT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107336] = 7, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_COLON, - ACTIONS(3524), 1, - anon_sym_PIPE, - ACTIONS(3588), 1, - anon_sym_COMMA, - ACTIONS(3590), 1, - anon_sym_RBRACK, - STATE(2472), 1, - aux_sym_type_parameter_repeat1, + [107649] = 6, + ACTIONS(3181), 1, + anon_sym_as, + ACTIONS(3183), 1, + anon_sym_if, + ACTIONS(3187), 1, + anon_sym_and, + ACTIONS(3189), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107359] = 6, - ACTIONS(3177), 1, + ACTIONS(3484), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [107670] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3177), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3552), 2, + ACTIONS(3224), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [107380] = 2, + anon_sym_COLON, + [107691] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(3615), 1, + anon_sym_BSLASH, + ACTIONS(3613), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [107708] = 6, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3462), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3524), 2, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + [107729] = 6, + ACTIONS(3007), 1, + anon_sym_as, + ACTIONS(3009), 1, + anon_sym_if, + ACTIONS(3011), 1, + anon_sym_and, + ACTIONS(3013), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3216), 2, + sym__newline, + anon_sym_SEMI, + [107750] = 6, + ACTIONS(3163), 1, + anon_sym_as, + ACTIONS(3165), 1, + anon_sym_if, + ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3617), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107771] = 4, + ACTIONS(3619), 1, anon_sym_PIPE, - [107393] = 3, - STATE(1887), 1, + STATE(1953), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 5, + ACTIONS(3581), 4, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [107408] = 6, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, + [107788] = 4, + ACTIONS(3622), 1, + anon_sym_COMMA, + STATE(1973), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3542), 4, anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [107805] = 6, + ACTIONS(3163), 1, + anon_sym_as, ACTIONS(3165), 1, - anon_sym_and, + anon_sym_if, ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3582), 2, + ACTIONS(3538), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [107429] = 7, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3594), 1, + [107826] = 4, + ACTIONS(3536), 1, + anon_sym_PIPE, + STATE(1953), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3624), 4, anon_sym_COMMA, - ACTIONS(3596), 1, anon_sym_as, - ACTIONS(3598), 1, + anon_sym_if, anon_sym_COLON, + [107843] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [107452] = 6, - ACTIONS(3153), 1, + ACTIONS(2973), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [107856] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3626), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3307), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3155), 1, + anon_sym_RBRACK, + anon_sym_PIPE, + [107871] = 6, + ACTIONS(3199), 1, + anon_sym_as, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3205), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3552), 2, - anon_sym_RPAREN, + ACTIONS(1433), 2, anon_sym_COMMA, - [107473] = 6, - ACTIONS(3153), 1, + anon_sym_RBRACK, + [107892] = 6, + ACTIONS(3181), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3183), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3187), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3189), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 2, - anon_sym_RPAREN, + ACTIONS(3488), 2, anon_sym_COMMA, - [107494] = 2, + anon_sym_RBRACE, + [107913] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3570), 6, + ACTIONS(3520), 6, anon_sym_DOT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [107507] = 6, - ACTIONS(3472), 1, + [107926] = 6, + ACTIONS(3510), 1, anon_sym_DOT, - ACTIONS(3474), 1, + ACTIONS(3512), 1, anon_sym_COLON, - ACTIONS(3476), 1, + ACTIONS(3514), 1, anon_sym_PIPE, - ACTIONS(3602), 1, + ACTIONS(3630), 1, anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3600), 2, + ACTIONS(3628), 2, sym__newline, anon_sym_SEMI, - [107528] = 3, + [107947] = 4, + ACTIONS(3632), 1, + anon_sym_COMMA, + STATE(1963), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3224), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [107964] = 6, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3604), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3251), 4, - anon_sym_RPAREN, + ACTIONS(3635), 2, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [107543] = 4, - ACTIONS(3606), 1, + anon_sym_COLON, + [107985] = 4, + ACTIONS(3637), 1, anon_sym_COMMA, - STATE(1894), 1, + STATE(1912), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3452), 4, - anon_sym_RPAREN, + ACTIONS(3494), 4, anon_sym_if, anon_sym_async, anon_sym_for, - [107560] = 4, - ACTIONS(3608), 1, + anon_sym_RBRACE, + [108002] = 4, + ACTIONS(3639), 1, anon_sym_COMMA, - STATE(1875), 1, + STATE(1973), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3586), 4, + ACTIONS(3498), 4, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACE, - [107577] = 4, - ACTIONS(3490), 1, - anon_sym_PIPE, - STATE(1887), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3610), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [107594] = 7, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, - anon_sym_COLON, - ACTIONS(3524), 1, - anon_sym_PIPE, - ACTIONS(3612), 1, - anon_sym_COMMA, - ACTIONS(3614), 1, anon_sym_RBRACK, - STATE(2236), 1, - aux_sym_type_parameter_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [107617] = 6, - ACTIONS(2967), 1, + [108019] = 6, + ACTIONS(3007), 1, anon_sym_as, - ACTIONS(2969), 1, + ACTIONS(3009), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(3011), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3013), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3616), 2, + ACTIONS(3641), 2, sym__newline, anon_sym_SEMI, - [107638] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3194), 6, + [108040] = 4, + ACTIONS(3573), 1, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [107651] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3620), 1, - anon_sym_BSLASH, - ACTIONS(3618), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107668] = 2, + STATE(1939), 1, + aux_sym_dotted_name_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3234), 4, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [107681] = 6, - ACTIONS(3153), 1, + [108057] = 6, + ACTIONS(3163), 1, anon_sym_as, - ACTIONS(3155), 1, + ACTIONS(3165), 1, anon_sym_if, - ACTIONS(3157), 1, + ACTIONS(3167), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3169), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3464), 2, + ACTIONS(3643), 2, anon_sym_RPAREN, anon_sym_COMMA, - [107702] = 4, - ACTIONS(3), 1, + [108078] = 4, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3624), 1, - anon_sym_BSLASH, - ACTIONS(3622), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107719] = 6, - ACTIONS(3153), 1, + ACTIONS(3022), 4, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3155), 1, anon_sym_if, - ACTIONS(3157), 1, + anon_sym_COLON, + [108095] = 6, + ACTIONS(3199), 1, + anon_sym_as, + ACTIONS(3201), 1, + anon_sym_if, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3159), 1, + ACTIONS(3205), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 2, - anon_sym_RPAREN, + ACTIONS(3488), 2, anon_sym_COMMA, - [107740] = 4, - ACTIONS(3628), 1, + anon_sym_RBRACK, + [108116] = 4, + ACTIONS(3645), 1, anon_sym_COMMA, - STATE(1908), 1, + STATE(1915), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3507), 4, + ACTIONS(3498), 4, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [107757] = 6, - ACTIONS(3177), 1, - anon_sym_as, - ACTIONS(3179), 1, - anon_sym_if, - ACTIONS(3181), 1, - anon_sym_and, - ACTIONS(3183), 1, - anon_sym_or, + [108133] = 4, + ACTIONS(3647), 1, + anon_sym_COMMA, + STATE(1973), 1, + aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3468), 2, - anon_sym_COMMA, + ACTIONS(3547), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, anon_sym_RBRACK, - [107778] = 4, - ACTIONS(3630), 1, + [108150] = 4, + ACTIONS(3650), 1, anon_sym_COMMA, - STATE(1942), 1, + STATE(1893), 1, aux_sym_for_in_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3586), 4, + ACTIONS(3518), 4, anon_sym_RPAREN, anon_sym_if, anon_sym_async, anon_sym_for, - [107795] = 2, + [108167] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3632), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107808] = 4, - ACTIONS(3634), 1, + ACTIONS(3652), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3433), 4, anon_sym_COMMA, - STATE(1957), 1, - aux_sym_for_in_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3495), 4, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [107825] = 6, - ACTIONS(3153), 1, anon_sym_as, - ACTIONS(3155), 1, - anon_sym_if, - ACTIONS(3157), 1, - anon_sym_and, - ACTIONS(3159), 1, - anon_sym_or, + anon_sym_RBRACK, + anon_sym_PIPE, + [108182] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3637), 2, + ACTIONS(3229), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - [107846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym_line_continuation, - ACTIONS(3641), 1, - anon_sym_BSLASH, - ACTIONS(3639), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107863] = 4, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_PIPE, + [108195] = 4, + ACTIONS(3656), 1, + anon_sym_AT, + ACTIONS(3), 2, sym_comment, - ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3645), 1, - anon_sym_BSLASH, - ACTIONS(3643), 5, - sym__string_content, - sym_escape_interpolation, - sym_string_end, - anon_sym_LBRACE, - sym_escape_sequence, - [107880] = 2, + STATE(1977), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + ACTIONS(3654), 3, + anon_sym_async, + anon_sym_def, + anon_sym_class, + [108212] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3647), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(3659), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3433), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [108227] = 6, + ACTIONS(3604), 1, anon_sym_DOT, + ACTIONS(3606), 1, anon_sym_COLON, - anon_sym_EQ, + ACTIONS(3608), 1, anon_sym_PIPE, - [107893] = 2, + ACTIONS(3663), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 6, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(3661), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107906] = 6, - ACTIONS(3177), 1, + [108248] = 6, + ACTIONS(3199), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3201), 1, anon_sym_if, - ACTIONS(3181), 1, + ACTIONS(3203), 1, anon_sym_and, - ACTIONS(3183), 1, + ACTIONS(3205), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1449), 2, + ACTIONS(3665), 2, anon_sym_COMMA, anon_sym_RBRACK, - [107927] = 4, - ACTIONS(3649), 1, - anon_sym_PIPE, - STATE(1964), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3592), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [107944] = 2, + [108269] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3667), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3433), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [107957] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3647), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [107970] = 5, - ACTIONS(3572), 1, + anon_sym_RBRACE, + [108284] = 7, + ACTIONS(3551), 1, anon_sym_DOT, - ACTIONS(3576), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3580), 1, + ACTIONS(3559), 1, anon_sym_PIPE, + ACTIONS(3669), 1, + anon_sym_COMMA, + ACTIONS(3671), 1, + anon_sym_RBRACK, + STATE(2307), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3470), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [107989] = 6, - ACTIONS(3143), 1, + [108307] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3145), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3149), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3151), 1, + ACTIONS(3177), 1, anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3468), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [108010] = 7, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3596), 1, - anon_sym_as, - ACTIONS(3652), 1, + ACTIONS(3673), 2, anon_sym_COMMA, - ACTIONS(3654), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108033] = 4, - ACTIONS(3656), 1, + [108328] = 4, + ACTIONS(3675), 1, anon_sym_COMMA, - STATE(1970), 1, + STATE(1963), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 4, + ACTIONS(1289), 4, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [108050] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3533), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108063] = 3, - ACTIONS(3), 2, + [108345] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3659), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3251), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [108078] = 2, + ACTIONS(3679), 1, + anon_sym_BSLASH, + ACTIONS(3677), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [108362] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2951), 6, + ACTIONS(1675), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108091] = 2, + [108375] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3462), 6, + ACTIONS(3602), 6, sym__newline, anon_sym_SEMI, anon_sym_DOT, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108104] = 6, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, + [108388] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3637), 2, - anon_sym_COMMA, + ACTIONS(3681), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COLON, - [108125] = 3, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3350), 4, - anon_sym_COMMA, - anon_sym_as, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RBRACE, - [108140] = 2, + [108401] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3632), 6, + ACTIONS(3486), 6, anon_sym_DOT, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [108153] = 3, - ACTIONS(3663), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3251), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108168] = 4, + [108414] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym_line_continuation, - ACTIONS(3667), 1, + ACTIONS(3685), 1, anon_sym_BSLASH, - ACTIONS(3665), 5, + ACTIONS(3683), 5, sym__string_content, sym_escape_interpolation, sym_string_end, anon_sym_LBRACE, sym_escape_sequence, - [108185] = 4, - ACTIONS(3669), 1, - anon_sym_DOT, - STATE(1980), 1, - aux_sym_dotted_name_repeat1, + [108431] = 4, + ACTIONS(3536), 1, + anon_sym_PIPE, + STATE(1956), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3194), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(3687), 4, anon_sym_COMMA, anon_sym_as, - [108202] = 2, + anon_sym_if, + anon_sym_COLON, + [108448] = 6, + ACTIONS(3163), 1, + anon_sym_as, + ACTIONS(3165), 1, + anon_sym_if, + ACTIONS(3167), 1, + anon_sym_and, + ACTIONS(3169), 1, + anon_sym_or, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 6, - anon_sym_DOT, + ACTIONS(3587), 2, anon_sym_RPAREN, anon_sym_COMMA, + [108469] = 4, + ACTIONS(3689), 1, + anon_sym_COMMA, + STATE(1993), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2893), 4, anon_sym_COLON, anon_sym_EQ, - anon_sym_PIPE, - [108215] = 6, - ACTIONS(3177), 1, + anon_sym_RBRACE, + sym_type_conversion, + [108486] = 7, + ACTIONS(3692), 1, + anon_sym_COMMA, + ACTIONS(3694), 1, anon_sym_as, - ACTIONS(3179), 1, + ACTIONS(3696), 1, anon_sym_if, - ACTIONS(3181), 1, - anon_sym_and, - ACTIONS(3183), 1, - anon_sym_or, + ACTIONS(3698), 1, + anon_sym_COLON, + STATE(2108), 1, + aux_sym_case_clause_repeat1, + STATE(2735), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3202), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [108236] = 2, + [108509] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3672), 5, + ACTIONS(3681), 6, + anon_sym_DOT, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [108248] = 4, - ACTIONS(3674), 1, + [108522] = 5, + ACTIONS(3510), 1, + anon_sym_DOT, + ACTIONS(3512), 1, + anon_sym_COLON, + ACTIONS(3514), 1, anon_sym_PIPE, - STATE(1984), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [108264] = 2, + ACTIONS(3700), 2, + sym__newline, + anon_sym_SEMI, + [108540] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 5, + ACTIONS(3589), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_EQ, anon_sym_PIPE, - [108276] = 2, + [108552] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3679), 5, + ACTIONS(3702), 5, anon_sym_COMMA, - anon_sym_as, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108288] = 5, - ACTIONS(3681), 1, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [108564] = 5, + ACTIONS(3704), 1, anon_sym_DOT, - ACTIONS(3683), 1, + ACTIONS(3706), 1, anon_sym_COLON, - ACTIONS(3685), 1, + ACTIONS(3708), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3470), 2, + ACTIONS(3508), 2, anon_sym_COMMA, anon_sym_EQ, - [108306] = 5, - ACTIONS(3689), 1, - anon_sym_COMMA, - ACTIONS(3691), 1, - anon_sym_as, - STATE(2162), 1, - aux_sym__import_list_repeat1, + [108582] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3687), 2, - sym__newline, - anon_sym_SEMI, - [108324] = 6, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3547), 5, + anon_sym_COMMA, anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3693), 1, - anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [108594] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108344] = 6, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3695), 1, - anon_sym_else, + ACTIONS(3522), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [108606] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108364] = 5, - ACTIONS(3472), 1, + ACTIONS(3589), 5, anon_sym_DOT, - ACTIONS(3474), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [108618] = 5, + ACTIONS(3551), 1, + anon_sym_DOT, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3476), 1, + ACTIONS(3559), 1, anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3697), 2, - sym__newline, - anon_sym_SEMI, - [108382] = 6, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3699), 1, - anon_sym_else, + ACTIONS(3508), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [108636] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108402] = 2, + ACTIONS(3522), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [108648] = 4, + ACTIONS(3710), 1, + anon_sym_COMMA, + STATE(2038), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, + ACTIONS(1289), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_from, + [108664] = 4, + ACTIONS(3712), 1, anon_sym_PIPE, - [108414] = 2, + STATE(2092), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 5, + ACTIONS(3534), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108426] = 2, + [108680] = 3, + STATE(2092), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 5, + ACTIONS(3581), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [108438] = 2, + [108694] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 5, + ACTIONS(3528), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, + anon_sym_PIPE, + [108706] = 4, + ACTIONS(3714), 1, anon_sym_PIPE, - [108450] = 2, + STATE(2009), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3707), 5, + ACTIONS(3581), 3, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + [108722] = 3, + ACTIONS(3717), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3307), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [108462] = 2, + [108736] = 4, + ACTIONS(3719), 1, + anon_sym_PIPE, + STATE(2014), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3709), 5, + ACTIONS(3687), 3, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, + [108752] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3520), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [108474] = 6, - ACTIONS(3711), 1, - anon_sym_COLON, - ACTIONS(3713), 1, - anon_sym_EQ, - ACTIONS(3715), 1, - anon_sym_RBRACE, - ACTIONS(3717), 1, - sym_type_conversion, - STATE(2730), 1, - sym_format_specifier, + [108764] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108494] = 3, - STATE(2067), 1, + ACTIONS(3721), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [108776] = 4, + ACTIONS(3719), 1, + anon_sym_PIPE, + STATE(2025), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 4, + ACTIONS(3624), 3, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [108508] = 2, + [108792] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3719), 5, + ACTIONS(3486), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [108520] = 6, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3721), 1, - anon_sym_else, + [108804] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108540] = 6, - ACTIONS(2967), 1, + ACTIONS(3702), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [108816] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(2969), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(2971), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(2973), 1, + ACTIONS(3177), 1, anon_sym_or, ACTIONS(3723), 1, - sym__newline, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108560] = 4, + [108836] = 6, ACTIONS(3725), 1, - anon_sym_PIPE, - STATE(2004), 1, - aux_sym_union_pattern_repeat1, + anon_sym_COLON, + ACTIONS(3727), 1, + anon_sym_EQ, + ACTIONS(3729), 1, + anon_sym_RBRACE, + ACTIONS(3731), 1, + sym_type_conversion, + STATE(2647), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [108576] = 2, + [108856] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3728), 5, + ACTIONS(3547), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, anon_sym_RBRACE, - [108588] = 6, - ACTIONS(3161), 1, + [108868] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3730), 1, + ACTIONS(3733), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108608] = 2, + [108888] = 4, + ACTIONS(3719), 1, + anon_sym_PIPE, + STATE(2014), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 5, + ACTIONS(3534), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [108620] = 6, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3368), 1, - anon_sym_COLON, + anon_sym_RBRACK, + [108904] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108640] = 2, + ACTIONS(3702), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [108916] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 5, - anon_sym_DOT, + ACTIONS(3547), 5, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [108652] = 2, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [108928] = 3, + STATE(2014), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3632), 5, - anon_sym_DOT, + ACTIONS(3581), 4, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [108664] = 2, + [108942] = 4, + ACTIONS(3735), 1, + anon_sym_PIPE, + STATE(2025), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3647), 5, - anon_sym_DOT, + ACTIONS(3581), 3, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, - anon_sym_PIPE, - [108676] = 2, + [108958] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3734), 5, + ACTIONS(3738), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108688] = 6, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3736), 1, - anon_sym_COLON, + [108970] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108708] = 2, + ACTIONS(3740), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [108982] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3738), 5, + ACTIONS(3721), 5, anon_sym_COMMA, anon_sym_if, anon_sym_async, anon_sym_for, - anon_sym_RBRACK, - [108720] = 2, + anon_sym_RBRACE, + [108994] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3740), 5, + ACTIONS(3742), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108732] = 6, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3744), 1, - anon_sym_COLON, + [109006] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108752] = 2, + ACTIONS(3744), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109018] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3709), 5, + ACTIONS(3746), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108764] = 2, + [109030] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 5, + ACTIONS(3748), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108776] = 2, + [109042] = 5, + ACTIONS(3750), 1, + anon_sym_COMMA, + ACTIONS(3752), 1, + anon_sym_RBRACE, + STATE(2468), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3570), 5, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(3307), 2, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [108788] = 6, - ACTIONS(3161), 1, - anon_sym_as, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3748), 1, + [109060] = 5, + ACTIONS(3551), 1, + anon_sym_DOT, + ACTIONS(3555), 1, anon_sym_COLON, + ACTIONS(3559), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108808] = 2, + ACTIONS(3754), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [109078] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3172), 5, + ACTIONS(1569), 5, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, sym_type_conversion, - [108820] = 6, - ACTIONS(3161), 1, + [109090] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3750), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108840] = 6, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3752), 1, - anon_sym_LPAREN, - ACTIONS(3754), 1, - anon_sym_COLON, - STATE(2438), 1, - sym_type_parameter, - STATE(2667), 1, - sym_argument_list, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [108860] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3194), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_as, - [108872] = 4, ACTIONS(3756), 1, - anon_sym_PIPE, - STATE(1984), 1, - aux_sym_union_pattern_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3488), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [108888] = 2, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1609), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [108900] = 6, - ACTIONS(3161), 1, + [109110] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, ACTIONS(3758), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108920] = 4, + [109130] = 4, ACTIONS(3760), 1, anon_sym_COMMA, - STATE(2028), 1, + STATE(2038), 1, aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3209), 3, + ACTIONS(3224), 3, sym__newline, anon_sym_SEMI, anon_sym_from, - [108936] = 6, - ACTIONS(3161), 1, + [109146] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, ACTIONS(3763), 1, - anon_sym_else, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109166] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [108956] = 2, + ACTIONS(3721), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + [109178] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -117325,1602 +118034,1707 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [108968] = 5, + [109190] = 6, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, ACTIONS(3767), 1, - anon_sym_COMMA, - ACTIONS(3769), 1, - anon_sym_RBRACE, - STATE(2309), 1, - aux_sym_dict_pattern_repeat1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 2, - anon_sym_COLON, - anon_sym_PIPE, - [108986] = 4, - ACTIONS(3771), 1, - anon_sym_PIPE, - STATE(2056), 1, - aux_sym_union_pattern_repeat1, + [109210] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3488), 3, + ACTIONS(3769), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109002] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109222] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3773), 5, + ACTIONS(3771), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109014] = 6, - ACTIONS(3163), 1, - anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3742), 1, - anon_sym_as, - ACTIONS(3775), 1, - anon_sym_COLON, + [109234] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109034] = 6, - ACTIONS(3161), 1, + ACTIONS(3773), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3777), 1, - anon_sym_else, + anon_sym_COLON, + anon_sym_PIPE, + [109246] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109054] = 6, - ACTIONS(3161), 1, + ACTIONS(3775), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3779), 1, anon_sym_COLON, + anon_sym_PIPE, + [109258] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109074] = 6, - ACTIONS(3161), 1, + ACTIONS(3777), 5, + anon_sym_COMMA, anon_sym_as, - ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3781), 1, anon_sym_COLON, + anon_sym_PIPE, + [109270] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109094] = 5, - ACTIONS(3344), 1, - sym_identifier, - STATE(2221), 1, - sym_dotted_name, - STATE(2433), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3783), 2, - sym__newline, - anon_sym_SEMI, - [109112] = 6, - ACTIONS(2578), 1, - anon_sym_COLON, - ACTIONS(3484), 1, - anon_sym_if, - ACTIONS(3785), 1, + ACTIONS(3779), 5, anon_sym_COMMA, - STATE(2106), 1, - aux_sym_case_clause_repeat1, - STATE(2762), 1, - sym_if_clause, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109132] = 5, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, + anon_sym_as, + anon_sym_if, anon_sym_COLON, - ACTIONS(3524), 1, anon_sym_PIPE, + [109282] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3787), 2, + ACTIONS(3781), 5, anon_sym_COMMA, - anon_sym_RBRACK, - [109150] = 6, - ACTIONS(3789), 1, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109294] = 6, + ACTIONS(3783), 1, anon_sym_LBRACE, - ACTIONS(3792), 1, + ACTIONS(3786), 1, anon_sym_RBRACE, - ACTIONS(3794), 1, + ACTIONS(3788), 1, aux_sym_format_specifier_token1, - STATE(2041), 1, + STATE(2050), 1, aux_sym_format_specifier_repeat1, - STATE(2357), 1, + STATE(2437), 1, sym_interpolation, ACTIONS(5), 2, sym_comment, sym_line_continuation, - [109170] = 5, + [109314] = 6, + ACTIONS(3725), 1, + anon_sym_COLON, + ACTIONS(3791), 1, + anon_sym_EQ, + ACTIONS(3793), 1, + anon_sym_RBRACE, + ACTIONS(3795), 1, + sym_type_conversion, + STATE(2725), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109334] = 5, ACTIONS(3797), 1, anon_sym_COMMA, ACTIONS(3799), 1, anon_sym_RBRACE, - STATE(2374), 1, + STATE(2282), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 2, + ACTIONS(3307), 2, anon_sym_COLON, anon_sym_PIPE, - [109188] = 2, + [109352] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 5, + ACTIONS(3185), 5, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109364] = 6, + ACTIONS(3171), 1, anon_sym_as, + ACTIONS(3173), 1, anon_sym_if, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3801), 1, anon_sym_COLON, - anon_sym_PIPE, - [109200] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3803), 5, - anon_sym_COMMA, + [109384] = 6, + ACTIONS(3171), 1, anon_sym_as, + ACTIONS(3173), 1, anon_sym_if, - anon_sym_COLON, - anon_sym_PIPE, - [109212] = 5, - ACTIONS(3344), 1, - sym_identifier, - STATE(2221), 1, - sym_dotted_name, - STATE(2433), 1, - sym_aliased_import, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3803), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3783), 2, + [109404] = 6, + ACTIONS(3007), 1, + anon_sym_as, + ACTIONS(3009), 1, + anon_sym_if, + ACTIONS(3011), 1, + anon_sym_and, + ACTIONS(3013), 1, + anon_sym_or, + ACTIONS(3805), 1, sym__newline, - anon_sym_SEMI, - [109230] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2951), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, + [109424] = 4, + ACTIONS(3712), 1, anon_sym_PIPE, - [109242] = 3, - ACTIONS(3805), 1, - anon_sym_LPAREN, + STATE(2092), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 4, + ACTIONS(3687), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - [109256] = 3, - ACTIONS(3807), 1, - anon_sym_LPAREN, + [109440] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 4, + ACTIONS(3807), 5, anon_sym_COMMA, anon_sym_as, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_RBRACE, - [109270] = 4, - ACTIONS(3756), 1, - anon_sym_PIPE, - STATE(2025), 1, - aux_sym_union_pattern_repeat1, + [109452] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3610), 3, - anon_sym_RPAREN, + ACTIONS(3809), 5, anon_sym_COMMA, anon_sym_as, - [109286] = 4, - ACTIONS(3771), 1, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(2032), 1, - aux_sym_union_pattern_repeat1, + [109464] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3566), 3, + ACTIONS(3811), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109302] = 4, - ACTIONS(3771), 1, + anon_sym_if, + anon_sym_COLON, anon_sym_PIPE, - STATE(2032), 1, - aux_sym_union_pattern_repeat1, + [109476] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3610), 3, + ACTIONS(3813), 5, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACE, - [109318] = 2, + anon_sym_if, + anon_sym_COLON, + anon_sym_PIPE, + [109488] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3728), 5, + ACTIONS(3815), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACK, - [109330] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2871), 5, + anon_sym_COLON, + anon_sym_PIPE, + [109500] = 6, + ACTIONS(3661), 1, anon_sym_COMMA, + ACTIONS(3704), 1, + anon_sym_DOT, + ACTIONS(3706), 1, anon_sym_COLON, + ACTIONS(3708), 1, + anon_sym_PIPE, + ACTIONS(3817), 1, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109342] = 3, - STATE(2032), 1, - aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 4, + [109520] = 5, + ACTIONS(3819), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, + ACTIONS(3821), 1, anon_sym_RBRACE, - [109356] = 2, + STATE(2326), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3738), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [109368] = 4, - ACTIONS(3809), 1, + ACTIONS(3307), 2, + anon_sym_COLON, anon_sym_PIPE, - STATE(2056), 1, - aux_sym_union_pattern_repeat1, + [109538] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 3, + ACTIONS(2902), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [109384] = 6, - ACTIONS(3711), 1, anon_sym_COLON, - ACTIONS(3812), 1, anon_sym_EQ, - ACTIONS(3814), 1, anon_sym_RBRACE, - ACTIONS(3816), 1, sym_type_conversion, - STATE(2654), 1, - sym_format_specifier, + [109550] = 5, + ACTIONS(3604), 1, + anon_sym_DOT, + ACTIONS(3606), 1, + anon_sym_COLON, + ACTIONS(3608), 1, + anon_sym_PIPE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109404] = 5, - ACTIONS(3818), 1, + ACTIONS(3661), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3820), 1, - anon_sym_RBRACE, - STATE(2457), 1, - aux_sym_dict_pattern_repeat1, + [109568] = 5, + ACTIONS(3408), 1, + sym_identifier, + STATE(2154), 1, + sym_dotted_name, + STATE(2350), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3823), 2, + sym__newline, + anon_sym_SEMI, + [109586] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 2, + ACTIONS(2973), 5, + anon_sym_DOT, + anon_sym_COMMA, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [109422] = 2, + [109598] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3822), 5, + ACTIONS(2900), 5, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, anon_sym_COLON, - anon_sym_PIPE, - [109434] = 6, - ACTIONS(3161), 1, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109610] = 6, + ACTIONS(3825), 1, + anon_sym_LBRACE, + ACTIONS(3827), 1, + anon_sym_RBRACE, + ACTIONS(3829), 1, + aux_sym_format_specifier_token1, + STATE(2099), 1, + aux_sym_format_specifier_repeat1, + STATE(2437), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [109630] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3824), 1, - anon_sym_COLON, + ACTIONS(3831), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109454] = 5, - ACTIONS(3826), 1, - anon_sym_COMMA, - ACTIONS(3828), 1, - anon_sym_RBRACE, - STATE(2263), 1, - aux_sym_dict_pattern_repeat1, + [109650] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 2, + ACTIONS(2893), 5, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_PIPE, - [109472] = 2, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [109662] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3830), 5, + ACTIONS(3833), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109484] = 4, - ACTIONS(3832), 1, - anon_sym_PIPE, - STATE(2067), 1, - aux_sym_union_pattern_repeat1, + [109674] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3610), 3, + ACTIONS(3229), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109500] = 2, + [109686] = 5, + ACTIONS(3408), 1, + sym_identifier, + STATE(2154), 1, + sym_dotted_name, + STATE(2350), 1, + sym_aliased_import, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3835), 2, + sym__newline, + anon_sym_SEMI, + [109704] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 5, + ACTIONS(1675), 5, + anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109512] = 2, + anon_sym_PIPE, + [109716] = 6, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3837), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3728), 5, - anon_sym_RPAREN, + [109736] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3839), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - [109524] = 2, + anon_sym_COLON, + anon_sym_PIPE, + [109748] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3738), 5, + ACTIONS(3841), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109536] = 4, - ACTIONS(3832), 1, + anon_sym_COLON, anon_sym_PIPE, - STATE(2004), 1, - aux_sym_union_pattern_repeat1, + [109760] = 6, + ACTIONS(3408), 1, + sym_identifier, + ACTIONS(3843), 1, + anon_sym_LPAREN, + STATE(2082), 1, + sym_dotted_name, + STATE(2153), 1, + sym_aliased_import, + STATE(2505), 1, + sym__import_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109780] = 5, + ACTIONS(3408), 1, + sym_identifier, + STATE(2154), 1, + sym_dotted_name, + STATE(2350), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3488), 3, + ACTIONS(3835), 2, + sym__newline, + anon_sym_SEMI, + [109798] = 5, + ACTIONS(3847), 1, anon_sym_COMMA, + ACTIONS(3849), 1, anon_sym_as, - anon_sym_RBRACK, - [109552] = 2, + STATE(2167), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3845), 2, + sym__newline, + anon_sym_SEMI, + [109816] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 5, + ACTIONS(3851), 5, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - sym_type_conversion, - [109564] = 6, - ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3163), 1, anon_sym_if, - ACTIONS(3165), 1, - anon_sym_and, - ACTIONS(3167), 1, - anon_sym_or, - ACTIONS(3834), 1, anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [109584] = 4, - ACTIONS(3165), 1, + anon_sym_PIPE, + [109828] = 6, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, + ACTIONS(3853), 1, + anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2998), 3, + [109848] = 6, + ACTIONS(3171), 1, anon_sym_as, + ACTIONS(3173), 1, anon_sym_if, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3374), 1, anon_sym_COLON, - [109600] = 6, - ACTIONS(3161), 1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [109868] = 6, + ACTIONS(3171), 1, anon_sym_as, - ACTIONS(3163), 1, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3836), 1, + ACTIONS(3855), 1, anon_sym_else, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109620] = 2, + [109888] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3495), 5, + ACTIONS(1675), 5, + anon_sym_DOT, anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, + anon_sym_COLON, anon_sym_RBRACK, - [109632] = 2, + anon_sym_PIPE, + [109900] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3462), 5, + ACTIONS(3602), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, anon_sym_PIPE, - [109644] = 2, + [109912] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2951), 5, + ACTIONS(3681), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, - anon_sym_EQ, + anon_sym_RBRACK, anon_sym_PIPE, - [109656] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3495), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - [109668] = 4, - ACTIONS(3838), 1, - anon_sym_COMMA, - STATE(2028), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(1287), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_from, - [109684] = 2, + [109924] = 3, + ACTIONS(3857), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3840), 5, + ACTIONS(3307), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [109696] = 4, - ACTIONS(3832), 1, + anon_sym_RBRACE, + [109938] = 4, + ACTIONS(3859), 1, anon_sym_PIPE, - STATE(2067), 1, + STATE(2100), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3566), 3, + ACTIONS(3687), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - [109712] = 6, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3752), 1, - anon_sym_LPAREN, - ACTIONS(3842), 1, - anon_sym_COLON, - STATE(2249), 1, - sym_type_parameter, - STATE(2690), 1, - sym_argument_list, + anon_sym_RBRACE, + [109954] = 4, + ACTIONS(3712), 1, + anon_sym_PIPE, + STATE(2009), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109732] = 2, + ACTIONS(3624), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + [109970] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3454), 5, + ACTIONS(2973), 5, anon_sym_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_EQ, anon_sym_PIPE, - [109744] = 2, + [109982] = 6, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3861), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3632), 5, - anon_sym_DOT, - anon_sym_COMMA, + [110002] = 6, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, + anon_sym_if, + ACTIONS(3175), 1, + anon_sym_and, + ACTIONS(3177), 1, + anon_sym_or, + ACTIONS(3863), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [109756] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3647), 5, - anon_sym_DOT, - anon_sym_COMMA, + [110022] = 6, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(3865), 1, + anon_sym_LPAREN, + ACTIONS(3867), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_PIPE, - [109768] = 2, + STATE(2441), 1, + sym_type_parameter, + STATE(2676), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3454), 5, - anon_sym_DOT, + [110042] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3841), 5, anon_sym_COMMA, + anon_sym_as, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_PIPE, - [109780] = 5, - ACTIONS(3516), 1, - anon_sym_DOT, - ACTIONS(3520), 1, + anon_sym_RBRACE, + [110054] = 6, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(3865), 1, + anon_sym_LPAREN, + ACTIONS(3869), 1, anon_sym_COLON, - ACTIONS(3524), 1, - anon_sym_PIPE, + STATE(2424), 1, + sym_type_parameter, + STATE(2642), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3470), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [109798] = 2, + [110074] = 6, + ACTIONS(3825), 1, + anon_sym_LBRACE, + ACTIONS(3871), 1, + anon_sym_RBRACE, + ACTIONS(3873), 1, + aux_sym_format_specifier_token1, + STATE(2050), 1, + aux_sym_format_specifier_repeat1, + STATE(2437), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [110094] = 4, + ACTIONS(3859), 1, + anon_sym_PIPE, + STATE(2105), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3466), 5, - anon_sym_DOT, + ACTIONS(3624), 3, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE, - [109810] = 6, - ACTIONS(3161), 1, anon_sym_as, - ACTIONS(3163), 1, + anon_sym_RBRACE, + [110110] = 6, + ACTIONS(3171), 1, + anon_sym_as, + ACTIONS(3173), 1, anon_sym_if, - ACTIONS(3165), 1, + ACTIONS(3175), 1, anon_sym_and, - ACTIONS(3167), 1, + ACTIONS(3177), 1, anon_sym_or, - ACTIONS(3844), 1, + ACTIONS(3875), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109830] = 4, - ACTIONS(3756), 1, + [110130] = 4, + ACTIONS(3859), 1, anon_sym_PIPE, - STATE(2025), 1, + STATE(2100), 1, aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3566), 3, - anon_sym_RPAREN, + ACTIONS(3534), 3, anon_sym_COMMA, anon_sym_as, - [109846] = 2, + anon_sym_RBRACE, + [110146] = 3, + STATE(2100), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2878), 5, + ACTIONS(3581), 4, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_as, + anon_sym_PIPE, anon_sym_RBRACE, - sym_type_conversion, - [109858] = 2, + [110160] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3846), 5, + ACTIONS(3877), 5, anon_sym_COMMA, anon_sym_as, anon_sym_if, anon_sym_COLON, anon_sym_PIPE, - [109870] = 3, - ACTIONS(3848), 1, - anon_sym_LPAREN, + [110172] = 4, + ACTIONS(3879), 1, + anon_sym_PIPE, + STATE(2105), 1, + aux_sym_union_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 4, + ACTIONS(3581), 3, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [109884] = 5, - ACTIONS(3344), 1, - sym_identifier, - STATE(2221), 1, - sym_dotted_name, - STATE(2433), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3850), 2, - sym__newline, - anon_sym_SEMI, - [109902] = 6, - ACTIONS(3852), 1, - anon_sym_LBRACE, - ACTIONS(3854), 1, anon_sym_RBRACE, - ACTIONS(3856), 1, - aux_sym_format_specifier_token1, - STATE(2041), 1, - aux_sym_format_specifier_repeat1, - STATE(2357), 1, - sym_interpolation, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - [109922] = 2, + [110188] = 5, + ACTIONS(3882), 1, + anon_sym_COMMA, + ACTIONS(3884), 1, + anon_sym_RBRACE, + STATE(2407), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3858), 5, - anon_sym_COMMA, - anon_sym_as, - anon_sym_if, + ACTIONS(3307), 2, anon_sym_COLON, anon_sym_PIPE, - [109934] = 2, + [110206] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3495), 5, - anon_sym_COMMA, - anon_sym_if, - anon_sym_async, - anon_sym_for, - anon_sym_RBRACE, - [109946] = 6, - ACTIONS(3574), 1, - anon_sym_COMMA, - ACTIONS(3681), 1, + ACTIONS(3602), 5, anon_sym_DOT, - ACTIONS(3683), 1, + anon_sym_COMMA, anon_sym_COLON, - ACTIONS(3685), 1, - anon_sym_PIPE, - ACTIONS(3860), 1, anon_sym_EQ, + anon_sym_PIPE, + [110218] = 6, + ACTIONS(2584), 1, + anon_sym_COLON, + ACTIONS(3696), 1, + anon_sym_if, + ACTIONS(3886), 1, + anon_sym_COMMA, + STATE(2155), 1, + aux_sym_case_clause_repeat1, + STATE(2634), 1, + sym_if_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109966] = 6, - ACTIONS(3344), 1, - sym_identifier, - ACTIONS(3862), 1, - anon_sym_LPAREN, - STATE(1988), 1, - sym_dotted_name, - STATE(2113), 1, - sym_aliased_import, - STATE(2555), 1, - sym__import_list, + [110238] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [109986] = 2, + ACTIONS(3681), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [110250] = 3, + ACTIONS(3888), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 5, + ACTIONS(3307), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, anon_sym_PIPE, - [109998] = 6, - ACTIONS(3852), 1, - anon_sym_LBRACE, - ACTIONS(3866), 1, - anon_sym_RBRACE, - ACTIONS(3868), 1, - aux_sym_format_specifier_token1, - STATE(2092), 1, - aux_sym_format_specifier_repeat1, - STATE(2357), 1, - sym_interpolation, - ACTIONS(5), 2, + [110264] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110018] = 2, + ACTIONS(3771), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [110275] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3533), 5, - anon_sym_DOT, + ACTIONS(3744), 4, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110030] = 5, - ACTIONS(3572), 1, - anon_sym_DOT, - ACTIONS(3576), 1, - anon_sym_COLON, - ACTIONS(3580), 1, - anon_sym_PIPE, + [110286] = 4, + ACTIONS(3890), 1, + anon_sym_COMMA, + STATE(2038), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3574), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [110048] = 3, - STATE(2025), 1, - aux_sym_union_pattern_repeat1, + ACTIONS(1417), 2, + sym__newline, + anon_sym_SEMI, + [110301] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3592), 4, + ACTIONS(3815), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110062] = 2, + [110312] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 5, + ACTIONS(3746), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_if, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE, - [110074] = 2, + [110323] = 5, + ACTIONS(3892), 1, + anon_sym_case, + ACTIONS(3894), 1, + sym__dedent, + STATE(2218), 1, + aux_sym__match_block_repeat1, + STATE(2522), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [110085] = 5, - ACTIONS(3711), 1, + [110340] = 5, + ACTIONS(3725), 1, anon_sym_COLON, - ACTIONS(3872), 1, + ACTIONS(3896), 1, anon_sym_RBRACE, - ACTIONS(3874), 1, + ACTIONS(3898), 1, sym_type_conversion, - STATE(2628), 1, + STATE(2629), 1, sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110102] = 5, - ACTIONS(3876), 1, - anon_sym_case, - ACTIONS(3878), 1, - sym__dedent, - STATE(2110), 1, - aux_sym__match_block_repeat1, - STATE(2533), 1, - sym_case_clause, + [110357] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110119] = 4, - ACTIONS(3880), 1, + ACTIONS(3748), 4, anon_sym_COMMA, - STATE(2106), 1, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [110368] = 5, + ACTIONS(3900), 1, + anon_sym_RPAREN, + ACTIONS(3902), 1, + anon_sym_COMMA, + ACTIONS(3904), 1, + anon_sym_as, + STATE(2279), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 2, - anon_sym_if, - anon_sym_COLON, - [110134] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3885), 1, - anon_sym_LPAREN, - STATE(2494), 1, - sym_parameters, - STATE(2497), 1, - sym_type_parameter, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110151] = 4, - ACTIONS(3233), 1, + [110385] = 5, + ACTIONS(3906), 1, anon_sym_COMMA, - STATE(2028), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(3908), 1, + anon_sym_as, + ACTIONS(3910), 1, + anon_sym_RBRACK, + STATE(2280), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3887), 2, - sym__newline, - anon_sym_SEMI, - [110166] = 4, - ACTIONS(3891), 1, + [110402] = 4, + ACTIONS(3914), 1, anon_sym_COMMA, - STATE(2117), 1, - aux_sym_global_statement_repeat1, + STATE(2193), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3889), 2, + ACTIONS(3912), 2, sym__newline, anon_sym_SEMI, - [110181] = 5, - ACTIONS(3876), 1, - anon_sym_case, - ACTIONS(3893), 1, - sym__dedent, - STATE(2152), 1, - aux_sym__match_block_repeat1, - STATE(2533), 1, - sym_case_clause, + [110417] = 5, + ACTIONS(3835), 1, + anon_sym_RPAREN, + ACTIONS(3916), 1, + sym_identifier, + STATE(2467), 1, + sym_dotted_name, + STATE(2520), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110198] = 4, - ACTIONS(3895), 1, - anon_sym_COMMA, - STATE(2028), 1, - aux_sym_assert_statement_repeat1, + [110434] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1467), 2, - sym__newline, - anon_sym_SEMI, - [110213] = 4, - ACTIONS(3899), 1, + ACTIONS(3833), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2112), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3897), 2, - sym__newline, - anon_sym_SEMI, - [110228] = 4, - ACTIONS(3689), 1, + anon_sym_as, + anon_sym_PIPE, + [110445] = 5, + ACTIONS(3904), 1, + anon_sym_as, + ACTIONS(3918), 1, + anon_sym_RPAREN, + ACTIONS(3920), 1, anon_sym_COMMA, - STATE(2161), 1, - aux_sym__import_list_repeat1, + STATE(2286), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3687), 2, - sym__newline, - anon_sym_SEMI, - [110243] = 5, - ACTIONS(3876), 1, + [110462] = 5, + ACTIONS(3892), 1, anon_sym_case, - ACTIONS(3902), 1, + ACTIONS(3922), 1, sym__dedent, - STATE(2215), 1, + STATE(2131), 1, aux_sym__match_block_repeat1, - STATE(2533), 1, + STATE(2522), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110260] = 4, - ACTIONS(3891), 1, - anon_sym_COMMA, - STATE(2154), 1, - aux_sym_global_statement_repeat1, + [110479] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3904), 2, - sym__newline, - anon_sym_SEMI, - [110275] = 3, + ACTIONS(3740), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [110490] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3251), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(3906), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [110288] = 4, - ACTIONS(3891), 1, + ACTIONS(3742), 4, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2154), 1, - aux_sym_global_statement_repeat1, + anon_sym_as, + anon_sym_PIPE, + [110501] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3908), 2, - sym__newline, - anon_sym_SEMI, - [110303] = 5, - ACTIONS(3910), 1, + ACTIONS(3744), 4, anon_sym_RPAREN, - ACTIONS(3912), 1, anon_sym_COMMA, - ACTIONS(3914), 1, anon_sym_as, - STATE(2365), 1, - aux_sym_case_clause_repeat1, + anon_sym_PIPE, + [110512] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110320] = 5, - ACTIONS(3916), 1, + ACTIONS(3839), 4, anon_sym_COMMA, - ACTIONS(3918), 1, anon_sym_as, - ACTIONS(3920), 1, anon_sym_RBRACK, - STATE(2370), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [110337] = 2, + anon_sym_PIPE, + [110523] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 4, + ACTIONS(3841), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110348] = 2, + [110534] = 5, + ACTIONS(3892), 1, + anon_sym_case, + ACTIONS(3924), 1, + sym__dedent, + STATE(2218), 1, + aux_sym__match_block_repeat1, + STATE(2522), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110551] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3709), 4, + ACTIONS(3851), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110359] = 2, + [110562] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3779), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110370] = 2, + [110573] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3926), 4, + anon_sym_async, + anon_sym_def, + anon_sym_class, + anon_sym_AT, + [110584] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3803), 4, + ACTIONS(3765), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110381] = 5, - ACTIONS(3681), 1, - anon_sym_DOT, - ACTIONS(3683), 1, - anon_sym_COLON, - ACTIONS(3685), 1, - anon_sym_PIPE, - ACTIONS(3922), 1, - anon_sym_EQ, + [110595] = 5, + ACTIONS(3904), 1, + anon_sym_as, + ACTIONS(3928), 1, + anon_sym_RPAREN, + ACTIONS(3930), 1, + anon_sym_COMMA, + STATE(2321), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110398] = 5, - ACTIONS(3914), 1, + [110612] = 5, + ACTIONS(3908), 1, anon_sym_as, - ACTIONS(3924), 1, - anon_sym_RPAREN, - ACTIONS(3926), 1, + ACTIONS(3932), 1, anon_sym_COMMA, - STATE(2391), 1, + ACTIONS(3934), 1, + anon_sym_RBRACK, + STATE(2322), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110415] = 2, + [110629] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3672), 4, + ACTIONS(3877), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110426] = 2, + [110640] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3858), 4, + ACTIONS(3765), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110437] = 2, + [110651] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 4, + ACTIONS(3769), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110448] = 2, + [110662] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 4, + ACTIONS(3746), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, anon_sym_PIPE, - [110459] = 2, + [110673] = 5, + ACTIONS(3904), 1, + anon_sym_as, + ACTIONS(3936), 1, + anon_sym_RPAREN, + ACTIONS(3938), 1, + anon_sym_COMMA, + STATE(2331), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3707), 4, + [110690] = 5, + ACTIONS(3661), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, + ACTIONS(3704), 1, + anon_sym_DOT, + ACTIONS(3706), 1, + anon_sym_COLON, + ACTIONS(3708), 1, anon_sym_PIPE, - [110470] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 4, + [110707] = 5, + ACTIONS(3904), 1, + anon_sym_as, + ACTIONS(3940), 1, + anon_sym_RPAREN, + ACTIONS(3942), 1, anon_sym_COMMA, + STATE(2276), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [110724] = 3, + ACTIONS(3694), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110481] = 4, - ACTIONS(3930), 1, - anon_sym_DOT, - STATE(2173), 1, - aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3928), 2, - anon_sym_import, - sym_identifier, - [110496] = 2, + ACTIONS(3944), 3, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + [110737] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 4, + ACTIONS(3946), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110507] = 2, + anon_sym_if, + anon_sym_COLON, + [110748] = 5, + ACTIONS(3725), 1, + anon_sym_COLON, + ACTIONS(3948), 1, + anon_sym_RBRACE, + ACTIONS(3950), 1, + sym_type_conversion, + STATE(2754), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3734), 4, + [110765] = 4, + ACTIONS(3954), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110518] = 2, + STATE(2156), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3773), 4, + ACTIONS(3952), 2, + sym__newline, + anon_sym_SEMI, + [110780] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3771), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110529] = 2, + [110791] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3822), 4, + ACTIONS(3773), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110540] = 2, + [110802] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3840), 4, + ACTIONS(3775), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110551] = 2, + [110813] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3679), 4, + ACTIONS(3777), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110562] = 2, + [110824] = 4, + ACTIONS(3847), 1, + anon_sym_COMMA, + STATE(2148), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3765), 4, - anon_sym_COMMA, + ACTIONS(3845), 2, + sym__newline, + anon_sym_SEMI, + [110839] = 3, + ACTIONS(3849), 1, anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110573] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3846), 4, + ACTIONS(3956), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110584] = 2, + [110852] = 4, + ACTIONS(3958), 1, + anon_sym_COMMA, + STATE(2155), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3830), 4, + ACTIONS(3944), 2, + anon_sym_if, + anon_sym_COLON, + [110867] = 4, + ACTIONS(3963), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110595] = 2, + STATE(2156), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 4, + ACTIONS(3961), 2, + sym__newline, + anon_sym_SEMI, + [110882] = 4, + ACTIONS(3968), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110606] = 2, + STATE(2183), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 4, + ACTIONS(3966), 2, + sym__newline, + anon_sym_SEMI, + [110897] = 4, + ACTIONS(3968), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110617] = 2, + STATE(2183), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3970), 2, + sym__newline, + anon_sym_SEMI, + [110912] = 5, + ACTIONS(3408), 1, + sym_identifier, + STATE(2082), 1, + sym_dotted_name, + STATE(2153), 1, + sym_aliased_import, + STATE(2563), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3719), 4, + [110929] = 4, + ACTIONS(3257), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE, - [110628] = 2, + STATE(2038), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3972), 2, + sym__newline, + anon_sym_SEMI, + [110944] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 4, + ACTIONS(3779), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110639] = 2, + [110955] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3740), 4, + ACTIONS(3781), 4, anon_sym_COMMA, anon_sym_as, anon_sym_RBRACK, anon_sym_PIPE, - [110650] = 4, - ACTIONS(3934), 1, + [110966] = 5, + ACTIONS(3904), 1, + anon_sym_as, + ACTIONS(3974), 1, + anon_sym_RPAREN, + ACTIONS(3976), 1, anon_sym_COMMA, - STATE(2214), 1, - aux_sym_print_statement_repeat1, + STATE(2459), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3932), 2, - sym__newline, - anon_sym_SEMI, - [110665] = 5, - ACTIONS(3914), 1, + [110983] = 5, + ACTIONS(3904), 1, anon_sym_as, - ACTIONS(3936), 1, + ACTIONS(3978), 1, anon_sym_RPAREN, - ACTIONS(3938), 1, + ACTIONS(3980), 1, anon_sym_COMMA, - STATE(2260), 1, + STATE(2355), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110682] = 5, - ACTIONS(3918), 1, + [111000] = 5, + ACTIONS(3908), 1, anon_sym_as, - ACTIONS(3940), 1, + ACTIONS(3982), 1, anon_sym_COMMA, - ACTIONS(3942), 1, + ACTIONS(3984), 1, anon_sym_RBRACK, - STATE(2261), 1, + STATE(2461), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110699] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3610), 4, + [111017] = 5, + ACTIONS(3845), 1, + anon_sym_RPAREN, + ACTIONS(3986), 1, anon_sym_COMMA, + ACTIONS(3988), 1, anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [110710] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3944), 4, - anon_sym_async, - anon_sym_def, - anon_sym_class, - anon_sym_AT, - [110721] = 5, - ACTIONS(3946), 1, - anon_sym_case, - ACTIONS(3949), 1, - sym__dedent, - STATE(2152), 1, - aux_sym__match_block_repeat1, - STATE(2533), 1, - sym_case_clause, + STATE(2463), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110738] = 5, - ACTIONS(3914), 1, - anon_sym_as, - ACTIONS(3951), 1, - anon_sym_RPAREN, - ACTIONS(3953), 1, + [111034] = 4, + ACTIONS(3990), 1, anon_sym_COMMA, - STATE(2264), 1, - aux_sym_case_clause_repeat1, + STATE(2156), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110755] = 4, - ACTIONS(3957), 1, + ACTIONS(3952), 2, + sym__newline, + anon_sym_SEMI, + [111049] = 4, + ACTIONS(3994), 1, anon_sym_COMMA, - STATE(2154), 1, - aux_sym_global_statement_repeat1, + STATE(2200), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3955), 2, + ACTIONS(3992), 2, sym__newline, anon_sym_SEMI, - [110770] = 2, + [111064] = 4, + ACTIONS(3998), 1, + anon_sym_DOT, + STATE(2169), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110781] = 2, + ACTIONS(3996), 2, + anon_sym_import, + sym_identifier, + [111079] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3709), 4, + ACTIONS(3781), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110792] = 2, + [111090] = 5, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(4001), 1, + anon_sym_LPAREN, + STATE(2494), 1, + sym_type_parameter, + STATE(2584), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [110803] = 2, + [111107] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3803), 4, - anon_sym_RPAREN, + ACTIONS(3807), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [110814] = 5, - ACTIONS(3687), 1, - anon_sym_RPAREN, - ACTIONS(3960), 1, - anon_sym_COMMA, - ACTIONS(3962), 1, - anon_sym_as, - STATE(2375), 1, - aux_sym__import_list_repeat1, + [111118] = 5, + ACTIONS(3916), 1, + sym_identifier, + STATE(2166), 1, + sym_dotted_name, + STATE(2368), 1, + sym_aliased_import, + STATE(2770), 1, + sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110831] = 5, - ACTIONS(3344), 1, + [111135] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3809), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111146] = 5, + ACTIONS(3916), 1, sym_identifier, - STATE(1988), 1, + STATE(2166), 1, sym_dotted_name, - STATE(2113), 1, + STATE(2368), 1, sym_aliased_import, - STATE(2573), 1, + STATE(2771), 1, sym__import_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110848] = 4, - ACTIONS(3966), 1, - anon_sym_COMMA, - STATE(2222), 1, - aux_sym__import_list_repeat1, + [111163] = 4, + ACTIONS(4005), 1, + anon_sym_DOT, + STATE(2169), 1, + aux_sym_import_prefix_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 2, - sym__newline, - anon_sym_SEMI, - [110863] = 4, - ACTIONS(3968), 1, - anon_sym_COMMA, - STATE(2222), 1, - aux_sym__import_list_repeat1, + ACTIONS(4003), 2, + anon_sym_import, + sym_identifier, + [111178] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3964), 2, - sym__newline, - anon_sym_SEMI, - [110878] = 5, - ACTIONS(3914), 1, - anon_sym_as, - ACTIONS(3970), 1, + ACTIONS(3839), 4, anon_sym_RPAREN, - ACTIONS(3972), 1, anon_sym_COMMA, - STATE(2304), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [111189] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110895] = 5, - ACTIONS(3918), 1, - anon_sym_as, - ACTIONS(3974), 1, + ACTIONS(3841), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3976), 1, - anon_sym_RBRACK, - STATE(2306), 1, - aux_sym_case_clause_repeat1, + anon_sym_as, + anon_sym_PIPE, + [111200] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110912] = 2, + ACTIONS(3811), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111211] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3672), 4, + ACTIONS(3851), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110923] = 2, + [111222] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3858), 4, + ACTIONS(3877), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110934] = 2, + [111233] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 4, - anon_sym_RPAREN, + ACTIONS(3813), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [110945] = 2, + [111244] = 4, + ACTIONS(4009), 1, + anon_sym_COMMA, + STATE(2183), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4007), 2, + sym__newline, + anon_sym_SEMI, + [111259] = 4, + ACTIONS(4014), 1, + anon_sym_COLON, + ACTIONS(4016), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 4, + ACTIONS(4012), 2, anon_sym_RPAREN, anon_sym_COMMA, + [111274] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3815), 4, + anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [110956] = 2, + [111285] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3707), 4, - anon_sym_RPAREN, + ACTIONS(3833), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - [110967] = 5, - ACTIONS(3914), 1, + [111296] = 5, + ACTIONS(3904), 1, anon_sym_as, - ACTIONS(3978), 1, + ACTIONS(4018), 1, anon_sym_RPAREN, - ACTIONS(3980), 1, + ACTIONS(4020), 1, anon_sym_COMMA, - STATE(2314), 1, + STATE(2473), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [110984] = 2, + [111313] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 4, + ACTIONS(3769), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [110995] = 5, - ACTIONS(3574), 1, + [111324] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3771), 4, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3681), 1, + anon_sym_as, + anon_sym_PIPE, + [111335] = 5, + ACTIONS(3704), 1, anon_sym_DOT, - ACTIONS(3683), 1, + ACTIONS(3706), 1, anon_sym_COLON, - ACTIONS(3685), 1, + ACTIONS(3708), 1, anon_sym_PIPE, + ACTIONS(4022), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111012] = 4, - ACTIONS(3984), 1, - anon_sym_DOT, - STATE(2173), 1, - aux_sym_import_prefix_repeat1, + [111352] = 5, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(4001), 1, + anon_sym_LPAREN, + STATE(2571), 1, + sym_parameters, + STATE(2589), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3982), 2, - anon_sym_import, - sym_identifier, - [111027] = 4, - ACTIONS(3989), 1, - anon_sym_COLON, - ACTIONS(3991), 1, - anon_sym_EQ, + [111369] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3987), 2, + ACTIONS(3748), 4, anon_sym_RPAREN, anon_sym_COMMA, - [111042] = 2, + anon_sym_as, + anon_sym_PIPE, + [111380] = 4, + ACTIONS(4026), 1, + anon_sym_COMMA, + STATE(2200), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4024), 2, + sym__newline, + anon_sym_SEMI, + [111395] = 4, + ACTIONS(3968), 1, + anon_sym_COMMA, + STATE(2157), 1, + aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 4, + ACTIONS(4028), 2, + sym__newline, + anon_sym_SEMI, + [111410] = 4, + ACTIONS(3257), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_if, - anon_sym_COLON, - [111053] = 2, + STATE(2038), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3734), 4, - anon_sym_RPAREN, + ACTIONS(4030), 2, + sym__newline, + anon_sym_SEMI, + [111425] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3839), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111064] = 2, + anon_sym_RBRACE, + [111436] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, @@ -118929,7487 +119743,7369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111075] = 2, + [111447] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3822), 4, - anon_sym_RPAREN, + ACTIONS(3851), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111086] = 2, + anon_sym_RBRACE, + [111458] = 4, + ACTIONS(3968), 1, + anon_sym_COMMA, + STATE(2158), 1, + aux_sym_global_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4032), 2, + sym__newline, + anon_sym_SEMI, + [111473] = 4, + ACTIONS(4036), 1, + anon_sym_COMMA, + STATE(2200), 1, + aux_sym_print_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3840), 4, + ACTIONS(4034), 2, + sym__newline, + anon_sym_SEMI, + [111488] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3738), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111097] = 2, + [111499] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3679), 4, - anon_sym_RPAREN, + ACTIONS(3877), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111108] = 2, + anon_sym_RBRACE, + [111510] = 5, + ACTIONS(3835), 1, + anon_sym_RPAREN, + ACTIONS(3916), 1, + sym_identifier, + STATE(2467), 1, + sym_dotted_name, + STATE(2520), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3765), 4, - anon_sym_RPAREN, + [111527] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3738), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111119] = 2, + anon_sym_RBRACE, + [111538] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3846), 4, + ACTIONS(3775), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111130] = 2, + [111549] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3830), 4, - anon_sym_RPAREN, + ACTIONS(3740), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111141] = 2, + anon_sym_RBRACE, + [111560] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 4, - anon_sym_RPAREN, + ACTIONS(3742), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111152] = 2, + anon_sym_RBRACE, + [111571] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 4, - anon_sym_RPAREN, + ACTIONS(3744), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111163] = 2, + anon_sym_RBRACE, + [111582] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3719), 4, - anon_sym_RPAREN, + ACTIONS(3746), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111174] = 2, + anon_sym_RBRACE, + [111593] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3870), 4, + ACTIONS(3777), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111185] = 5, - ACTIONS(3914), 1, - anon_sym_as, - ACTIONS(3995), 1, - anon_sym_RPAREN, - ACTIONS(3997), 1, - anon_sym_COMMA, - STATE(2442), 1, - aux_sym_case_clause_repeat1, + [111604] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111202] = 2, + ACTIONS(3748), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + anon_sym_RBRACE, + [111615] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3740), 4, + ACTIONS(3807), 4, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - [111213] = 5, - ACTIONS(3918), 1, - anon_sym_as, - ACTIONS(3999), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_RBRACK, - STATE(2446), 1, - aux_sym_case_clause_repeat1, + [111626] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111230] = 2, + ACTIONS(3738), 4, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE, + [111637] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3701), 4, + ACTIONS(3809), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [111241] = 2, + [111648] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3746), 4, + ACTIONS(3765), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111252] = 2, + [111659] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3803), 4, + ACTIONS(3769), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111263] = 5, - ACTIONS(3850), 1, + [111670] = 5, + ACTIONS(3823), 1, anon_sym_RPAREN, - ACTIONS(4003), 1, + ACTIONS(3916), 1, sym_identifier, - STATE(2458), 1, + STATE(2467), 1, sym_dotted_name, - STATE(2564), 1, + STATE(2520), 1, sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111280] = 2, + [111687] = 5, + ACTIONS(4039), 1, + anon_sym_case, + ACTIONS(4042), 1, + sym__dedent, + STATE(2218), 1, + aux_sym__match_block_repeat1, + STATE(2522), 1, + sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3672), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111291] = 2, + [111704] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3858), 4, + ACTIONS(3811), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, - anon_sym_RBRACE, - [111302] = 2, + [111715] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3864), 4, + ACTIONS(3773), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111313] = 2, + [111726] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3705), 4, + ACTIONS(3775), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111324] = 2, + [111737] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3707), 4, + ACTIONS(3777), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111335] = 2, + [111748] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3732), 4, + ACTIONS(3740), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [111346] = 2, + [111759] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 4, + ACTIONS(3742), 4, anon_sym_COMMA, anon_sym_as, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_RBRACE, - [111357] = 2, + [111770] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3734), 4, + ACTIONS(3779), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111368] = 2, + [111781] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3773), 4, + ACTIONS(3781), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111379] = 2, + [111792] = 3, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3822), 4, - anon_sym_COMMA, - anon_sym_as, + ACTIONS(3307), 2, + anon_sym_COLON, anon_sym_PIPE, + ACTIONS(4044), 2, + anon_sym_COMMA, anon_sym_RBRACE, - [111390] = 2, + [111805] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3840), 4, + ACTIONS(3807), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111401] = 2, + [111816] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3679), 4, + ACTIONS(3809), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111412] = 2, + [111827] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3765), 4, + ACTIONS(3811), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111423] = 2, + [111838] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3846), 4, + ACTIONS(3813), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111434] = 2, + [111849] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3830), 4, + ACTIONS(3815), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111445] = 2, + [111860] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3801), 4, + ACTIONS(3833), 4, anon_sym_COMMA, anon_sym_as, anon_sym_PIPE, anon_sym_RBRACE, - [111456] = 2, + [111871] = 5, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(4001), 1, + anon_sym_LPAREN, + STATE(2553), 1, + sym_parameters, + STATE(2581), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3677), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111467] = 2, + [111888] = 5, + ACTIONS(1567), 1, + anon_sym_LBRACK, + ACTIONS(4001), 1, + anon_sym_LPAREN, + STATE(2554), 1, + sym_parameters, + STATE(2583), 1, + sym_type_parameter, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3719), 4, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111478] = 2, + [111905] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3740), 4, + ACTIONS(3687), 4, anon_sym_COMMA, anon_sym_as, - anon_sym_PIPE, - anon_sym_RBRACE, - [111489] = 4, - ACTIONS(4007), 1, - anon_sym_COMMA, - STATE(2112), 1, - aux_sym_print_statement_repeat1, + anon_sym_if, + anon_sym_COLON, + [111916] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4005), 2, - sym__newline, - anon_sym_SEMI, - [111504] = 5, - ACTIONS(3876), 1, + ACTIONS(3813), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_PIPE, + [111927] = 5, + ACTIONS(3892), 1, anon_sym_case, - ACTIONS(4009), 1, + ACTIONS(4046), 1, sym__dedent, - STATE(2152), 1, + STATE(2116), 1, aux_sym__match_block_repeat1, - STATE(2533), 1, + STATE(2522), 1, sym_case_clause, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111521] = 4, - ACTIONS(4013), 1, - anon_sym_COMMA, - STATE(2112), 1, - aux_sym_print_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4011), 2, - sym__newline, - anon_sym_SEMI, - [111536] = 4, - ACTIONS(3233), 1, + [111944] = 5, + ACTIONS(3908), 1, + anon_sym_as, + ACTIONS(4048), 1, anon_sym_COMMA, - STATE(2028), 1, - aux_sym_assert_statement_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4015), 2, - sym__newline, - anon_sym_SEMI, - [111551] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3885), 1, - anon_sym_LPAREN, - STATE(2515), 1, - sym_type_parameter, - STATE(2552), 1, - sym_parameters, + ACTIONS(4050), 1, + anon_sym_RBRACK, + STATE(2374), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111568] = 5, - ACTIONS(3711), 1, + [111961] = 4, + ACTIONS(3704), 1, + anon_sym_DOT, + ACTIONS(3708), 1, + anon_sym_PIPE, + ACTIONS(4052), 1, anon_sym_COLON, - ACTIONS(4017), 1, - anon_sym_RBRACE, - ACTIONS(4019), 1, - sym_type_conversion, - STATE(2612), 1, - sym_format_specifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111585] = 4, - ACTIONS(3891), 1, - anon_sym_COMMA, - STATE(2115), 1, - aux_sym_global_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4021), 2, - sym__newline, - anon_sym_SEMI, - [111600] = 3, - ACTIONS(3691), 1, - anon_sym_as, + [111975] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4023), 3, + ACTIONS(4007), 3, sym__newline, anon_sym_SEMI, anon_sym_COMMA, - [111613] = 4, - ACTIONS(4027), 1, + [111985] = 4, + ACTIONS(1337), 1, + anon_sym_RBRACE, + ACTIONS(4054), 1, anon_sym_COMMA, - STATE(2222), 1, - aux_sym__import_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4025), 2, - sym__newline, - anon_sym_SEMI, - [111628] = 5, - ACTIONS(4003), 1, - sym_identifier, - STATE(2159), 1, - sym_dotted_name, - STATE(2274), 1, - sym_aliased_import, - STATE(2759), 1, - sym__import_list, + STATE(2291), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111645] = 5, - ACTIONS(4003), 1, - sym_identifier, - STATE(2159), 1, - sym_dotted_name, - STATE(2274), 1, - sym_aliased_import, - STATE(2583), 1, - sym__import_list, + [111999] = 4, + ACTIONS(3704), 1, + anon_sym_DOT, + ACTIONS(3708), 1, + anon_sym_PIPE, + ACTIONS(4056), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111662] = 5, - ACTIONS(3783), 1, - anon_sym_RPAREN, - ACTIONS(4003), 1, - sym_identifier, - STATE(2458), 1, - sym_dotted_name, - STATE(2564), 1, - sym_aliased_import, + [112013] = 4, + ACTIONS(4058), 1, + anon_sym_SEMI, + ACTIONS(4060), 1, + sym__newline, + STATE(2254), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111679] = 5, - ACTIONS(3783), 1, - anon_sym_RPAREN, - ACTIONS(4003), 1, - sym_identifier, - STATE(2458), 1, - sym_dotted_name, - STATE(2564), 1, - sym_aliased_import, + [112027] = 4, + ACTIONS(1431), 1, + anon_sym_COLON, + ACTIONS(4062), 1, + anon_sym_COMMA, + STATE(2405), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111696] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3885), 1, - anon_sym_LPAREN, - STATE(2548), 1, - sym_parameters, - STATE(2576), 1, - sym_type_parameter, + [112041] = 4, + ACTIONS(3348), 1, + anon_sym_COMMA, + ACTIONS(3350), 1, + anon_sym_RBRACE, + STATE(2296), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111713] = 5, - ACTIONS(1579), 1, - anon_sym_LBRACK, - ACTIONS(3885), 1, - anon_sym_LPAREN, - STATE(2550), 1, - sym_parameters, - STATE(2578), 1, - sym_type_parameter, + [112055] = 4, + ACTIONS(4064), 1, + anon_sym_SEMI, + ACTIONS(4066), 1, + sym__newline, + STATE(2353), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111730] = 5, - ACTIONS(3914), 1, - anon_sym_as, - ACTIONS(4030), 1, - anon_sym_RPAREN, - ACTIONS(4032), 1, + [112069] = 4, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(2353), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3132), 1, + anon_sym_RPAREN, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111747] = 3, - ACTIONS(3482), 1, - anon_sym_as, + [112083] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3883), 3, - anon_sym_COMMA, - anon_sym_if, + ACTIONS(2477), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_in, + [112093] = 4, + ACTIONS(3704), 1, + anon_sym_DOT, + ACTIONS(3708), 1, + anon_sym_PIPE, + ACTIONS(4068), 1, anon_sym_COLON, - [111760] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3703), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - anon_sym_PIPE, - [111771] = 4, - ACTIONS(4034), 1, + [112107] = 4, + ACTIONS(4070), 1, anon_sym_RPAREN, - ACTIONS(4036), 1, - anon_sym_COMMA, - STATE(2366), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111785] = 4, - ACTIONS(3241), 1, + ACTIONS(4072), 1, anon_sym_COMMA, - ACTIONS(3243), 1, - anon_sym_RBRACK, - STATE(2387), 1, - aux_sym_subscript_repeat1, + STATE(2251), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111799] = 4, - ACTIONS(3411), 1, + [112121] = 4, + ACTIONS(3378), 1, anon_sym_COMMA, - ACTIONS(3413), 1, + ACTIONS(3380), 1, anon_sym_RBRACE, - STATE(2240), 1, + STATE(2257), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111813] = 4, - ACTIONS(3681), 1, - anon_sym_DOT, - ACTIONS(3685), 1, - anon_sym_PIPE, - ACTIONS(4038), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [111827] = 4, - ACTIONS(1011), 1, - anon_sym_RBRACK, - ACTIONS(4040), 1, + [112135] = 4, + ACTIONS(4075), 1, anon_sym_COMMA, - STATE(2298), 1, - aux_sym_type_parameter_repeat1, + ACTIONS(4078), 1, + anon_sym_RBRACK, + STATE(2253), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111841] = 4, - ACTIONS(615), 1, + [112149] = 4, + ACTIONS(625), 1, sym__newline, - ACTIONS(4042), 1, + ACTIONS(4080), 1, anon_sym_SEMI, - STATE(2300), 1, + STATE(2440), 1, aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111855] = 4, - ACTIONS(3010), 1, + [112163] = 4, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(4044), 1, + ACTIONS(4082), 1, anon_sym_RPAREN, - STATE(2346), 1, + STATE(2481), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111869] = 4, - ACTIONS(3010), 1, + [112177] = 4, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(4046), 1, + ACTIONS(4084), 1, anon_sym_RPAREN, - STATE(2346), 1, + STATE(2481), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111883] = 4, - ACTIONS(1323), 1, + [112191] = 4, + ACTIONS(1293), 1, anon_sym_RBRACE, - ACTIONS(4048), 1, + ACTIONS(4086), 1, anon_sym_COMMA, - STATE(2293), 1, + STATE(2291), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111897] = 4, - ACTIONS(3034), 1, + [112205] = 4, + ACTIONS(3961), 1, anon_sym_RPAREN, - ACTIONS(3036), 1, + ACTIONS(4088), 1, anon_sym_COMMA, - STATE(2248), 1, - aux_sym_argument_list_repeat1, + STATE(2258), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111911] = 4, - ACTIONS(4050), 1, + [112219] = 4, + ACTIONS(3145), 1, anon_sym_RPAREN, - ACTIONS(4052), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - STATE(2250), 1, + STATE(2266), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111925] = 3, - ACTIONS(3643), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3645), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [111937] = 3, - ACTIONS(3558), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [112233] = 4, + ACTIONS(4091), 1, + anon_sym_RPAREN, + ACTIONS(4093), 1, + anon_sym_COMMA, + STATE(2267), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3560), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [111949] = 4, - ACTIONS(3227), 1, + [112247] = 4, + ACTIONS(3309), 1, anon_sym_COMMA, - ACTIONS(3229), 1, + ACTIONS(3311), 1, anon_sym_RBRACK, - STATE(2252), 1, + STATE(2269), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111963] = 3, - ACTIONS(3622), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3624), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [111975] = 2, + [112261] = 4, + ACTIONS(4095), 1, + anon_sym_COMMA, + ACTIONS(4097), 1, + anon_sym_in, + STATE(2264), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2453), 3, + [112275] = 4, + ACTIONS(617), 1, sym__newline, + ACTIONS(4099), 1, anon_sym_SEMI, + STATE(2440), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112289] = 4, + ACTIONS(957), 1, anon_sym_in, - [111985] = 4, - ACTIONS(1171), 1, - anon_sym_RPAREN, - ACTIONS(4054), 1, + ACTIONS(4101), 1, anon_sym_COMMA, - STATE(2269), 1, - aux_sym_argument_list_repeat1, + STATE(2313), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [111999] = 4, - ACTIONS(3752), 1, - anon_sym_LPAREN, - ACTIONS(4056), 1, - anon_sym_COLON, - STATE(2606), 1, - sym_argument_list, + [112303] = 3, + ACTIONS(4105), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112013] = 4, - ACTIONS(1173), 1, + ACTIONS(4103), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [112315] = 4, + ACTIONS(1163), 1, anon_sym_RPAREN, - ACTIONS(4058), 1, + ACTIONS(4107), 1, anon_sym_COMMA, - STATE(2269), 1, + STATE(2476), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112027] = 4, - ACTIONS(4060), 1, + [112329] = 4, + ACTIONS(1165), 1, + anon_sym_RPAREN, + ACTIONS(4109), 1, anon_sym_COMMA, - ACTIONS(4062), 1, + STATE(2476), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112343] = 4, + ACTIONS(4111), 1, + anon_sym_COMMA, + ACTIONS(4113), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112041] = 4, - ACTIONS(4064), 1, + [112357] = 4, + ACTIONS(4115), 1, anon_sym_COMMA, - ACTIONS(4066), 1, + ACTIONS(4117), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112055] = 4, + [112371] = 4, + ACTIONS(4119), 1, + anon_sym_COMMA, + ACTIONS(4122), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112385] = 4, ACTIONS(1001), 1, anon_sym_RBRACK, - ACTIONS(4068), 1, + ACTIONS(4124), 1, anon_sym_COMMA, - STATE(2298), 1, + STATE(2474), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112069] = 2, + [112399] = 4, + ACTIONS(3043), 1, + anon_sym_COMMA, + ACTIONS(4126), 1, + anon_sym_RPAREN, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3610), 3, - anon_sym_RPAREN, + [112413] = 4, + ACTIONS(3043), 1, anon_sym_COMMA, - anon_sym_as, - [112079] = 4, - ACTIONS(1459), 1, + ACTIONS(4128), 1, anon_sym_RPAREN, - ACTIONS(4070), 1, - anon_sym_COMMA, - STATE(2380), 1, - aux_sym_with_clause_repeat1, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112093] = 4, - ACTIONS(1423), 1, - anon_sym_COLON, - ACTIONS(4072), 1, + [112427] = 4, + ACTIONS(4130), 1, + sym__newline, + ACTIONS(4132), 1, + sym__indent, + STATE(838), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112441] = 4, + ACTIONS(4134), 1, anon_sym_COMMA, - STATE(2259), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4136), 1, + anon_sym_COLON, + STATE(2430), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112107] = 4, - ACTIONS(4074), 1, + [112455] = 4, + ACTIONS(2624), 1, anon_sym_RPAREN, - ACTIONS(4076), 1, + ACTIONS(4138), 1, anon_sym_COMMA, - STATE(2257), 1, - aux_sym__parameters_repeat1, + STATE(2470), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112121] = 4, - ACTIONS(4079), 1, - anon_sym_COMMA, - ACTIONS(4081), 1, - anon_sym_RBRACE, - STATE(2262), 1, - aux_sym_dict_pattern_repeat1, + [112469] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112135] = 4, - ACTIONS(4083), 1, + ACTIONS(1632), 3, anon_sym_COMMA, - ACTIONS(4086), 1, anon_sym_COLON, - STATE(2259), 1, - aux_sym_with_clause_repeat1, + anon_sym_EQ, + [112479] = 4, + ACTIONS(4140), 1, + anon_sym_COMMA, + ACTIONS(4142), 1, + anon_sym_RBRACE, + STATE(2281), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112149] = 4, - ACTIONS(2634), 1, + [112493] = 4, + ACTIONS(2652), 1, anon_sym_RPAREN, - ACTIONS(4088), 1, + ACTIONS(4144), 1, anon_sym_COMMA, - STATE(2313), 1, + STATE(2470), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112163] = 4, - ACTIONS(2636), 1, + [112507] = 4, + ACTIONS(2654), 1, anon_sym_RBRACK, - ACTIONS(4090), 1, + ACTIONS(4146), 1, anon_sym_COMMA, - STATE(2414), 1, + STATE(2348), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112177] = 4, - ACTIONS(4092), 1, + [112521] = 4, + ACTIONS(4148), 1, anon_sym_COMMA, - ACTIONS(4094), 1, + ACTIONS(4150), 1, anon_sym_RBRACE, - STATE(2326), 1, + STATE(2270), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112191] = 4, - ACTIONS(4096), 1, + [112535] = 4, + ACTIONS(4152), 1, anon_sym_COMMA, - ACTIONS(4098), 1, + ACTIONS(4154), 1, anon_sym_RBRACE, - STATE(2326), 1, + STATE(2270), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112205] = 4, - ACTIONS(2644), 1, - anon_sym_RPAREN, - ACTIONS(4100), 1, - anon_sym_COMMA, - STATE(2313), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112219] = 4, - ACTIONS(3681), 1, - anon_sym_DOT, - ACTIONS(3685), 1, - anon_sym_PIPE, - ACTIONS(4102), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112233] = 2, + [112549] = 3, + ACTIONS(4158), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3955), 3, + ACTIONS(4156), 2, sym__newline, anon_sym_SEMI, - anon_sym_COMMA, - [112243] = 3, - ACTIONS(3509), 1, + [112561] = 3, + ACTIONS(3613), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3511), 2, + ACTIONS(3615), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [112255] = 4, - ACTIONS(1309), 1, - anon_sym_RBRACE, - ACTIONS(4104), 1, - anon_sym_COMMA, - STATE(2293), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, + [112573] = 3, + ACTIONS(3502), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [112269] = 4, - ACTIONS(3626), 1, + ACTIONS(3504), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112585] = 4, + ACTIONS(2660), 1, anon_sym_RPAREN, - ACTIONS(4106), 1, + ACTIONS(4160), 1, anon_sym_COMMA, - STATE(2269), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112283] = 4, - ACTIONS(4109), 1, - anon_sym_SEMI, - ACTIONS(4111), 1, - sym__newline, - STATE(2279), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112297] = 4, - ACTIONS(4113), 1, - sym__newline, - ACTIONS(4115), 1, - sym__indent, - STATE(778), 1, - sym__match_block, + STATE(2470), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112311] = 3, - ACTIONS(3665), 1, + [112599] = 3, + ACTIONS(3569), 1, aux_sym_format_specifier_token1, ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3667), 2, + ACTIONS(3571), 2, anon_sym_LBRACE, anon_sym_RBRACE, - [112323] = 4, - ACTIONS(3010), 1, - anon_sym_COMMA, - ACTIONS(3048), 1, + [112611] = 4, + ACTIONS(3112), 1, anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(3114), 1, + anon_sym_COMMA, + STATE(2377), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112337] = 4, - ACTIONS(3687), 1, + [112625] = 4, + ACTIONS(4162), 1, anon_sym_RPAREN, - ACTIONS(3960), 1, + ACTIONS(4164), 1, anon_sym_COMMA, - STATE(2371), 1, - aux_sym__import_list_repeat1, + STATE(2383), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112351] = 2, + [112639] = 4, + ACTIONS(1289), 1, + anon_sym_COLON, + ACTIONS(4166), 1, + anon_sym_COMMA, + STATE(2382), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 3, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_EQ, - [112361] = 4, - ACTIONS(3417), 1, + [112653] = 4, + ACTIONS(4168), 1, anon_sym_COMMA, - ACTIONS(3419), 1, + ACTIONS(4171), 1, anon_sym_RBRACE, - STATE(2282), 1, + STATE(2291), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112375] = 3, - ACTIONS(3639), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3641), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112387] = 3, - ACTIONS(3213), 1, - anon_sym_from, + [112667] = 4, + ACTIONS(1890), 1, + anon_sym_RPAREN, + ACTIONS(4173), 1, + anon_sym_COMMA, + STATE(2298), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3211), 2, - sym__newline, - anon_sym_SEMI, - [112399] = 4, - ACTIONS(623), 1, - sym__newline, - ACTIONS(4117), 1, - anon_sym_SEMI, - STATE(2300), 1, - aux_sym__simple_statements_repeat1, + [112681] = 4, + ACTIONS(3043), 1, + anon_sym_COMMA, + ACTIONS(3120), 1, + anon_sym_RPAREN, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112413] = 4, - ACTIONS(2987), 1, + [112695] = 4, + ACTIONS(3484), 1, anon_sym_RBRACK, - ACTIONS(3131), 1, + ACTIONS(4175), 1, anon_sym_COMMA, - STATE(2397), 1, + STATE(2294), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112427] = 2, + [112709] = 4, + ACTIONS(3480), 1, + anon_sym_COMMA, + ACTIONS(3482), 1, + anon_sym_RBRACE, + STATE(2299), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2446), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_in, - [112437] = 4, - ACTIONS(1333), 1, + [112723] = 4, + ACTIONS(1335), 1, anon_sym_RBRACE, - ACTIONS(4119), 1, + ACTIONS(4178), 1, anon_sym_COMMA, - STATE(2293), 1, + STATE(2291), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112451] = 4, - ACTIONS(4121), 1, + [112737] = 4, + ACTIONS(3338), 1, anon_sym_COMMA, - ACTIONS(4123), 1, + ACTIONS(3340), 1, anon_sym_RBRACK, - STATE(2399), 1, - aux_sym__patterns_repeat1, + STATE(2436), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112465] = 4, - ACTIONS(3340), 1, + [112751] = 4, + ACTIONS(2893), 1, + anon_sym_RPAREN, + ACTIONS(4180), 1, anon_sym_COMMA, - ACTIONS(3342), 1, + STATE(2298), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112765] = 4, + ACTIONS(1315), 1, anon_sym_RBRACE, - STATE(2268), 1, + ACTIONS(4183), 1, + anon_sym_COMMA, + STATE(2291), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112479] = 4, - ACTIONS(3050), 1, + [112779] = 4, + ACTIONS(4185), 1, + sym__newline, + ACTIONS(4187), 1, + sym__indent, + STATE(782), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [112793] = 4, + ACTIONS(3126), 1, anon_sym_RPAREN, - ACTIONS(3052), 1, + ACTIONS(3128), 1, anon_sym_COMMA, - STATE(2290), 1, + STATE(2306), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112493] = 4, - ACTIONS(4125), 1, + [112807] = 4, + ACTIONS(4189), 1, anon_sym_RPAREN, - ACTIONS(4127), 1, + ACTIONS(4191), 1, anon_sym_COMMA, - STATE(2292), 1, + STATE(2308), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112507] = 4, + [112821] = 4, ACTIONS(2987), 1, - anon_sym_RPAREN, - ACTIONS(3010), 1, anon_sym_COMMA, - STATE(2346), 1, + ACTIONS(2999), 1, + anon_sym_RBRACE, + STATE(2406), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112521] = 4, - ACTIONS(3217), 1, + [112835] = 4, + ACTIONS(3301), 1, anon_sym_COMMA, - ACTIONS(3221), 1, + ACTIONS(3303), 1, anon_sym_RBRACK, - STATE(2295), 1, + STATE(2311), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112535] = 4, - ACTIONS(4123), 1, - anon_sym_RPAREN, - ACTIONS(4129), 1, - anon_sym_COMMA, - STATE(2362), 1, - aux_sym__patterns_repeat1, + [112849] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112549] = 4, - ACTIONS(1181), 1, + ACTIONS(3687), 3, anon_sym_RPAREN, - ACTIONS(4131), 1, anon_sym_COMMA, - STATE(2269), 1, + anon_sym_as, + [112859] = 4, + ACTIONS(1147), 1, + anon_sym_RPAREN, + ACTIONS(4193), 1, + anon_sym_COMMA, + STATE(2476), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112563] = 4, - ACTIONS(1287), 1, + [112873] = 4, + ACTIONS(1013), 1, anon_sym_RBRACK, - ACTIONS(4133), 1, + ACTIONS(4195), 1, anon_sym_COMMA, - STATE(2315), 1, - aux_sym_assert_statement_repeat1, + STATE(2474), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112577] = 4, - ACTIONS(1183), 1, + [112887] = 4, + ACTIONS(1175), 1, anon_sym_RPAREN, - ACTIONS(4135), 1, + ACTIONS(4197), 1, anon_sym_COMMA, - STATE(2269), 1, + STATE(2476), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112591] = 4, - ACTIONS(4137), 1, + [112901] = 4, + ACTIONS(2999), 1, + anon_sym_RPAREN, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(4140), 1, - anon_sym_RBRACE, - STATE(2293), 1, - aux_sym_dictionary_repeat1, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112605] = 4, - ACTIONS(4142), 1, + [112915] = 4, + ACTIONS(4199), 1, anon_sym_COMMA, - ACTIONS(4144), 1, + ACTIONS(4201), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112619] = 4, - ACTIONS(4146), 1, + [112929] = 4, + ACTIONS(4203), 1, anon_sym_COMMA, - ACTIONS(4148), 1, + ACTIONS(4205), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112633] = 4, - ACTIONS(2947), 1, - anon_sym_COLON, - ACTIONS(4150), 1, - anon_sym_COMMA, - STATE(2310), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112647] = 4, - ACTIONS(1017), 1, + [112943] = 4, + ACTIONS(1015), 1, anon_sym_RBRACK, - ACTIONS(4152), 1, + ACTIONS(4207), 1, anon_sym_COMMA, - STATE(2298), 1, + STATE(2474), 1, aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112661] = 4, - ACTIONS(3787), 1, - anon_sym_RBRACK, - ACTIONS(4154), 1, + [112957] = 4, + ACTIONS(2893), 1, + anon_sym_in, + ACTIONS(4209), 1, anon_sym_COMMA, - STATE(2298), 1, - aux_sym_type_parameter_repeat1, + STATE(2313), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112675] = 3, - ACTIONS(3501), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [112971] = 2, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3503), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [112687] = 4, - ACTIONS(4157), 1, + ACTIONS(2468), 3, + sym__newline, anon_sym_SEMI, - ACTIONS(4160), 1, + anon_sym_in, + [112981] = 4, + ACTIONS(4185), 1, sym__newline, - STATE(2300), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112701] = 4, - ACTIONS(3681), 1, - anon_sym_DOT, - ACTIONS(3685), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112715] = 4, - ACTIONS(4003), 1, - sym_identifier, - STATE(2458), 1, - sym_dotted_name, - STATE(2564), 1, - sym_aliased_import, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112729] = 4, - ACTIONS(4164), 1, - anon_sym_COMMA, - ACTIONS(4166), 1, - anon_sym_RBRACE, - STATE(2308), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4187), 1, + sym__indent, + STATE(723), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112743] = 4, - ACTIONS(2654), 1, + [112995] = 4, + ACTIONS(4212), 1, anon_sym_RPAREN, - ACTIONS(4168), 1, + ACTIONS(4214), 1, anon_sym_COMMA, - STATE(2313), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112757] = 2, + STATE(2316), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3610), 3, - anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [112767] = 4, - ACTIONS(2656), 1, - anon_sym_RBRACK, - ACTIONS(4170), 1, + [113009] = 4, + ACTIONS(3122), 1, + anon_sym_RPAREN, + ACTIONS(3124), 1, anon_sym_COMMA, - STATE(2414), 1, - aux_sym_case_clause_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112781] = 3, - ACTIONS(4174), 1, - anon_sym_as, + STATE(2358), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4172), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [112793] = 4, - ACTIONS(4176), 1, + [113023] = 4, + ACTIONS(4217), 1, + anon_sym_RPAREN, + ACTIONS(4219), 1, anon_sym_COMMA, - ACTIONS(4178), 1, - anon_sym_RBRACE, - STATE(2326), 1, - aux_sym_dict_pattern_repeat1, + STATE(2360), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112807] = 4, - ACTIONS(4180), 1, + [113037] = 4, + ACTIONS(4221), 1, anon_sym_COMMA, - ACTIONS(4182), 1, + ACTIONS(4223), 1, anon_sym_RBRACE, - STATE(2326), 1, + STATE(2324), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112821] = 4, - ACTIONS(4074), 1, - anon_sym_COLON, - ACTIONS(4184), 1, - anon_sym_COMMA, - STATE(2310), 1, - aux_sym__parameters_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [112835] = 3, - ACTIONS(3914), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3883), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112847] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3993), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_as, - [112857] = 4, - ACTIONS(3883), 1, - anon_sym_RPAREN, - ACTIONS(4187), 1, + [113051] = 4, + ACTIONS(3247), 1, anon_sym_COMMA, - STATE(2313), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3249), 1, + anon_sym_RBRACK, + STATE(2365), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112871] = 4, - ACTIONS(2662), 1, + [113065] = 4, + ACTIONS(2678), 1, anon_sym_RPAREN, - ACTIONS(4190), 1, + ACTIONS(4225), 1, anon_sym_COMMA, - STATE(2313), 1, + STATE(2470), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112885] = 4, - ACTIONS(3209), 1, + [113079] = 4, + ACTIONS(2712), 1, anon_sym_RBRACK, - ACTIONS(4192), 1, + ACTIONS(4227), 1, anon_sym_COMMA, - STATE(2315), 1, - aux_sym_assert_statement_repeat1, + STATE(2348), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112899] = 4, - ACTIONS(3010), 1, - anon_sym_COMMA, - ACTIONS(3139), 1, + [113093] = 4, + ACTIONS(1445), 1, anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4229), 1, + anon_sym_COMMA, + STATE(2251), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112913] = 4, - ACTIONS(4195), 1, - sym__newline, - ACTIONS(4197), 1, - sym__indent, - STATE(805), 1, - sym__match_block, + [113107] = 4, + ACTIONS(4231), 1, + anon_sym_COMMA, + ACTIONS(4233), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112927] = 4, - ACTIONS(3010), 1, + [113121] = 4, + ACTIONS(4235), 1, anon_sym_COMMA, - ACTIONS(4199), 1, - anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4237), 1, + anon_sym_COLON, + STATE(2430), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112941] = 4, - ACTIONS(4201), 1, - anon_sym_SEMI, - ACTIONS(4203), 1, - sym__newline, - STATE(2327), 1, - aux_sym__simple_statements_repeat1, + [113135] = 4, + ACTIONS(4239), 1, + anon_sym_COMMA, + ACTIONS(4241), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112955] = 4, - ACTIONS(4205), 1, - anon_sym_RPAREN, - ACTIONS(4207), 1, - anon_sym_COMMA, - STATE(2425), 1, - aux_sym__parameters_repeat1, + [113149] = 4, + ACTIONS(3725), 1, + anon_sym_COLON, + ACTIONS(4243), 1, + anon_sym_RBRACE, + STATE(2638), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112969] = 3, - ACTIONS(3991), 1, - anon_sym_EQ, + [113163] = 4, + ACTIONS(4212), 1, + anon_sym_COLON, + ACTIONS(4245), 1, + anon_sym_COMMA, + STATE(2328), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3987), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [112981] = 4, - ACTIONS(3010), 1, + [113177] = 4, + ACTIONS(1289), 1, + anon_sym_RBRACK, + ACTIONS(4248), 1, anon_sym_COMMA, - ACTIONS(3062), 1, - anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, + STATE(2371), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [112995] = 3, - ACTIONS(4209), 1, - anon_sym_COLON, + [113191] = 4, + ACTIONS(4185), 1, + sym__newline, + ACTIONS(4187), 1, + sym__indent, + STATE(800), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3987), 2, + [113205] = 4, + ACTIONS(2686), 1, anon_sym_RPAREN, + ACTIONS(4250), 1, anon_sym_COMMA, - [113007] = 4, - ACTIONS(3431), 1, - anon_sym_COMMA, - ACTIONS(3433), 1, - anon_sym_RBRACE, - STATE(2330), 1, - aux_sym_dictionary_repeat1, + STATE(2470), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113021] = 4, - ACTIONS(3010), 1, - anon_sym_COMMA, - ACTIONS(4211), 1, + [113219] = 4, + ACTIONS(4252), 1, anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4254), 1, + anon_sym_COMMA, + STATE(2292), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113035] = 4, - ACTIONS(4213), 1, + [113233] = 4, + ACTIONS(2971), 1, + anon_sym_RPAREN, + ACTIONS(4256), 1, anon_sym_COMMA, - ACTIONS(4216), 1, - anon_sym_RBRACE, - STATE(2326), 1, - aux_sym_dict_pattern_repeat1, + STATE(2316), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113049] = 4, - ACTIONS(625), 1, - sym__newline, - ACTIONS(4218), 1, - anon_sym_SEMI, - STATE(2300), 1, - aux_sym__simple_statements_repeat1, + [113247] = 4, + ACTIONS(3041), 1, + anon_sym_RPAREN, + ACTIONS(3043), 1, + anon_sym_COMMA, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113063] = 4, - ACTIONS(4113), 1, + [113261] = 4, + ACTIONS(4130), 1, sym__newline, - ACTIONS(4115), 1, + ACTIONS(4132), 1, sym__indent, - STATE(784), 1, + STATE(727), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113077] = 4, - ACTIONS(3711), 1, - anon_sym_COLON, - ACTIONS(4220), 1, + [113275] = 4, + ACTIONS(3364), 1, + anon_sym_COMMA, + ACTIONS(3366), 1, anon_sym_RBRACE, - STATE(2651), 1, - sym_format_specifier, + STATE(2339), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113091] = 4, - ACTIONS(1327), 1, - anon_sym_RBRACE, - ACTIONS(4222), 1, - anon_sym_COMMA, - STATE(2293), 1, - aux_sym_dictionary_repeat1, + [113289] = 3, + ACTIONS(3908), 1, + anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113105] = 4, - ACTIONS(4224), 1, + ACTIONS(3944), 2, anon_sym_COMMA, - ACTIONS(4226), 1, + anon_sym_RBRACK, + [113301] = 4, + ACTIONS(3725), 1, + anon_sym_COLON, + ACTIONS(4258), 1, anon_sym_RBRACE, - STATE(2373), 1, - aux_sym_dict_pattern_repeat1, + STATE(2764), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113119] = 4, - ACTIONS(3064), 1, - anon_sym_RPAREN, - ACTIONS(3066), 1, + [113315] = 4, + ACTIONS(1301), 1, + anon_sym_RBRACE, + ACTIONS(4260), 1, anon_sym_COMMA, - STATE(2337), 1, - aux_sym_argument_list_repeat1, + STATE(2291), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113133] = 4, - ACTIONS(4228), 1, + [113329] = 4, + ACTIONS(3057), 1, anon_sym_RPAREN, - ACTIONS(4230), 1, + ACTIONS(3059), 1, anon_sym_COMMA, - STATE(2338), 1, + STATE(2344), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113147] = 4, - ACTIONS(3468), 1, - anon_sym_RBRACE, - ACTIONS(4232), 1, + [113343] = 4, + ACTIONS(4262), 1, + anon_sym_RPAREN, + ACTIONS(4264), 1, anon_sym_COMMA, - STATE(2334), 1, - aux_sym__collection_elements_repeat1, + STATE(2345), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113161] = 4, - ACTIONS(3253), 1, + [113357] = 4, + ACTIONS(3319), 1, anon_sym_COMMA, - ACTIONS(3255), 1, + ACTIONS(3321), 1, anon_sym_RBRACK, - STATE(2341), 1, + STATE(2347), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113175] = 4, - ACTIONS(1161), 1, - anon_sym_RPAREN, - ACTIONS(4235), 1, - anon_sym_COMMA, - STATE(2269), 1, - aux_sym_argument_list_repeat1, + [113371] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113189] = 4, - ACTIONS(1239), 1, + ACTIONS(3946), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACK, + [113381] = 4, + ACTIONS(1193), 1, anon_sym_RPAREN, - ACTIONS(4237), 1, + ACTIONS(4266), 1, anon_sym_COMMA, - STATE(2269), 1, + STATE(2476), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113203] = 4, - ACTIONS(1193), 1, + [113395] = 4, + ACTIONS(1195), 1, anon_sym_RPAREN, - ACTIONS(4239), 1, + ACTIONS(4268), 1, anon_sym_COMMA, - STATE(2269), 1, + STATE(2476), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113217] = 3, - ACTIONS(4241), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3987), 2, - anon_sym_COMMA, - anon_sym_COLON, - [113229] = 4, - ACTIONS(4243), 1, + [113409] = 4, + ACTIONS(4270), 1, anon_sym_COMMA, - ACTIONS(4245), 1, + ACTIONS(4272), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113243] = 4, - ACTIONS(4247), 1, + [113423] = 4, + ACTIONS(4274), 1, anon_sym_COMMA, - ACTIONS(4249), 1, + ACTIONS(4276), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113257] = 4, - ACTIONS(1163), 1, - anon_sym_RPAREN, - ACTIONS(4251), 1, + [113437] = 4, + ACTIONS(3944), 1, + anon_sym_RBRACK, + ACTIONS(4278), 1, anon_sym_COMMA, - STATE(2269), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113271] = 4, - ACTIONS(4195), 1, - sym__newline, - ACTIONS(4197), 1, - sym__indent, - STATE(790), 1, - sym__match_block, + STATE(2348), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113285] = 4, - ACTIONS(4253), 1, - anon_sym_COMMA, - ACTIONS(4256), 1, + [113451] = 4, + ACTIONS(3704), 1, + anon_sym_DOT, + ACTIONS(3708), 1, + anon_sym_PIPE, + ACTIONS(4281), 1, anon_sym_COLON, - STATE(2344), 1, - aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113299] = 4, - ACTIONS(3468), 1, - anon_sym_RPAREN, - ACTIONS(4258), 1, - anon_sym_COMMA, - STATE(2345), 1, - aux_sym__collection_elements_repeat1, + [113465] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113313] = 4, - ACTIONS(1263), 1, - anon_sym_RPAREN, - ACTIONS(4261), 1, + ACTIONS(3956), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - STATE(2345), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113327] = 4, - ACTIONS(4205), 1, + [113475] = 4, + ACTIONS(2971), 1, anon_sym_COLON, - ACTIONS(4263), 1, + ACTIONS(4283), 1, anon_sym_COMMA, - STATE(2296), 1, + STATE(2328), 1, aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113341] = 4, - ACTIONS(4265), 1, + [113489] = 4, + ACTIONS(3484), 1, + anon_sym_RBRACE, + ACTIONS(4285), 1, anon_sym_COMMA, - ACTIONS(4268), 1, - anon_sym_RBRACK, - STATE(2348), 1, - aux_sym_subscript_repeat1, + STATE(2352), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113355] = 4, - ACTIONS(2712), 1, - sym_identifier, - ACTIONS(4270), 1, - anon_sym_import, - STATE(2627), 1, - sym_dotted_name, + [113503] = 4, + ACTIONS(623), 1, + sym__newline, + ACTIONS(4288), 1, + anon_sym_SEMI, + STATE(2440), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113369] = 3, - ACTIONS(4241), 1, - anon_sym_EQ, + [113517] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3987), 2, - anon_sym_COMMA, - anon_sym_COLON, - [113381] = 4, - ACTIONS(4272), 1, + ACTIONS(3687), 3, anon_sym_COMMA, - ACTIONS(4274), 1, + anon_sym_as, anon_sym_RBRACK, - STATE(2348), 1, - aux_sym_subscript_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113395] = 4, - ACTIONS(3008), 1, - anon_sym_RPAREN, - ACTIONS(3010), 1, - anon_sym_COMMA, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [113409] = 4, + [113527] = 4, ACTIONS(2674), 1, anon_sym_RPAREN, - ACTIONS(4276), 1, + ACTIONS(4290), 1, anon_sym_COMMA, - STATE(2313), 1, + STATE(2470), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113423] = 4, - ACTIONS(4278), 1, + [113541] = 4, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(4280), 1, - anon_sym_RBRACK, - STATE(2348), 1, - aux_sym_subscript_repeat1, + ACTIONS(3073), 1, + anon_sym_RPAREN, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113437] = 2, + [113555] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3610), 3, + ACTIONS(4292), 3, + sym__newline, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACE, - [113447] = 4, - ACTIONS(3407), 1, + [113565] = 4, + ACTIONS(1191), 1, + anon_sym_RPAREN, + ACTIONS(4294), 1, anon_sym_COMMA, - ACTIONS(3409), 1, - anon_sym_RBRACE, - STATE(2359), 1, - aux_sym_dictionary_repeat1, + STATE(2476), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113461] = 3, - ACTIONS(4284), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [113579] = 4, + ACTIONS(3370), 1, + anon_sym_COMMA, + ACTIONS(3372), 1, + anon_sym_RBRACE, + STATE(2361), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4282), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113473] = 4, - ACTIONS(3490), 1, - anon_sym_PIPE, - ACTIONS(4286), 1, - anon_sym_COLON, - STATE(1887), 1, - aux_sym_union_pattern_repeat1, + [113593] = 4, + ACTIONS(1205), 1, + anon_sym_RPAREN, + ACTIONS(4296), 1, + anon_sym_COMMA, + STATE(2476), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113487] = 4, - ACTIONS(1311), 1, + [113607] = 4, + ACTIONS(1295), 1, anon_sym_RBRACE, - ACTIONS(4288), 1, + ACTIONS(4298), 1, anon_sym_COMMA, - STATE(2293), 1, + STATE(2291), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113501] = 4, - ACTIONS(4290), 1, + [113621] = 4, + ACTIONS(3075), 1, + anon_sym_RPAREN, + ACTIONS(3077), 1, anon_sym_COMMA, - ACTIONS(4292), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_dict_pattern_repeat1, + STATE(2369), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113515] = 4, - ACTIONS(3085), 1, + [113635] = 4, + ACTIONS(4300), 1, anon_sym_RPAREN, - ACTIONS(3087), 1, + ACTIONS(4302), 1, anon_sym_COMMA, - STATE(2364), 1, + STATE(2370), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113529] = 4, - ACTIONS(2016), 1, - anon_sym_RPAREN, - ACTIONS(4294), 1, + [113649] = 4, + ACTIONS(4304), 1, anon_sym_COMMA, - STATE(2429), 1, - aux_sym__patterns_repeat1, + ACTIONS(4306), 1, + anon_sym_RBRACK, + STATE(2253), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113543] = 4, - ACTIONS(3260), 1, + [113663] = 4, + ACTIONS(4308), 1, anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(4310), 1, anon_sym_RBRACK, - STATE(2369), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113557] = 4, - ACTIONS(1203), 1, + [113677] = 4, + ACTIONS(3239), 1, + anon_sym_COMMA, + ACTIONS(3243), 1, + anon_sym_RBRACK, + STATE(2373), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113691] = 4, + ACTIONS(3725), 1, + anon_sym_COLON, + ACTIONS(4312), 1, + anon_sym_RBRACE, + STATE(2635), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113705] = 4, + ACTIONS(3845), 1, anon_sym_RPAREN, - ACTIONS(4296), 1, + ACTIONS(3986), 1, anon_sym_COMMA, - STATE(2269), 1, - aux_sym_argument_list_repeat1, + STATE(2462), 1, + aux_sym__import_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113571] = 4, - ACTIONS(2688), 1, + [113719] = 4, + ACTIONS(1207), 1, anon_sym_RPAREN, - ACTIONS(4298), 1, + ACTIONS(4314), 1, anon_sym_COMMA, - STATE(2313), 1, - aux_sym_case_clause_repeat1, + STATE(2476), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113585] = 4, - ACTIONS(1205), 1, + [113733] = 4, + ACTIONS(1209), 1, anon_sym_RPAREN, - ACTIONS(4300), 1, + ACTIONS(4316), 1, anon_sym_COMMA, - STATE(2269), 1, + STATE(2476), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113599] = 4, - ACTIONS(3711), 1, - anon_sym_COLON, - ACTIONS(4302), 1, - anon_sym_RBRACE, - STATE(2676), 1, - sym_format_specifier, + [113747] = 4, + ACTIONS(3224), 1, + anon_sym_RBRACK, + ACTIONS(4318), 1, + anon_sym_COMMA, + STATE(2371), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113613] = 4, - ACTIONS(4304), 1, - anon_sym_RPAREN, - ACTIONS(4306), 1, + [113761] = 4, + ACTIONS(4321), 1, anon_sym_COMMA, - STATE(2382), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4323), 1, + anon_sym_RBRACK, + STATE(2253), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113627] = 4, - ACTIONS(4308), 1, + [113775] = 4, + ACTIONS(4325), 1, anon_sym_COMMA, - ACTIONS(4310), 1, + ACTIONS(4327), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113641] = 4, - ACTIONS(2652), 1, + [113789] = 4, + ACTIONS(2704), 1, anon_sym_RBRACK, - ACTIONS(4312), 1, + ACTIONS(4329), 1, anon_sym_COMMA, - STATE(2414), 1, + STATE(2348), 1, aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113655] = 4, - ACTIONS(3964), 1, + [113803] = 4, + ACTIONS(2999), 1, + anon_sym_RBRACK, + ACTIONS(3118), 1, + anon_sym_COMMA, + STATE(2471), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113817] = 4, + ACTIONS(4252), 1, + anon_sym_RBRACK, + ACTIONS(4331), 1, + anon_sym_COMMA, + STATE(2475), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [113831] = 4, + ACTIONS(1149), 1, anon_sym_RPAREN, - ACTIONS(4314), 1, + ACTIONS(4333), 1, anon_sym_COMMA, - STATE(2460), 1, - aux_sym__import_list_repeat1, + STATE(2476), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113669] = 4, - ACTIONS(2975), 1, + [113845] = 4, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(2987), 1, - anon_sym_RBRACE, - STATE(2434), 1, + ACTIONS(4335), 1, + anon_sym_RPAREN, + STATE(2481), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113683] = 4, - ACTIONS(4316), 1, + [113859] = 4, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(4318), 1, - anon_sym_RBRACE, - STATE(2326), 1, - aux_sym_dict_pattern_repeat1, + ACTIONS(4337), 1, + anon_sym_in, + STATE(2264), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113697] = 4, - ACTIONS(4320), 1, - anon_sym_COMMA, - ACTIONS(4322), 1, + [113873] = 3, + ACTIONS(3677), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3679), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(2326), 1, - aux_sym_dict_pattern_repeat1, + [113885] = 4, + ACTIONS(3043), 1, + anon_sym_COMMA, + ACTIONS(4339), 1, + anon_sym_RPAREN, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113711] = 4, - ACTIONS(3964), 1, - anon_sym_RPAREN, - ACTIONS(4324), 1, + [113899] = 4, + ACTIONS(3224), 1, + anon_sym_COLON, + ACTIONS(4341), 1, anon_sym_COMMA, - STATE(2460), 1, - aux_sym__import_list_repeat1, + STATE(2382), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113725] = 4, + [113913] = 4, ACTIONS(1151), 1, anon_sym_RPAREN, - ACTIONS(4326), 1, + ACTIONS(4344), 1, anon_sym_COMMA, - STATE(2269), 1, + STATE(2476), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113739] = 2, + [113927] = 4, + ACTIONS(3043), 1, + anon_sym_COMMA, + ACTIONS(3087), 1, + anon_sym_RPAREN, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 3, + [113941] = 4, + ACTIONS(3360), 1, anon_sym_COMMA, - anon_sym_as, + ACTIONS(3362), 1, anon_sym_RBRACE, - [113749] = 4, - ACTIONS(3010), 1, - anon_sym_COMMA, - ACTIONS(3093), 1, - anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, + STATE(2242), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113763] = 4, - ACTIONS(3435), 1, + [113955] = 4, + ACTIONS(3382), 1, anon_sym_COMMA, - ACTIONS(3437), 1, + ACTIONS(3384), 1, anon_sym_RBRACE, - STATE(2381), 1, + STATE(2390), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113777] = 4, - ACTIONS(4086), 1, - anon_sym_RPAREN, - ACTIONS(4328), 1, + [113969] = 3, + ACTIONS(3683), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3685), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [113981] = 4, + ACTIONS(4346), 1, anon_sym_COMMA, - STATE(2380), 1, - aux_sym_with_clause_repeat1, + ACTIONS(4348), 1, + anon_sym_COLON, + STATE(2351), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113791] = 4, - ACTIONS(1335), 1, + [113995] = 4, + ACTIONS(2734), 1, + sym_identifier, + ACTIONS(4350), 1, + anon_sym_import, + STATE(2645), 1, + sym_dotted_name, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114009] = 4, + ACTIONS(1305), 1, anon_sym_RBRACE, - ACTIONS(4331), 1, + ACTIONS(4352), 1, anon_sym_COMMA, - STATE(2293), 1, + STATE(2291), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113805] = 4, - ACTIONS(1153), 1, - anon_sym_RPAREN, - ACTIONS(4333), 1, + [114023] = 4, + ACTIONS(4354), 1, anon_sym_COMMA, - STATE(2269), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4356), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113819] = 4, - ACTIONS(3095), 1, + [114037] = 4, + ACTIONS(3091), 1, anon_sym_RPAREN, - ACTIONS(3097), 1, + ACTIONS(3093), 1, anon_sym_COMMA, - STATE(2388), 1, + STATE(2398), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113833] = 4, - ACTIONS(4335), 1, + [114051] = 4, + ACTIONS(4358), 1, anon_sym_RPAREN, - ACTIONS(4337), 1, + ACTIONS(4360), 1, anon_sym_COMMA, - STATE(2390), 1, + STATE(2400), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113847] = 4, - ACTIONS(4339), 1, - anon_sym_COMMA, - ACTIONS(4341), 1, - anon_sym_RBRACK, - STATE(2348), 1, - aux_sym_subscript_repeat1, + [114065] = 3, + ACTIONS(3598), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3600), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [114077] = 4, + ACTIONS(3916), 1, + sym_identifier, + STATE(2467), 1, + sym_dotted_name, + STATE(2520), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113861] = 4, - ACTIONS(3268), 1, + [114091] = 4, + ACTIONS(3259), 1, anon_sym_COMMA, - ACTIONS(3270), 1, + ACTIONS(3261), 1, anon_sym_RBRACK, - STATE(2393), 1, + STATE(2403), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113875] = 4, - ACTIONS(4343), 1, - anon_sym_COMMA, - ACTIONS(4345), 1, - anon_sym_RBRACK, - STATE(2348), 1, - aux_sym_subscript_repeat1, + [114105] = 4, + ACTIONS(4130), 1, + sym__newline, + ACTIONS(4132), 1, + sym__indent, + STATE(751), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113889] = 4, - ACTIONS(1215), 1, + [114119] = 4, + ACTIONS(1219), 1, anon_sym_RPAREN, - ACTIONS(4347), 1, + ACTIONS(4362), 1, anon_sym_COMMA, - STATE(2269), 1, + STATE(2476), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113903] = 4, - ACTIONS(3711), 1, - anon_sym_COLON, - ACTIONS(4349), 1, - anon_sym_RBRACE, - STATE(2702), 1, - sym_format_specifier, - ACTIONS(3), 2, + [114133] = 3, + ACTIONS(3583), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - [113917] = 4, - ACTIONS(1217), 1, + ACTIONS(3585), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [114145] = 4, + ACTIONS(1221), 1, anon_sym_RPAREN, - ACTIONS(4351), 1, + ACTIONS(4364), 1, anon_sym_COMMA, - STATE(2269), 1, + STATE(2476), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113931] = 4, - ACTIONS(2624), 1, - anon_sym_RPAREN, - ACTIONS(4353), 1, + [114159] = 4, + ACTIONS(3043), 1, anon_sym_COMMA, - STATE(2313), 1, - aux_sym_case_clause_repeat1, + ACTIONS(3155), 1, + anon_sym_RPAREN, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113945] = 4, - ACTIONS(4355), 1, + [114173] = 4, + ACTIONS(4366), 1, anon_sym_COMMA, - ACTIONS(4357), 1, + ACTIONS(4368), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113959] = 4, - ACTIONS(4359), 1, + [114187] = 4, + ACTIONS(4370), 1, anon_sym_COMMA, - ACTIONS(4361), 1, + ACTIONS(4372), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [113973] = 3, - ACTIONS(3918), 1, - anon_sym_as, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3883), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [113985] = 2, - ACTIONS(3), 2, + [114201] = 3, + ACTIONS(3490), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(3993), 3, + ACTIONS(3492), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [114213] = 4, + ACTIONS(4070), 1, + anon_sym_COLON, + ACTIONS(4374), 1, anon_sym_COMMA, - anon_sym_as, - anon_sym_RBRACK, - [113995] = 4, - ACTIONS(3344), 1, - sym_identifier, - STATE(2221), 1, - sym_dotted_name, - STATE(2433), 1, - sym_aliased_import, + STATE(2405), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114009] = 4, - ACTIONS(1263), 1, - anon_sym_RBRACK, - ACTIONS(4363), 1, + [114227] = 4, + ACTIONS(1283), 1, + anon_sym_RBRACE, + ACTIONS(4377), 1, anon_sym_COMMA, - STATE(2471), 1, + STATE(2352), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114023] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(2878), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [114033] = 4, - ACTIONS(2016), 1, - anon_sym_RBRACK, - ACTIONS(4365), 1, + [114241] = 4, + ACTIONS(4379), 1, anon_sym_COMMA, - STATE(2463), 1, - aux_sym__patterns_repeat1, + ACTIONS(4381), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114047] = 4, - ACTIONS(4367), 1, + [114255] = 4, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(4383), 1, anon_sym_COMMA, - ACTIONS(4369), 1, - anon_sym_in, - STATE(2465), 1, - aux_sym__patterns_repeat1, + STATE(2474), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114061] = 4, - ACTIONS(3010), 1, + [114269] = 4, + ACTIONS(3043), 1, anon_sym_COMMA, - ACTIONS(3114), 1, + ACTIONS(3104), 1, anon_sym_RPAREN, - STATE(2346), 1, + STATE(2481), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114075] = 4, - ACTIONS(3681), 1, - anon_sym_DOT, - ACTIONS(3685), 1, - anon_sym_PIPE, - ACTIONS(4371), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114089] = 4, - ACTIONS(3354), 1, + [114283] = 4, + ACTIONS(3400), 1, anon_sym_COMMA, - ACTIONS(3356), 1, + ACTIONS(3402), 1, anon_sym_RBRACE, - STATE(2407), 1, + STATE(2411), 1, aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114103] = 4, - ACTIONS(3116), 1, - anon_sym_RPAREN, - ACTIONS(3118), 1, + [114297] = 4, + ACTIONS(1327), 1, + anon_sym_RBRACE, + ACTIONS(4385), 1, anon_sym_COMMA, - STATE(2336), 1, - aux_sym_argument_list_repeat1, + STATE(2291), 1, + aux_sym_dictionary_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114117] = 4, - ACTIONS(4373), 1, + [114311] = 4, + ACTIONS(3106), 1, anon_sym_RPAREN, - ACTIONS(4375), 1, + ACTIONS(3108), 1, anon_sym_COMMA, - STATE(2342), 1, - aux_sym_argument_list_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114131] = 4, - ACTIONS(4377), 1, - anon_sym_SEMI, - ACTIONS(4379), 1, - sym__newline, STATE(2418), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114145] = 4, - ACTIONS(1319), 1, - anon_sym_RBRACE, - ACTIONS(4381), 1, - anon_sym_COMMA, - STATE(2293), 1, - aux_sym_dictionary_repeat1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114159] = 4, - ACTIONS(3120), 1, + [114325] = 4, + ACTIONS(4387), 1, anon_sym_RPAREN, - ACTIONS(3122), 1, + ACTIONS(4389), 1, anon_sym_COMMA, - STATE(2412), 1, + STATE(2420), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114173] = 4, - ACTIONS(4383), 1, - anon_sym_RPAREN, - ACTIONS(4385), 1, + [114339] = 4, + ACTIONS(4391), 1, anon_sym_COMMA, - STATE(2413), 1, - aux_sym_argument_list_repeat1, + ACTIONS(4393), 1, + anon_sym_COLON, + STATE(2245), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114187] = 4, - ACTIONS(4367), 1, + [114353] = 4, + ACTIONS(1289), 1, + anon_sym_RPAREN, + ACTIONS(4395), 1, anon_sym_COMMA, - ACTIONS(4387), 1, - anon_sym_in, - STATE(2465), 1, - aux_sym__patterns_repeat1, + STATE(2483), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114201] = 4, - ACTIONS(3286), 1, + [114367] = 4, + ACTIONS(3277), 1, anon_sym_COMMA, - ACTIONS(3288), 1, + ACTIONS(3279), 1, anon_sym_RBRACK, - STATE(2416), 1, + STATE(2422), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114215] = 4, - ACTIONS(1227), 1, + [114381] = 4, + ACTIONS(4348), 1, anon_sym_RPAREN, - ACTIONS(4389), 1, + ACTIONS(4397), 1, anon_sym_COMMA, - STATE(2269), 1, - aux_sym_argument_list_repeat1, + STATE(2333), 1, + aux_sym__parameters_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114229] = 4, + [114395] = 4, ACTIONS(1229), 1, anon_sym_RPAREN, - ACTIONS(4391), 1, + ACTIONS(4399), 1, anon_sym_COMMA, - STATE(2269), 1, + STATE(2476), 1, aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114243] = 4, - ACTIONS(3883), 1, - anon_sym_RBRACK, - ACTIONS(4393), 1, - anon_sym_COMMA, - STATE(2414), 1, - aux_sym_case_clause_repeat1, + [114409] = 3, + ACTIONS(4016), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114257] = 4, - ACTIONS(4396), 1, + ACTIONS(4012), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4398), 1, - anon_sym_RBRACK, - STATE(2348), 1, - aux_sym_subscript_repeat1, + [114421] = 4, + ACTIONS(1231), 1, + anon_sym_RPAREN, + ACTIONS(4401), 1, + anon_sym_COMMA, + STATE(2476), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114271] = 4, - ACTIONS(4400), 1, + [114435] = 4, + ACTIONS(4403), 1, anon_sym_COMMA, - ACTIONS(4402), 1, + ACTIONS(4405), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114285] = 4, - ACTIONS(3298), 1, + [114449] = 4, + ACTIONS(4407), 1, anon_sym_COMMA, - ACTIONS(3300), 1, + ACTIONS(4409), 1, anon_sym_RBRACK, - STATE(2354), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114299] = 4, - ACTIONS(609), 1, - sym__newline, - ACTIONS(4404), 1, - anon_sym_SEMI, - STATE(2300), 1, - aux_sym__simple_statements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114313] = 2, + [114463] = 3, + ACTIONS(4411), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1653), 3, + ACTIONS(4012), 2, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_EQ, - [114323] = 4, - ACTIONS(4113), 1, - sym__newline, - ACTIONS(4115), 1, - sym__indent, - STATE(735), 1, - sym__match_block, + [114475] = 4, + ACTIONS(3865), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_COLON, + STATE(2595), 1, + sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114337] = 4, - ACTIONS(3290), 1, + [114489] = 4, + ACTIONS(3281), 1, anon_sym_COMMA, - ACTIONS(3292), 1, + ACTIONS(3283), 1, anon_sym_RBRACK, - STATE(2423), 1, + STATE(2427), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114351] = 4, - ACTIONS(4406), 1, + [114503] = 4, + ACTIONS(4415), 1, anon_sym_COMMA, - ACTIONS(4408), 1, + ACTIONS(4417), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114365] = 4, - ACTIONS(4410), 1, + [114517] = 4, + ACTIONS(4419), 1, anon_sym_COMMA, - ACTIONS(4412), 1, + ACTIONS(4421), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114379] = 4, - ACTIONS(4414), 1, - anon_sym_COMMA, - ACTIONS(4416), 1, - anon_sym_COLON, - STATE(2256), 1, - aux_sym_with_clause_repeat1, + [114531] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114393] = 4, - ACTIONS(2947), 1, + ACTIONS(3687), 3, + anon_sym_COMMA, + anon_sym_as, + anon_sym_RBRACE, + [114541] = 4, + ACTIONS(3484), 1, anon_sym_RPAREN, - ACTIONS(4418), 1, + ACTIONS(4423), 1, anon_sym_COMMA, - STATE(2257), 1, - aux_sym__parameters_repeat1, + STATE(2429), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114407] = 4, - ACTIONS(3294), 1, + [114555] = 4, + ACTIONS(4426), 1, anon_sym_COMMA, - ACTIONS(3296), 1, - anon_sym_RBRACK, - STATE(2428), 1, - aux_sym_subscript_repeat1, + ACTIONS(4429), 1, + anon_sym_COLON, + STATE(2430), 1, + aux_sym_match_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114421] = 4, - ACTIONS(4420), 1, + [114569] = 4, + ACTIONS(3287), 1, anon_sym_COMMA, - ACTIONS(4422), 1, + ACTIONS(3289), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2433), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114435] = 4, - ACTIONS(4424), 1, + [114583] = 4, + ACTIONS(4431), 1, anon_sym_COMMA, - ACTIONS(4426), 1, + ACTIONS(4433), 1, anon_sym_RBRACK, - STATE(2348), 1, + STATE(2253), 1, aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114449] = 4, - ACTIONS(2871), 1, - anon_sym_RPAREN, - ACTIONS(4428), 1, + [114597] = 4, + ACTIONS(4435), 1, anon_sym_COMMA, - STATE(2429), 1, - aux_sym__patterns_repeat1, + ACTIONS(4437), 1, + anon_sym_RBRACK, + STATE(2253), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114463] = 4, - ACTIONS(3711), 1, - anon_sym_COLON, - ACTIONS(4431), 1, - anon_sym_RBRACE, - STATE(2748), 1, - sym_format_specifier, + [114611] = 4, + ACTIONS(4095), 1, + anon_sym_COMMA, + ACTIONS(4439), 1, + anon_sym_in, + STATE(2264), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114477] = 4, - ACTIONS(4113), 1, - sym__newline, - ACTIONS(4115), 1, - sym__indent, - STATE(748), 1, - sym__match_block, + [114625] = 4, + ACTIONS(4441), 1, + anon_sym_COMMA, + ACTIONS(4443), 1, + anon_sym_RBRACK, + STATE(2253), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114491] = 4, - ACTIONS(4433), 1, + [114639] = 4, + ACTIONS(4445), 1, anon_sym_COMMA, - ACTIONS(4435), 1, - anon_sym_COLON, - STATE(2344), 1, - aux_sym_match_statement_repeat1, + ACTIONS(4447), 1, + anon_sym_RBRACK, + STATE(2253), 1, + aux_sym_subscript_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114505] = 2, - ACTIONS(3), 2, + [114653] = 3, + ACTIONS(4451), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, sym_comment, sym_line_continuation, - ACTIONS(4023), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [114515] = 4, - ACTIONS(1263), 1, + ACTIONS(4449), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4437), 1, - anon_sym_COMMA, - STATE(2334), 1, - aux_sym__collection_elements_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [114529] = 3, - ACTIONS(4441), 1, - anon_sym_in, + [114665] = 3, + ACTIONS(4453), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4439), 2, - sym__newline, - anon_sym_SEMI, - [114541] = 4, - ACTIONS(4367), 1, + ACTIONS(4012), 2, anon_sym_COMMA, - ACTIONS(4443), 1, - anon_sym_in, - STATE(2465), 1, - aux_sym__patterns_repeat1, + anon_sym_COLON, + [114677] = 4, + ACTIONS(4455), 1, + anon_sym_SEMI, + ACTIONS(4457), 1, + sym__newline, + STATE(2263), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114555] = 4, - ACTIONS(4367), 1, - anon_sym_COMMA, - ACTIONS(4445), 1, - anon_sym_in, - STATE(2465), 1, - aux_sym__patterns_repeat1, + [114691] = 4, + ACTIONS(4459), 1, + anon_sym_SEMI, + ACTIONS(4462), 1, + sym__newline, + STATE(2440), 1, + aux_sym__simple_statements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114569] = 4, - ACTIONS(3752), 1, + [114705] = 4, + ACTIONS(3865), 1, anon_sym_LPAREN, - ACTIONS(4447), 1, + ACTIONS(4464), 1, anon_sym_COLON, - STATE(2677), 1, + STATE(2686), 1, sym_argument_list, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114583] = 4, - ACTIONS(4367), 1, + [114719] = 4, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(4449), 1, + ACTIONS(4466), 1, anon_sym_in, - STATE(2465), 1, + STATE(2264), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114597] = 2, + [114733] = 4, + ACTIONS(4130), 1, + sym__newline, + ACTIONS(4132), 1, + sym__indent, + STATE(765), 1, + sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4451), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_COMMA, - [114607] = 4, - ACTIONS(4367), 1, + [114747] = 4, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(4453), 1, + ACTIONS(4468), 1, anon_sym_in, - STATE(2465), 1, + STATE(2264), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114621] = 4, - ACTIONS(2670), 1, - anon_sym_RPAREN, - ACTIONS(4455), 1, + [114761] = 4, + ACTIONS(4470), 1, anon_sym_COMMA, - STATE(2313), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4472), 1, + anon_sym_RBRACE, + STATE(2466), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114635] = 4, - ACTIONS(4195), 1, - sym__newline, - ACTIONS(4197), 1, - sym__indent, - STATE(788), 1, - sym__match_block, + [114775] = 4, + ACTIONS(3725), 1, + anon_sym_COLON, + ACTIONS(4474), 1, + anon_sym_RBRACE, + STATE(2711), 1, + sym_format_specifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114649] = 4, - ACTIONS(1287), 1, - anon_sym_RPAREN, - ACTIONS(4457), 1, - anon_sym_COMMA, - STATE(2468), 1, - aux_sym_assert_statement_repeat1, + [114789] = 4, + ACTIONS(3704), 1, + anon_sym_DOT, + ACTIONS(3708), 1, + anon_sym_PIPE, + ACTIONS(4476), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114663] = 4, - ACTIONS(3681), 1, + [114803] = 4, + ACTIONS(3704), 1, anon_sym_DOT, - ACTIONS(3685), 1, + ACTIONS(3708), 1, anon_sym_PIPE, - ACTIONS(4459), 1, + ACTIONS(4478), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114677] = 4, - ACTIONS(2672), 1, - anon_sym_RBRACK, - ACTIONS(4461), 1, + [114817] = 4, + ACTIONS(3390), 1, anon_sym_COMMA, - STATE(2414), 1, - aux_sym_case_clause_repeat1, + ACTIONS(4480), 1, + anon_sym_COLON, + STATE(2489), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114691] = 4, - ACTIONS(3681), 1, + [114831] = 4, + ACTIONS(3704), 1, anon_sym_DOT, - ACTIONS(3685), 1, + ACTIONS(3708), 1, anon_sym_PIPE, - ACTIONS(4463), 1, + ACTIONS(4482), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114705] = 4, - ACTIONS(3681), 1, + [114845] = 4, + ACTIONS(3704), 1, anon_sym_DOT, - ACTIONS(3685), 1, + ACTIONS(3708), 1, anon_sym_PIPE, - ACTIONS(4465), 1, + ACTIONS(4484), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114719] = 4, - ACTIONS(3681), 1, - anon_sym_DOT, - ACTIONS(3685), 1, - anon_sym_PIPE, - ACTIONS(4467), 1, + [114859] = 4, + ACTIONS(3390), 1, + anon_sym_COMMA, + ACTIONS(4486), 1, anon_sym_COLON, + STATE(2489), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114733] = 4, - ACTIONS(1287), 1, + [114873] = 4, + ACTIONS(3390), 1, + anon_sym_COMMA, + ACTIONS(4488), 1, anon_sym_COLON, - ACTIONS(4469), 1, + STATE(2489), 1, + aux_sym_except_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114887] = 4, + ACTIONS(3390), 1, anon_sym_COMMA, - STATE(2462), 1, - aux_sym_assert_statement_repeat1, + ACTIONS(4490), 1, + anon_sym_COLON, + STATE(2489), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114747] = 4, - ACTIONS(4471), 1, - anon_sym_SEMI, - ACTIONS(4473), 1, - sym__newline, - STATE(2464), 1, - aux_sym__simple_statements_repeat1, + [114901] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114761] = 4, - ACTIONS(4475), 1, + ACTIONS(3946), 3, anon_sym_COMMA, - ACTIONS(4477), 1, + anon_sym_as, anon_sym_RBRACE, - STATE(2326), 1, - aux_sym_dict_pattern_repeat1, + [114911] = 4, + ACTIONS(3043), 1, + anon_sym_COMMA, + ACTIONS(3083), 1, + anon_sym_RPAREN, + STATE(2481), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114775] = 4, - ACTIONS(4367), 1, + [114925] = 4, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(4479), 1, + ACTIONS(4492), 1, anon_sym_in, - STATE(2465), 1, + STATE(2264), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114789] = 4, - ACTIONS(4367), 1, + [114939] = 4, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(4481), 1, + ACTIONS(4494), 1, anon_sym_in, - STATE(2465), 1, + STATE(2264), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114803] = 3, - ACTIONS(3618), 1, - aux_sym_format_specifier_token1, - ACTIONS(5), 2, + [114953] = 4, + ACTIONS(2694), 1, + anon_sym_RPAREN, + ACTIONS(4496), 1, + anon_sym_COMMA, + STATE(2470), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114967] = 3, + ACTIONS(3904), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3944), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [114979] = 4, + ACTIONS(2696), 1, + anon_sym_RBRACK, + ACTIONS(4498), 1, + anon_sym_COMMA, + STATE(2348), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [114993] = 4, + ACTIONS(3952), 1, + anon_sym_RPAREN, + ACTIONS(4500), 1, + anon_sym_COMMA, + STATE(2258), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115007] = 4, + ACTIONS(3952), 1, + anon_sym_RPAREN, + ACTIONS(4502), 1, + anon_sym_COMMA, + STATE(2258), 1, + aux_sym__import_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115021] = 4, + ACTIONS(3536), 1, + anon_sym_PIPE, + ACTIONS(4504), 1, + anon_sym_COLON, + STATE(1956), 1, + aux_sym_union_pattern_repeat1, + ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3620), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [114815] = 4, - ACTIONS(3010), 1, + [115035] = 4, + ACTIONS(4506), 1, anon_sym_COMMA, - ACTIONS(3054), 1, - anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4508), 1, + anon_sym_RBRACE, + STATE(2391), 1, + aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114829] = 4, - ACTIONS(4483), 1, + [115049] = 4, + ACTIONS(4510), 1, anon_sym_COMMA, - ACTIONS(4485), 1, + ACTIONS(4512), 1, anon_sym_RBRACE, - STATE(2326), 1, + STATE(2270), 1, aux_sym_dict_pattern_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114843] = 3, - ACTIONS(3962), 1, + [115063] = 3, + ACTIONS(3988), 1, anon_sym_as, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4023), 2, + ACTIONS(3956), 2, anon_sym_RPAREN, anon_sym_COMMA, - [114855] = 4, - ACTIONS(4487), 1, - anon_sym_SEMI, - ACTIONS(4489), 1, - sym__newline, - STATE(2237), 1, - aux_sym__simple_statements_repeat1, + [115075] = 4, + ACTIONS(4514), 1, + anon_sym_COMMA, + ACTIONS(4516), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_dict_pattern_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [115089] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114869] = 4, - ACTIONS(4025), 1, + ACTIONS(3946), 3, anon_sym_RPAREN, - ACTIONS(4491), 1, anon_sym_COMMA, - STATE(2460), 1, - aux_sym__import_list_repeat1, + anon_sym_as, + [115099] = 4, + ACTIONS(3944), 1, + anon_sym_RPAREN, + ACTIONS(4518), 1, + anon_sym_COMMA, + STATE(2470), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114883] = 4, - ACTIONS(3358), 1, + [115113] = 4, + ACTIONS(1283), 1, + anon_sym_RBRACK, + ACTIONS(4521), 1, anon_sym_COMMA, - ACTIONS(3360), 1, - anon_sym_RBRACE, - STATE(2473), 1, - aux_sym_dictionary_repeat1, + STATE(2294), 1, + aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114897] = 4, - ACTIONS(3209), 1, - anon_sym_COLON, - ACTIONS(4494), 1, - anon_sym_COMMA, - STATE(2462), 1, - aux_sym_assert_statement_repeat1, + [115127] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114911] = 4, - ACTIONS(2871), 1, - anon_sym_RBRACK, - ACTIONS(4497), 1, + ACTIONS(2902), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2463), 1, - aux_sym__patterns_repeat1, + anon_sym_EQ, + [115137] = 4, + ACTIONS(2706), 1, + anon_sym_RPAREN, + ACTIONS(4523), 1, + anon_sym_COMMA, + STATE(2470), 1, + aux_sym_case_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114925] = 4, - ACTIONS(617), 1, - sym__newline, - ACTIONS(4500), 1, - anon_sym_SEMI, - STATE(2300), 1, - aux_sym__simple_statements_repeat1, + [115151] = 4, + ACTIONS(3754), 1, + anon_sym_RBRACK, + ACTIONS(4525), 1, + anon_sym_COMMA, + STATE(2474), 1, + aux_sym_type_parameter_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114939] = 4, - ACTIONS(971), 1, - anon_sym_in, - ACTIONS(4502), 1, + [115165] = 4, + ACTIONS(1890), 1, + anon_sym_RBRACK, + ACTIONS(4528), 1, anon_sym_COMMA, - STATE(2475), 1, + STATE(2477), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114953] = 4, - ACTIONS(3010), 1, - anon_sym_COMMA, - ACTIONS(4504), 1, + [115179] = 4, + ACTIONS(3643), 1, anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4530), 1, + anon_sym_COMMA, + STATE(2476), 1, + aux_sym_argument_list_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114967] = 4, - ACTIONS(3010), 1, + [115193] = 4, + ACTIONS(2893), 1, + anon_sym_RBRACK, + ACTIONS(4533), 1, anon_sym_COMMA, - ACTIONS(4506), 1, - anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, + STATE(2477), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114981] = 4, - ACTIONS(3209), 1, - anon_sym_RPAREN, - ACTIONS(4508), 1, - anon_sym_COMMA, - STATE(2468), 1, - aux_sym_assert_statement_repeat1, + [115207] = 3, + ACTIONS(3220), 1, + anon_sym_from, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [114995] = 4, - ACTIONS(4195), 1, + ACTIONS(3218), 2, sym__newline, - ACTIONS(4197), 1, + anon_sym_SEMI, + [115219] = 4, + ACTIONS(4185), 1, + sym__newline, + ACTIONS(4187), 1, sym__indent, - STATE(782), 1, + STATE(744), 1, sym__match_block, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115009] = 4, - ACTIONS(4511), 1, + [115233] = 4, + ACTIONS(4536), 1, + anon_sym_RPAREN, + ACTIONS(4538), 1, anon_sym_COMMA, - ACTIONS(4513), 1, - anon_sym_COLON, - STATE(2344), 1, - aux_sym_match_statement_repeat1, + STATE(2323), 1, + aux_sym_with_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115023] = 4, - ACTIONS(3468), 1, - anon_sym_RBRACK, - ACTIONS(4515), 1, + [115247] = 4, + ACTIONS(1283), 1, + anon_sym_RPAREN, + ACTIONS(4540), 1, anon_sym_COMMA, - STATE(2471), 1, + STATE(2429), 1, aux_sym__collection_elements_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115037] = 4, - ACTIONS(1009), 1, - anon_sym_RBRACK, - ACTIONS(4518), 1, - anon_sym_COMMA, - STATE(2298), 1, - aux_sym_type_parameter_repeat1, + [115261] = 3, + ACTIONS(4453), 1, + anon_sym_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115051] = 4, - ACTIONS(1295), 1, - anon_sym_RBRACE, - ACTIONS(4520), 1, + ACTIONS(4012), 2, anon_sym_COMMA, - STATE(2293), 1, - aux_sym_dictionary_repeat1, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115065] = 4, - ACTIONS(4522), 1, + anon_sym_COLON, + [115273] = 4, + ACTIONS(3224), 1, anon_sym_RPAREN, - ACTIONS(4524), 1, + ACTIONS(4542), 1, anon_sym_COMMA, - STATE(2255), 1, - aux_sym_with_clause_repeat1, + STATE(2483), 1, + aux_sym_assert_statement_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115079] = 4, - ACTIONS(2871), 1, - anon_sym_in, - ACTIONS(4526), 1, - anon_sym_COMMA, - STATE(2475), 1, - aux_sym__patterns_repeat1, + [115287] = 4, + ACTIONS(3408), 1, + sym_identifier, + STATE(2154), 1, + sym_dotted_name, + STATE(2350), 1, + sym_aliased_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115093] = 4, - ACTIONS(3010), 1, + [115301] = 4, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(3074), 1, - anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__collection_elements_repeat1, + ACTIONS(4545), 1, + anon_sym_in, + STATE(2264), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115107] = 4, - ACTIONS(4367), 1, + [115315] = 4, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(4529), 1, + ACTIONS(4547), 1, anon_sym_in, - STATE(2465), 1, + STATE(2264), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115121] = 4, - ACTIONS(4367), 1, + [115329] = 4, + ACTIONS(4095), 1, anon_sym_COMMA, - ACTIONS(4531), 1, + ACTIONS(4549), 1, anon_sym_in, - STATE(2465), 1, + STATE(2264), 1, aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115135] = 4, - ACTIONS(3079), 1, - anon_sym_RPAREN, - ACTIONS(3081), 1, - anon_sym_COMMA, - STATE(2376), 1, - aux_sym_argument_list_repeat1, + [115343] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115149] = 4, - ACTIONS(4533), 1, + ACTIONS(1632), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4535), 1, - anon_sym_RBRACK, - STATE(2348), 1, - aux_sym_subscript_repeat1, + anon_sym_EQ, + [115353] = 4, + ACTIONS(4551), 1, + anon_sym_COMMA, + ACTIONS(4554), 1, + anon_sym_COLON, + STATE(2489), 1, + aux_sym_except_clause_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115163] = 2, + [115367] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4537), 2, + ACTIONS(4556), 2, sym__newline, anon_sym_SEMI, - [115172] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4539), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115181] = 2, + [115376] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4086), 2, - anon_sym_RPAREN, + ACTIONS(3346), 2, anon_sym_COMMA, - [115190] = 2, + anon_sym_RBRACK, + [115385] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4541), 2, - anon_sym__, - sym_identifier, - [115199] = 2, + ACTIONS(1655), 2, + sym__dedent, + anon_sym_case, + [115394] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4543), 2, - sym__newline, - anon_sym_SEMI, - [115208] = 3, - ACTIONS(4545), 1, - sym_integer, - ACTIONS(4547), 1, - sym_float, + ACTIONS(1569), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115403] = 3, + ACTIONS(4001), 1, + anon_sym_LPAREN, + STATE(2515), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115219] = 2, + [115414] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, + ACTIONS(4558), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [115228] = 2, + anon_sym_RBRACE, + [115423] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1605), 2, - sym__dedent, - anon_sym_case, - [115237] = 3, - ACTIONS(4549), 1, + ACTIONS(4560), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115432] = 3, + ACTIONS(4562), 1, sym_integer, - ACTIONS(4551), 1, + ACTIONS(4564), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115248] = 2, + [115443] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3318), 2, + ACTIONS(4566), 2, sym__newline, anon_sym_SEMI, - [115257] = 2, + [115452] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4553), 2, - sym__dedent, - anon_sym_case, - [115266] = 2, + ACTIONS(4568), 2, + anon_sym__, + sym_identifier, + [115461] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4555), 2, - sym__dedent, - anon_sym_case, - [115275] = 2, + ACTIONS(3484), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [115470] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4557), 2, - sym__dedent, - anon_sym_case, - [115284] = 3, - ACTIONS(4559), 1, - anon_sym_COLON, - ACTIONS(4561), 1, - anon_sym_DASH_GT, + ACTIONS(4292), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115479] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115295] = 2, + ACTIONS(4570), 2, + anon_sym__, + sym_identifier, + [115488] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4563), 2, + ACTIONS(1657), 2, sym__dedent, anon_sym_case, - [115304] = 3, - ACTIONS(4565), 1, + [115497] = 3, + ACTIONS(4572), 1, sym_integer, - ACTIONS(4567), 1, + ACTIONS(4574), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115315] = 3, - ACTIONS(3885), 1, - anon_sym_LPAREN, - STATE(2540), 1, - sym_parameters, + [115508] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115326] = 2, + ACTIONS(4576), 2, + sym__newline, + anon_sym_SEMI, + [115517] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4578), 2, + sym__dedent, + anon_sym_case, + [115526] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4140), 2, + ACTIONS(4070), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [115335] = 2, + anon_sym_COLON, + [115535] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4569), 2, - sym__dedent, - anon_sym_case, - [115344] = 2, + ACTIONS(4212), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115544] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4571), 2, + ACTIONS(4580), 2, anon_sym__, sym_identifier, - [115353] = 2, + [115553] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4573), 2, - sym__dedent, - anon_sym_case, - [115362] = 3, - ACTIONS(4575), 1, + ACTIONS(2902), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115562] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4582), 2, + sym__newline, + anon_sym_SEMI, + [115571] = 3, + ACTIONS(4584), 1, sym_integer, - ACTIONS(4577), 1, + ACTIONS(4586), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115373] = 2, + [115582] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3987), 2, - anon_sym_COMMA, + ACTIONS(3137), 2, + sym__newline, + anon_sym_SEMI, + [115591] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4588), 2, anon_sym_COLON, - [115382] = 2, + anon_sym_DASH_GT, + [115600] = 3, + ACTIONS(4590), 1, + anon_sym_COLON, + ACTIONS(4592), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4579), 2, - sym__dedent, - anon_sym_case, - [115391] = 2, + [115611] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4581), 2, + ACTIONS(4594), 2, sym__newline, anon_sym_SEMI, - [115400] = 2, + [115620] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4086), 2, + ACTIONS(3643), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [115409] = 2, + [115629] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(4596), 2, + sym__newline, + anon_sym_SEMI, + [115638] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3468), 2, + ACTIONS(4598), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115418] = 3, - ACTIONS(4583), 1, + [115647] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3956), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115656] = 3, + ACTIONS(4600), 1, sym_integer, - ACTIONS(4585), 1, + ACTIONS(4602), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115429] = 2, + [115667] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4160), 2, - sym__newline, - anon_sym_SEMI, - [115438] = 3, - ACTIONS(4587), 1, + ACTIONS(4604), 2, + sym__dedent, + anon_sym_case, + [115676] = 3, + ACTIONS(4606), 1, sym_integer, - ACTIONS(4589), 1, + ACTIONS(4608), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115449] = 2, + [115687] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4591), 2, - anon_sym__, - sym_identifier, - [115458] = 2, + ACTIONS(3285), 2, + sym__newline, + anon_sym_SEMI, + [115696] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3626), 2, - anon_sym_RPAREN, + ACTIONS(4212), 2, anon_sym_COMMA, - [115467] = 3, - ACTIONS(4593), 1, - sym_integer, - ACTIONS(4595), 1, - sym_float, + anon_sym_COLON, + [115705] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115478] = 2, + ACTIONS(4012), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115714] = 3, + ACTIONS(4610), 1, + sym_integer, + ACTIONS(4612), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4074), 2, - anon_sym_COMMA, - anon_sym_COLON, - [115487] = 3, - ACTIONS(3885), 1, - anon_sym_LPAREN, - STATE(2543), 1, - sym_parameters, + [115725] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115498] = 2, + ACTIONS(3305), 2, + sym__newline, + anon_sym_SEMI, + [115734] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4597), 2, + ACTIONS(4614), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115507] = 3, - ACTIONS(4599), 1, - sym_integer, - ACTIONS(4601), 1, - sym_float, + [115743] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115518] = 2, + ACTIONS(3185), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115752] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3987), 2, + ACTIONS(4560), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_COLON, - [115527] = 2, + [115761] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1722), 2, - sym__dedent, - anon_sym_case, - [115536] = 2, + ACTIONS(3484), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115770] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4603), 2, - sym__dedent, - anon_sym_case, - [115545] = 3, - ACTIONS(4605), 1, - sym_integer, - ACTIONS(4607), 1, - sym_float, + ACTIONS(4614), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [115779] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115556] = 3, - ACTIONS(4609), 1, + ACTIONS(4616), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [115788] = 3, + ACTIONS(4618), 1, sym_integer, - ACTIONS(4611), 1, + ACTIONS(4620), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115567] = 2, + [115799] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3172), 2, - sym__newline, - anon_sym_SEMI, - [115576] = 2, + ACTIONS(4622), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [115808] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4613), 2, - sym__dedent, - anon_sym_case, - [115585] = 2, + ACTIONS(4624), 2, + anon_sym__, + sym_identifier, + [115817] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4539), 2, + ACTIONS(4012), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [115594] = 2, + anon_sym_COLON, + [115826] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4615), 2, + ACTIONS(2900), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [115603] = 2, + anon_sym_RBRACK, + [115835] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3172), 2, + ACTIONS(4560), 2, anon_sym_COMMA, anon_sym_RBRACK, - [115612] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4617), 2, - sym__dedent, - anon_sym_case, - [115621] = 2, + [115844] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3468), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [115630] = 2, + ACTIONS(4626), 2, + sym__newline, + anon_sym_SEMI, + [115853] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4619), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [115639] = 2, + ACTIONS(4628), 2, + sym__newline, + anon_sym_SEMI, + [115862] = 3, + ACTIONS(4630), 1, + sym_integer, + ACTIONS(4632), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115648] = 2, + [115873] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4621), 2, + ACTIONS(4634), 2, sym__dedent, anon_sym_case, - [115657] = 2, + [115882] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4623), 2, + ACTIONS(4636), 2, sym__dedent, anon_sym_case, - [115666] = 2, + [115891] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4625), 2, - sym__newline, - anon_sym_SEMI, - [115675] = 2, + ACTIONS(4638), 2, + sym__dedent, + anon_sym_case, + [115900] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3223), 2, + ACTIONS(3185), 2, sym__newline, anon_sym_SEMI, - [115684] = 2, + [115909] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4627), 2, + ACTIONS(4462), 2, sym__newline, anon_sym_SEMI, - [115693] = 2, + [115918] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1692), 2, + ACTIONS(1645), 2, sym__dedent, anon_sym_case, - [115702] = 2, + [115927] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4629), 2, + ACTIONS(4640), 2, sym__newline, anon_sym_SEMI, - [115711] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3429), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115720] = 3, - ACTIONS(4631), 1, - anon_sym_COLON, - ACTIONS(4633), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115731] = 2, + [115936] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4635), 2, - sym__newline, - anon_sym_SEMI, - [115740] = 2, + ACTIONS(4642), 2, + sym__dedent, + anon_sym_case, + [115945] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115749] = 3, - ACTIONS(4637), 1, + ACTIONS(4644), 2, + sym__dedent, + anon_sym_case, + [115954] = 3, + ACTIONS(4646), 1, anon_sym_COLON, - ACTIONS(4639), 1, + ACTIONS(4648), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115760] = 2, + [115965] = 3, + ACTIONS(4650), 1, + anon_sym_COLON, + ACTIONS(4652), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3987), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115769] = 2, + [115976] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2878), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115778] = 2, + ACTIONS(1665), 2, + sym__dedent, + anon_sym_case, + [115985] = 3, + ACTIONS(4654), 1, + anon_sym_COLON, + ACTIONS(4656), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1581), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [115787] = 2, + [115996] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4641), 2, + ACTIONS(4658), 2, sym__newline, anon_sym_SEMI, - [115796] = 3, - ACTIONS(4643), 1, - anon_sym_COLON, - ACTIONS(4645), 1, - anon_sym_DASH_GT, + [116005] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115807] = 2, + ACTIONS(1671), 2, + sym__dedent, + anon_sym_case, + [116014] = 3, + ACTIONS(4660), 1, + anon_sym_COLON, + ACTIONS(4662), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3172), 2, - anon_sym_RPAREN, + [116025] = 3, + ACTIONS(4664), 1, anon_sym_COMMA, - [115816] = 3, - ACTIONS(4647), 1, - anon_sym_COLON, - ACTIONS(4649), 1, - anon_sym_DASH_GT, + STATE(1928), 1, + aux_sym__patterns_repeat1, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115827] = 3, - ACTIONS(4651), 1, - anon_sym_COLON, - ACTIONS(4653), 1, - anon_sym_DASH_GT, + [116036] = 3, + ACTIONS(4666), 1, + sym_integer, + ACTIONS(4668), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115838] = 3, - ACTIONS(4655), 1, - anon_sym_COLON, - ACTIONS(4657), 1, - anon_sym_DASH_GT, + [116047] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115849] = 3, - ACTIONS(4659), 1, - anon_sym_COLON, - ACTIONS(4661), 1, - anon_sym_DASH_GT, + ACTIONS(4614), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [116056] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115860] = 2, + ACTIONS(4670), 2, + sym__newline, + anon_sym_SEMI, + [116065] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4074), 2, - anon_sym_RPAREN, + ACTIONS(1569), 2, anon_sym_COMMA, - [115869] = 2, + anon_sym_RBRACK, + [116074] = 3, + ACTIONS(4672), 1, + sym_integer, + ACTIONS(4674), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4663), 2, - sym__newline, - anon_sym_SEMI, - [115878] = 3, - ACTIONS(4665), 1, + [116085] = 3, + ACTIONS(4676), 1, sym_integer, - ACTIONS(4667), 1, + ACTIONS(4678), 1, sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [115889] = 2, + [116096] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4669), 2, + ACTIONS(4680), 2, sym__newline, anon_sym_SEMI, - [115898] = 2, + [116105] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2880), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [115907] = 2, + ACTIONS(4682), 2, + sym__newline, + anon_sym_SEMI, + [116114] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4671), 2, - sym__newline, - anon_sym_SEMI, - [115916] = 2, + ACTIONS(4070), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [116123] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1712), 2, + ACTIONS(4684), 2, sym__dedent, anon_sym_case, - [115925] = 2, + [116132] = 3, + ACTIONS(4686), 1, + anon_sym_COLON, + ACTIONS(4688), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4673), 2, - anon_sym_COLON, - anon_sym_DASH_GT, - [115934] = 2, + [116143] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(1625), 2, - sym__dedent, - anon_sym_case, - [115943] = 2, + ACTIONS(3185), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [116152] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4675), 2, - sym__newline, - anon_sym_SEMI, - [115952] = 2, + ACTIONS(4690), 2, + sym__dedent, + anon_sym_case, + [116161] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4023), 2, + ACTIONS(2893), 2, anon_sym_RPAREN, anon_sym_COMMA, - [115961] = 2, + [116170] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(2871), 2, + ACTIONS(2893), 2, anon_sym_COMMA, anon_sym_RBRACK, - [115970] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(3068), 2, - sym__newline, - anon_sym_SEMI, - [115979] = 3, - ACTIONS(4677), 1, - sym_integer, - ACTIONS(4679), 1, - sym_float, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [115990] = 2, + [116179] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4451), 2, - anon_sym_RPAREN, + ACTIONS(3484), 2, anon_sym_COMMA, - [115999] = 2, + anon_sym_RBRACK, + [116188] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4681), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116008] = 2, + ACTIONS(4692), 2, + sym__dedent, + anon_sym_case, + [116197] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4539), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116017] = 2, + ACTIONS(4694), 2, + sym__dedent, + anon_sym_case, + [116206] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4681), 2, + ACTIONS(4171), 2, anon_sym_COMMA, anon_sym_RBRACE, - [116026] = 2, + [116215] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4683), 2, + ACTIONS(4598), 2, anon_sym_COMMA, anon_sym_COLON, - [116035] = 2, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - ACTIONS(4685), 2, - sym__newline, - anon_sym_SEMI, - [116044] = 2, + [116224] = 3, + ACTIONS(4001), 1, + anon_sym_LPAREN, + STATE(2556), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(3468), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [116053] = 2, + [116235] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4687), 2, + ACTIONS(4696), 2, sym__dedent, anon_sym_case, - [116062] = 3, - ACTIONS(3885), 1, + [116244] = 3, + ACTIONS(4001), 1, anon_sym_LPAREN, - STATE(2551), 1, + STATE(2559), 1, sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116073] = 2, + [116255] = 3, + ACTIONS(4698), 1, + anon_sym_COLON, + ACTIONS(4700), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116266] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4681), 2, + ACTIONS(2900), 2, anon_sym_RPAREN, anon_sym_COMMA, - [116082] = 3, - ACTIONS(3885), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym_parameters, + [116275] = 3, + ACTIONS(4702), 1, + anon_sym_COLON, + ACTIONS(4704), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116286] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116093] = 3, - ACTIONS(4689), 1, + ACTIONS(4012), 2, anon_sym_COMMA, - STATE(1890), 1, - aux_sym__patterns_repeat1, + anon_sym_COLON, + [116295] = 2, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116104] = 2, + ACTIONS(4706), 2, + sym__dedent, + anon_sym_case, + [116304] = 3, + ACTIONS(4001), 1, + anon_sym_LPAREN, + STATE(2586), 1, + sym_parameters, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4691), 2, - anon_sym__, - sym_identifier, - [116113] = 2, + [116315] = 3, + ACTIONS(4708), 1, + sym_integer, + ACTIONS(4710), 1, + sym_float, ACTIONS(3), 2, sym_comment, sym_line_continuation, - ACTIONS(4683), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [116122] = 2, - ACTIONS(4693), 1, - anon_sym_RBRACE, + [116326] = 2, + ACTIONS(4712), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116130] = 2, - ACTIONS(4695), 1, - anon_sym_RPAREN, + [116334] = 2, + ACTIONS(4714), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116138] = 2, - ACTIONS(3116), 1, - anon_sym_RPAREN, + [116342] = 2, + ACTIONS(4716), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116146] = 2, - ACTIONS(4697), 1, + [116350] = 2, + ACTIONS(4718), 1, anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116154] = 2, - ACTIONS(4699), 1, - sym_identifier, + [116358] = 2, + ACTIONS(4720), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116162] = 2, - ACTIONS(4369), 1, - anon_sym_in, + [116366] = 2, + ACTIONS(4722), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116170] = 2, - ACTIONS(4701), 1, - sym_identifier, + [116374] = 2, + ACTIONS(4724), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116178] = 2, - ACTIONS(4703), 1, + [116382] = 2, + ACTIONS(4726), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116186] = 2, - ACTIONS(4705), 1, - anon_sym_RPAREN, + [116390] = 2, + ACTIONS(4728), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116194] = 2, - ACTIONS(4707), 1, - anon_sym_RBRACK, + [116398] = 2, + ACTIONS(4730), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116202] = 2, - ACTIONS(4709), 1, + [116406] = 2, + ACTIONS(4732), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116210] = 2, - ACTIONS(3356), 1, + [116414] = 2, + ACTIONS(3402), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116218] = 2, - ACTIONS(4711), 1, - anon_sym_COLON, + [116422] = 2, + ACTIONS(4734), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116226] = 2, - ACTIONS(3050), 1, - anon_sym_RPAREN, + [116430] = 2, + ACTIONS(4736), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116234] = 2, - ACTIONS(4713), 1, + [116438] = 2, + ACTIONS(4738), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116242] = 2, - ACTIONS(4715), 1, + [116446] = 2, + ACTIONS(4740), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116250] = 2, - ACTIONS(4717), 1, + [116454] = 2, + ACTIONS(4742), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116258] = 2, - ACTIONS(3034), 1, - anon_sym_RPAREN, + [116462] = 2, + ACTIONS(3425), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116266] = 2, - ACTIONS(4719), 1, + [116470] = 2, + ACTIONS(4744), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116274] = 2, - ACTIONS(4721), 1, + [116478] = 2, + ACTIONS(4746), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116282] = 2, - ACTIONS(4723), 1, + [116486] = 2, + ACTIONS(3075), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116290] = 2, - ACTIONS(4725), 1, + [116494] = 2, + ACTIONS(4748), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116298] = 2, - ACTIONS(4727), 1, + [116502] = 2, + ACTIONS(4750), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116306] = 2, - ACTIONS(4729), 1, + [116510] = 2, + ACTIONS(4752), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116314] = 2, - ACTIONS(4731), 1, - anon_sym_COLON, + [116518] = 2, + ACTIONS(4754), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116322] = 2, - ACTIONS(3120), 1, + [116526] = 2, + ACTIONS(3106), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116330] = 2, - ACTIONS(4733), 1, - sym_identifier, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116338] = 2, - ACTIONS(3419), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116346] = 2, - ACTIONS(4735), 1, - anon_sym_COLON, + [116534] = 2, + ACTIONS(4756), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116354] = 2, - ACTIONS(4737), 1, + [116542] = 2, + ACTIONS(3463), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116362] = 2, - ACTIONS(4739), 1, + [116550] = 2, + ACTIONS(3482), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116370] = 2, - ACTIONS(4387), 1, - anon_sym_in, + [116558] = 2, + ACTIONS(4758), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116378] = 2, - ACTIONS(4741), 1, - anon_sym_RBRACK, + [116566] = 2, + ACTIONS(4760), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116386] = 2, - ACTIONS(4743), 1, - anon_sym_RPAREN, + [116574] = 2, + ACTIONS(4762), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116394] = 2, - ACTIONS(4745), 1, - anon_sym_COLON_EQ, + [116582] = 2, + ACTIONS(1447), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116402] = 2, - ACTIONS(4747), 1, + [116590] = 2, + ACTIONS(4764), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116410] = 2, - ACTIONS(4749), 1, + [116598] = 2, + ACTIONS(4766), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116418] = 2, - ACTIONS(4751), 1, - anon_sym_import, + [116606] = 2, + ACTIONS(4768), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116426] = 2, - ACTIONS(4753), 1, - sym_identifier, + [116614] = 2, + ACTIONS(4770), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116434] = 2, - ACTIONS(3409), 1, - anon_sym_RBRACE, + [116622] = 2, + ACTIONS(4772), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116442] = 2, - ACTIONS(4755), 1, - anon_sym_RPAREN, + [116630] = 2, + ACTIONS(4774), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116450] = 2, - ACTIONS(4757), 1, - anon_sym_COLON, + [116638] = 2, + ACTIONS(4776), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116458] = 2, - ACTIONS(4759), 1, + [116646] = 2, + ACTIONS(4778), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116466] = 2, - ACTIONS(4761), 1, - anon_sym_import, + [116654] = 2, + ACTIONS(4780), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116474] = 2, - ACTIONS(4763), 1, + [116662] = 2, + ACTIONS(4782), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116482] = 2, - ACTIONS(4765), 1, - anon_sym_import, + [116670] = 2, + ACTIONS(4784), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116490] = 2, - ACTIONS(4767), 1, + [116678] = 2, + ACTIONS(4786), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116498] = 2, - ACTIONS(4769), 1, + [116686] = 2, + ACTIONS(4788), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116694] = 2, + ACTIONS(4790), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [116702] = 2, + ACTIONS(4792), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116506] = 2, - ACTIONS(4771), 1, + [116710] = 2, + ACTIONS(4794), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116514] = 2, - ACTIONS(3335), 1, - anon_sym_COLON, + [116718] = 2, + ACTIONS(4796), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116522] = 2, - ACTIONS(4773), 1, + [116726] = 2, + ACTIONS(4798), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116530] = 2, - ACTIONS(4775), 1, + [116734] = 2, + ACTIONS(4800), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116538] = 2, - ACTIONS(1495), 1, - anon_sym_def, + [116742] = 2, + ACTIONS(4802), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116546] = 2, - ACTIONS(4777), 1, + [116750] = 2, + ACTIONS(4804), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116554] = 2, - ACTIONS(4779), 1, - sym_identifier, + [116758] = 2, + ACTIONS(4806), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116562] = 2, - ACTIONS(4781), 1, - anon_sym_COLON, + [116766] = 2, + ACTIONS(3145), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116570] = 2, - ACTIONS(4783), 1, - anon_sym_COLON_EQ, + [116774] = 2, + ACTIONS(4808), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116578] = 2, - ACTIONS(4785), 1, - anon_sym_COLON, + [116782] = 2, + ACTIONS(4810), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116586] = 2, - ACTIONS(4787), 1, + [116790] = 2, + ACTIONS(4812), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116594] = 2, - ACTIONS(4789), 1, - anon_sym_RPAREN, + [116798] = 2, + ACTIONS(4814), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116602] = 2, - ACTIONS(4791), 1, - sym_identifier, + [116806] = 2, + ACTIONS(4816), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116610] = 2, - ACTIONS(4793), 1, - sym_identifier, + [116814] = 2, + ACTIONS(4818), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116618] = 2, - ACTIONS(4795), 1, - anon_sym_RBRACE, + [116822] = 2, + ACTIONS(4820), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116626] = 2, - ACTIONS(4797), 1, - anon_sym_COLON_EQ, + [116830] = 2, + ACTIONS(4822), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116634] = 2, - ACTIONS(4799), 1, + [116838] = 2, + ACTIONS(4824), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116642] = 2, - ACTIONS(4801), 1, - anon_sym_RPAREN, + [116846] = 2, + ACTIONS(4439), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116650] = 2, - ACTIONS(4803), 1, - anon_sym_RBRACK, + [116854] = 2, + ACTIONS(3126), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116658] = 2, - ACTIONS(4805), 1, + [116862] = 2, + ACTIONS(4826), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116666] = 2, - ACTIONS(4807), 1, - anon_sym_COLON_EQ, + [116870] = 2, + ACTIONS(4828), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116674] = 2, - ACTIONS(4809), 1, + [116878] = 2, + ACTIONS(3350), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116682] = 2, - ACTIONS(4811), 1, - anon_sym_COLON, + [116886] = 2, + ACTIONS(4830), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116690] = 2, - ACTIONS(4813), 1, - anon_sym_RPAREN, + [116894] = 2, + ACTIONS(4832), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116698] = 2, - ACTIONS(4815), 1, + [116902] = 2, + ACTIONS(4834), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116706] = 2, - ACTIONS(4817), 1, - anon_sym_RPAREN, + [116910] = 2, + ACTIONS(4836), 1, + anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116714] = 2, - ACTIONS(4819), 1, - anon_sym_COLON, + [116918] = 2, + ACTIONS(4838), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116722] = 2, - ACTIONS(4821), 1, - anon_sym_RBRACK, + [116926] = 2, + ACTIONS(4840), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116730] = 2, - ACTIONS(4823), 1, - sym_identifier, + [116934] = 2, + ACTIONS(4842), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116738] = 2, - ACTIONS(4825), 1, + [116942] = 2, + ACTIONS(4844), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116746] = 2, - ACTIONS(3437), 1, - anon_sym_RBRACE, + [116950] = 2, + ACTIONS(4846), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116754] = 2, - ACTIONS(4827), 1, + [116958] = 2, + ACTIONS(4848), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116762] = 2, - ACTIONS(3405), 1, - anon_sym_COLON, + [116966] = 2, + ACTIONS(4850), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116770] = 2, - ACTIONS(4829), 1, + [116974] = 2, + ACTIONS(4852), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116778] = 2, - ACTIONS(4831), 1, - anon_sym_RBRACK, + [116982] = 2, + ACTIONS(4854), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116786] = 2, - ACTIONS(4833), 1, + [116990] = 2, + ACTIONS(3384), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116794] = 2, - ACTIONS(4835), 1, - anon_sym_RBRACK, + [116998] = 2, + ACTIONS(3380), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116802] = 2, - ACTIONS(4837), 1, + [117006] = 2, + ACTIONS(4856), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116810] = 2, - ACTIONS(4839), 1, - anon_sym_COLON, + [117014] = 2, + ACTIONS(4858), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116818] = 2, - ACTIONS(4449), 1, + [117022] = 2, + ACTIONS(4466), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116826] = 2, - ACTIONS(4841), 1, + [117030] = 2, + ACTIONS(4860), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116834] = 2, - ACTIONS(3390), 1, + [117038] = 2, + ACTIONS(3427), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116842] = 2, - ACTIONS(3433), 1, - anon_sym_RBRACE, + [117046] = 2, + ACTIONS(4862), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116850] = 2, - ACTIONS(4843), 1, + [117054] = 2, + ACTIONS(4864), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116858] = 2, - ACTIONS(4443), 1, + [117062] = 2, + ACTIONS(4545), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116866] = 2, - ACTIONS(4845), 1, + [117070] = 2, + ACTIONS(4866), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116874] = 2, - ACTIONS(4847), 1, + [117078] = 2, + ACTIONS(4868), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116882] = 2, - ACTIONS(4849), 1, + [117086] = 2, + ACTIONS(4870), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116890] = 2, - ACTIONS(4851), 1, - anon_sym_RBRACK, + [117094] = 2, + ACTIONS(4872), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116898] = 2, - ACTIONS(4453), 1, + [117102] = 2, + ACTIONS(4468), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116906] = 2, - ACTIONS(3392), 1, + [117110] = 2, + ACTIONS(3429), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116914] = 2, - ACTIONS(4853), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116922] = 2, - ACTIONS(4855), 1, - anon_sym_RBRACK, + [117118] = 2, + ACTIONS(4874), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116930] = 2, - ACTIONS(4857), 1, + [117126] = 2, + ACTIONS(4876), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116938] = 2, - ACTIONS(4859), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym_comment, - sym_line_continuation, - [116946] = 2, - ACTIONS(4861), 1, - anon_sym_RBRACK, + [117134] = 2, + ACTIONS(4878), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116954] = 2, - ACTIONS(4863), 1, - anon_sym_RBRACK, + [117142] = 2, + ACTIONS(3362), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116962] = 2, - ACTIONS(3342), 1, - anon_sym_RBRACE, + [117150] = 2, + ACTIONS(4880), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116970] = 2, - ACTIONS(4865), 1, - sym_identifier, + [117158] = 2, + ACTIONS(4882), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116978] = 2, - ACTIONS(4867), 1, + [117166] = 2, + ACTIONS(4884), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116986] = 2, - ACTIONS(4869), 1, - anon_sym_COLON, + [117174] = 2, + ACTIONS(4886), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [116994] = 2, - ACTIONS(4871), 1, - sym_identifier, + [117182] = 2, + ACTIONS(3112), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117002] = 2, - ACTIONS(4873), 1, - anon_sym_RBRACE, + [117190] = 2, + ACTIONS(4888), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117010] = 2, - ACTIONS(4875), 1, - anon_sym_RPAREN, + [117198] = 2, + ACTIONS(4890), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117018] = 2, - ACTIONS(4877), 1, + [117206] = 2, + ACTIONS(4892), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117026] = 2, - ACTIONS(4445), 1, - anon_sym_in, + [117214] = 2, + ACTIONS(4894), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117034] = 2, - ACTIONS(4879), 1, - anon_sym_RBRACE, + [117222] = 2, + ACTIONS(4896), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117042] = 2, - ACTIONS(4881), 1, - anon_sym_RBRACK, + [117230] = 2, + ACTIONS(4898), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117050] = 2, - ACTIONS(4883), 1, - anon_sym_COLON_EQ, + [117238] = 2, + ACTIONS(4900), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117058] = 2, - ACTIONS(3413), 1, + [117246] = 2, + ACTIONS(4902), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117066] = 2, - ACTIONS(4885), 1, - anon_sym_RBRACK, + [117254] = 2, + ACTIONS(3366), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117074] = 2, - ACTIONS(3095), 1, + [117262] = 2, + ACTIONS(4904), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117082] = 2, - ACTIONS(4887), 1, - anon_sym_RBRACE, + [117270] = 2, + ACTIONS(4906), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117090] = 2, - ACTIONS(4479), 1, - anon_sym_in, + [117278] = 2, + ACTIONS(4908), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117098] = 2, - ACTIONS(4889), 1, + [117286] = 2, + ACTIONS(4910), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117106] = 2, - ACTIONS(4481), 1, - anon_sym_in, + [117294] = 2, + ACTIONS(4912), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117114] = 2, - ACTIONS(4891), 1, + [117302] = 2, + ACTIONS(4914), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117122] = 2, - ACTIONS(4893), 1, - anon_sym_COLON, + [117310] = 2, + ACTIONS(4492), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117130] = 2, - ACTIONS(4895), 1, - anon_sym_RBRACE, + [117318] = 2, + ACTIONS(4916), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117138] = 2, - ACTIONS(4897), 1, - anon_sym_RPAREN, + [117326] = 2, + ACTIONS(4494), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117146] = 2, - ACTIONS(4899), 1, - anon_sym_RBRACE, + [117334] = 2, + ACTIONS(4918), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117154] = 2, - ACTIONS(1469), 1, + [117342] = 2, + ACTIONS(4920), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117162] = 2, - ACTIONS(4901), 1, - anon_sym_RPAREN, + [117350] = 2, + ACTIONS(4922), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117170] = 2, - ACTIONS(4903), 1, + [117358] = 2, + ACTIONS(4924), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117178] = 2, - ACTIONS(4905), 1, + [117366] = 2, + ACTIONS(4926), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117186] = 2, - ACTIONS(3064), 1, - anon_sym_RPAREN, + [117374] = 2, + ACTIONS(4928), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117194] = 2, - ACTIONS(4907), 1, - anon_sym_COLON_EQ, + [117382] = 2, + ACTIONS(4930), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117202] = 2, - ACTIONS(4909), 1, - sym_identifier, + [117390] = 2, + ACTIONS(4932), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117210] = 2, - ACTIONS(4911), 1, - anon_sym_RBRACK, + [117398] = 2, + ACTIONS(4934), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117218] = 2, - ACTIONS(4913), 1, - anon_sym_RBRACK, + [117406] = 2, + ACTIONS(4936), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117226] = 2, - ACTIONS(4915), 1, - sym_identifier, + [117414] = 2, + ACTIONS(4938), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117234] = 2, - ACTIONS(3360), 1, + [117422] = 2, + ACTIONS(4940), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117242] = 2, - ACTIONS(4917), 1, - anon_sym_COLON, + [117430] = 2, + ACTIONS(4942), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117250] = 2, - ACTIONS(4919), 1, + [117438] = 2, + ACTIONS(4944), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117258] = 2, - ACTIONS(4921), 1, - anon_sym_RBRACE, + [117446] = 2, + ACTIONS(4946), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117266] = 2, - ACTIONS(4923), 1, - anon_sym_RBRACE, + [117454] = 2, + ACTIONS(3057), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117274] = 2, - ACTIONS(4925), 1, - anon_sym_RPAREN, + [117462] = 2, + ACTIONS(4948), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117282] = 2, - ACTIONS(4927), 1, - sym_identifier, + [117470] = 2, + ACTIONS(3091), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117290] = 2, - ACTIONS(4929), 1, + [117478] = 2, + ACTIONS(4950), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117298] = 2, - ACTIONS(4931), 1, - anon_sym_COLON_EQ, + [117486] = 2, + ACTIONS(4952), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117306] = 2, - ACTIONS(4933), 1, - anon_sym_RBRACE, + [117494] = 2, + ACTIONS(4954), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117314] = 2, - ACTIONS(4935), 1, + [117502] = 2, + ACTIONS(4956), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117322] = 2, - ACTIONS(4937), 1, - sym_identifier, + [117510] = 2, + ACTIONS(4958), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117330] = 2, - ACTIONS(3085), 1, - anon_sym_RPAREN, + [117518] = 2, + ACTIONS(4960), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117338] = 2, - ACTIONS(4939), 1, - anon_sym_RBRACE, + [117526] = 2, + ACTIONS(1463), 1, + anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117346] = 2, - ACTIONS(4941), 1, - sym_identifier, + [117534] = 2, + ACTIONS(4337), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117354] = 2, - ACTIONS(4943), 1, - sym_identifier, + [117542] = 2, + ACTIONS(4962), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117362] = 2, - ACTIONS(4945), 1, + [117550] = 2, + ACTIONS(4964), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117370] = 2, - ACTIONS(4947), 1, - sym_identifier, + [117558] = 2, + ACTIONS(4966), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117378] = 2, - ACTIONS(4949), 1, - anon_sym_RPAREN, + [117566] = 2, + ACTIONS(4968), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117386] = 2, - ACTIONS(4951), 1, - anon_sym_RBRACE, + [117574] = 2, + ACTIONS(4970), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117394] = 2, - ACTIONS(4953), 1, - sym_identifier, + [117582] = 2, + ACTIONS(3372), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117402] = 2, - ACTIONS(4955), 1, + [117590] = 2, + ACTIONS(4972), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117410] = 2, - ACTIONS(4957), 1, + [117598] = 2, + ACTIONS(4974), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117418] = 2, - ACTIONS(4959), 1, - anon_sym_RBRACE, + [117606] = 2, + ACTIONS(4976), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117426] = 2, - ACTIONS(4961), 1, - anon_sym_COLON, + [117614] = 2, + ACTIONS(4978), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117434] = 2, - ACTIONS(4963), 1, + [117622] = 2, + ACTIONS(4980), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117442] = 2, - ACTIONS(4965), 1, - anon_sym_in, + [117630] = 2, + ACTIONS(4982), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117450] = 2, - ACTIONS(4967), 1, + [117638] = 2, + ACTIONS(4984), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117458] = 2, - ACTIONS(4969), 1, - anon_sym_for, + [117646] = 2, + ACTIONS(4986), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117466] = 2, - ACTIONS(4971), 1, - sym_identifier, + [117654] = 2, + ACTIONS(4988), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117474] = 2, - ACTIONS(4973), 1, - anon_sym_COLON, + [117662] = 2, + ACTIONS(3122), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117482] = 2, - ACTIONS(4975), 1, - anon_sym_RPAREN, + [117670] = 2, + ACTIONS(4097), 1, + anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117490] = 2, - ACTIONS(4977), 1, - anon_sym_RBRACK, + [117678] = 2, + ACTIONS(4990), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117498] = 2, - ACTIONS(4979), 1, - sym_identifier, + [117686] = 2, + ACTIONS(4992), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117506] = 2, - ACTIONS(4981), 1, - ts_builtin_sym_end, + [117694] = 2, + ACTIONS(4994), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117514] = 2, - ACTIONS(4983), 1, - anon_sym_RPAREN, + [117702] = 2, + ACTIONS(4996), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117522] = 2, - ACTIONS(4985), 1, + [117710] = 2, + ACTIONS(4998), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117530] = 2, - ACTIONS(4987), 1, - anon_sym_RBRACE, + [117718] = 2, + ACTIONS(5000), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117538] = 2, - ACTIONS(4989), 1, - anon_sym_RPAREN, + [117726] = 2, + ACTIONS(5002), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117546] = 2, - ACTIONS(4991), 1, - anon_sym_COLON, + [117734] = 2, + ACTIONS(5004), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117554] = 2, - ACTIONS(4993), 1, - sym_identifier, + [117742] = 2, + ACTIONS(5006), 1, + anon_sym_import, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117562] = 2, - ACTIONS(4995), 1, + [117750] = 2, + ACTIONS(5008), 1, anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117570] = 2, - ACTIONS(3079), 1, + [117758] = 2, + ACTIONS(5010), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117578] = 2, - ACTIONS(4997), 1, - anon_sym_COLON, + [117766] = 2, + ACTIONS(5012), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117774] = 2, + ACTIONS(5014), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117586] = 2, - ACTIONS(4999), 1, + [117782] = 2, + ACTIONS(5016), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117594] = 2, - ACTIONS(5001), 1, + [117790] = 2, + ACTIONS(5018), 1, sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117602] = 2, - ACTIONS(5003), 1, - anon_sym_COLON, + [117798] = 2, + ACTIONS(5020), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117610] = 2, - ACTIONS(4529), 1, + [117806] = 2, + ACTIONS(5022), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [117814] = 2, + ACTIONS(4547), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117618] = 2, - ACTIONS(1503), 1, + [117822] = 2, + ACTIONS(1457), 1, anon_sym_def, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117626] = 2, - ACTIONS(5005), 1, + [117830] = 2, + ACTIONS(5024), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117634] = 2, - ACTIONS(5007), 1, - sym_identifier, + [117838] = 2, + ACTIONS(5026), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117642] = 2, - ACTIONS(4531), 1, + [117846] = 2, + ACTIONS(4549), 1, anon_sym_in, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117650] = 2, - ACTIONS(5009), 1, + [117854] = 2, + ACTIONS(5028), 1, anon_sym_for, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117658] = 2, - ACTIONS(5011), 1, - anon_sym_RBRACK, + [117862] = 2, + ACTIONS(5030), 1, + anon_sym_COLON, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117666] = 2, - ACTIONS(5013), 1, - anon_sym_RBRACK, + [117870] = 2, + ACTIONS(5032), 1, + anon_sym_COLON_EQ, ACTIONS(3), 2, sym_comment, sym_line_continuation, - [117674] = 2, - ACTIONS(5015), 1, - anon_sym_COLON, + [117878] = 2, + ACTIONS(5034), 1, + sym_identifier, ACTIONS(3), 2, sym_comment, sym_line_continuation, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(181)] = 0, - [SMALL_STATE(182)] = 120, - [SMALL_STATE(183)] = 244, - [SMALL_STATE(184)] = 368, - [SMALL_STATE(185)] = 488, - [SMALL_STATE(186)] = 614, - [SMALL_STATE(187)] = 742, - [SMALL_STATE(188)] = 868, - [SMALL_STATE(189)] = 992, - [SMALL_STATE(190)] = 1116, - [SMALL_STATE(191)] = 1242, - [SMALL_STATE(192)] = 1366, - [SMALL_STATE(193)] = 1492, - [SMALL_STATE(194)] = 1616, - [SMALL_STATE(195)] = 1740, - [SMALL_STATE(196)] = 1864, - [SMALL_STATE(197)] = 1990, - [SMALL_STATE(198)] = 2114, - [SMALL_STATE(199)] = 2238, - [SMALL_STATE(200)] = 2358, - [SMALL_STATE(201)] = 2482, - [SMALL_STATE(202)] = 2608, - [SMALL_STATE(203)] = 2732, - [SMALL_STATE(204)] = 2856, - [SMALL_STATE(205)] = 2982, - [SMALL_STATE(206)] = 3106, - [SMALL_STATE(207)] = 3230, - [SMALL_STATE(208)] = 3356, - [SMALL_STATE(209)] = 3480, - [SMALL_STATE(210)] = 3604, - [SMALL_STATE(211)] = 3730, - [SMALL_STATE(212)] = 3854, - [SMALL_STATE(213)] = 3978, - [SMALL_STATE(214)] = 4106, - [SMALL_STATE(215)] = 4213, - [SMALL_STATE(216)] = 4320, - [SMALL_STATE(217)] = 4436, - [SMALL_STATE(218)] = 4552, - [SMALL_STATE(219)] = 4668, - [SMALL_STATE(220)] = 4784, - [SMALL_STATE(221)] = 4900, - [SMALL_STATE(222)] = 5016, - [SMALL_STATE(223)] = 5132, - [SMALL_STATE(224)] = 5248, - [SMALL_STATE(225)] = 5364, - [SMALL_STATE(226)] = 5480, - [SMALL_STATE(227)] = 5593, - [SMALL_STATE(228)] = 5706, - [SMALL_STATE(229)] = 5819, - [SMALL_STATE(230)] = 5932, - [SMALL_STATE(231)] = 6045, - [SMALL_STATE(232)] = 6160, - [SMALL_STATE(233)] = 6273, - [SMALL_STATE(234)] = 6390, - [SMALL_STATE(235)] = 6495, - [SMALL_STATE(236)] = 6610, - [SMALL_STATE(237)] = 6715, - [SMALL_STATE(238)] = 6828, - [SMALL_STATE(239)] = 6941, - [SMALL_STATE(240)] = 7056, - [SMALL_STATE(241)] = 7169, - [SMALL_STATE(242)] = 7282, - [SMALL_STATE(243)] = 7395, - [SMALL_STATE(244)] = 7508, - [SMALL_STATE(245)] = 7621, - [SMALL_STATE(246)] = 7734, - [SMALL_STATE(247)] = 7849, - [SMALL_STATE(248)] = 7964, - [SMALL_STATE(249)] = 8077, - [SMALL_STATE(250)] = 8192, - [SMALL_STATE(251)] = 8305, - [SMALL_STATE(252)] = 8418, - [SMALL_STATE(253)] = 8533, - [SMALL_STATE(254)] = 8646, - [SMALL_STATE(255)] = 8761, - [SMALL_STATE(256)] = 8876, - [SMALL_STATE(257)] = 8987, - [SMALL_STATE(258)] = 9100, - [SMALL_STATE(259)] = 9213, - [SMALL_STATE(260)] = 9326, - [SMALL_STATE(261)] = 9439, - [SMALL_STATE(262)] = 9552, - [SMALL_STATE(263)] = 9665, - [SMALL_STATE(264)] = 9778, - [SMALL_STATE(265)] = 9894, - [SMALL_STATE(266)] = 10010, - [SMALL_STATE(267)] = 10122, - [SMALL_STATE(268)] = 10234, - [SMALL_STATE(269)] = 10348, - [SMALL_STATE(270)] = 10460, - [SMALL_STATE(271)] = 10572, - [SMALL_STATE(272)] = 10684, - [SMALL_STATE(273)] = 10796, - [SMALL_STATE(274)] = 10908, - [SMALL_STATE(275)] = 11022, - [SMALL_STATE(276)] = 11134, - [SMALL_STATE(277)] = 11250, - [SMALL_STATE(278)] = 11362, - [SMALL_STATE(279)] = 11474, - [SMALL_STATE(280)] = 11586, - [SMALL_STATE(281)] = 11698, - [SMALL_STATE(282)] = 11812, - [SMALL_STATE(283)] = 11924, - [SMALL_STATE(284)] = 12040, - [SMALL_STATE(285)] = 12152, - [SMALL_STATE(286)] = 12264, - [SMALL_STATE(287)] = 12376, - [SMALL_STATE(288)] = 12488, - [SMALL_STATE(289)] = 12602, - [SMALL_STATE(290)] = 12714, - [SMALL_STATE(291)] = 12830, - [SMALL_STATE(292)] = 12942, - [SMALL_STATE(293)] = 13054, - [SMALL_STATE(294)] = 13166, - [SMALL_STATE(295)] = 13280, - [SMALL_STATE(296)] = 13392, - [SMALL_STATE(297)] = 13508, - [SMALL_STATE(298)] = 13620, - [SMALL_STATE(299)] = 13732, - [SMALL_STATE(300)] = 13844, - [SMALL_STATE(301)] = 13956, - [SMALL_STATE(302)] = 14070, - [SMALL_STATE(303)] = 14182, - [SMALL_STATE(304)] = 14296, - [SMALL_STATE(305)] = 14408, - [SMALL_STATE(306)] = 14520, - [SMALL_STATE(307)] = 14632, - [SMALL_STATE(308)] = 14744, - [SMALL_STATE(309)] = 14858, - [SMALL_STATE(310)] = 14970, - [SMALL_STATE(311)] = 15082, - [SMALL_STATE(312)] = 15194, - [SMALL_STATE(313)] = 15306, - [SMALL_STATE(314)] = 15418, - [SMALL_STATE(315)] = 15530, - [SMALL_STATE(316)] = 15642, - [SMALL_STATE(317)] = 15754, - [SMALL_STATE(318)] = 15866, - [SMALL_STATE(319)] = 15975, - [SMALL_STATE(320)] = 16084, - [SMALL_STATE(321)] = 16181, - [SMALL_STATE(322)] = 16290, - [SMALL_STATE(323)] = 16399, - [SMALL_STATE(324)] = 16508, - [SMALL_STATE(325)] = 16617, - [SMALL_STATE(326)] = 16726, - [SMALL_STATE(327)] = 16835, - [SMALL_STATE(328)] = 16944, - [SMALL_STATE(329)] = 17053, - [SMALL_STATE(330)] = 17162, - [SMALL_STATE(331)] = 17271, - [SMALL_STATE(332)] = 17380, - [SMALL_STATE(333)] = 17489, - [SMALL_STATE(334)] = 17594, - [SMALL_STATE(335)] = 17703, - [SMALL_STATE(336)] = 17808, - [SMALL_STATE(337)] = 17917, - [SMALL_STATE(338)] = 18026, - [SMALL_STATE(339)] = 18135, - [SMALL_STATE(340)] = 18244, - [SMALL_STATE(341)] = 18352, - [SMALL_STATE(342)] = 18460, - [SMALL_STATE(343)] = 18568, - [SMALL_STATE(344)] = 18674, - [SMALL_STATE(345)] = 18782, - [SMALL_STATE(346)] = 18888, - [SMALL_STATE(347)] = 18996, - [SMALL_STATE(348)] = 19104, - [SMALL_STATE(349)] = 19212, - [SMALL_STATE(350)] = 19320, - [SMALL_STATE(351)] = 19428, - [SMALL_STATE(352)] = 19536, - [SMALL_STATE(353)] = 19644, - [SMALL_STATE(354)] = 19752, - [SMALL_STATE(355)] = 19860, - [SMALL_STATE(356)] = 19968, - [SMALL_STATE(357)] = 20076, - [SMALL_STATE(358)] = 20184, - [SMALL_STATE(359)] = 20292, - [SMALL_STATE(360)] = 20400, - [SMALL_STATE(361)] = 20506, - [SMALL_STATE(362)] = 20614, - [SMALL_STATE(363)] = 20722, - [SMALL_STATE(364)] = 20829, - [SMALL_STATE(365)] = 20936, - [SMALL_STATE(366)] = 21041, - [SMALL_STATE(367)] = 21148, - [SMALL_STATE(368)] = 21255, - [SMALL_STATE(369)] = 21362, - [SMALL_STATE(370)] = 21469, - [SMALL_STATE(371)] = 21574, - [SMALL_STATE(372)] = 21679, - [SMALL_STATE(373)] = 21774, - [SMALL_STATE(374)] = 21879, - [SMALL_STATE(375)] = 21984, - [SMALL_STATE(376)] = 22091, - [SMALL_STATE(377)] = 22198, - [SMALL_STATE(378)] = 22305, - [SMALL_STATE(379)] = 22400, - [SMALL_STATE(380)] = 22505, - [SMALL_STATE(381)] = 22612, - [SMALL_STATE(382)] = 22719, - [SMALL_STATE(383)] = 22826, - [SMALL_STATE(384)] = 22933, - [SMALL_STATE(385)] = 23040, - [SMALL_STATE(386)] = 23147, - [SMALL_STATE(387)] = 23254, - [SMALL_STATE(388)] = 23361, - [SMALL_STATE(389)] = 23468, - [SMALL_STATE(390)] = 23575, - [SMALL_STATE(391)] = 23682, - [SMALL_STATE(392)] = 23789, - [SMALL_STATE(393)] = 23896, - [SMALL_STATE(394)] = 24003, - [SMALL_STATE(395)] = 24110, - [SMALL_STATE(396)] = 24217, - [SMALL_STATE(397)] = 24324, - [SMALL_STATE(398)] = 24431, - [SMALL_STATE(399)] = 24538, - [SMALL_STATE(400)] = 24645, - [SMALL_STATE(401)] = 24752, - [SMALL_STATE(402)] = 24856, - [SMALL_STATE(403)] = 24958, - [SMALL_STATE(404)] = 25054, - [SMALL_STATE(405)] = 25156, - [SMALL_STATE(406)] = 25258, - [SMALL_STATE(407)] = 25360, - [SMALL_STATE(408)] = 25462, - [SMALL_STATE(409)] = 25566, - [SMALL_STATE(410)] = 25670, - [SMALL_STATE(411)] = 25746, - [SMALL_STATE(412)] = 25848, - [SMALL_STATE(413)] = 25952, - [SMALL_STATE(414)] = 26028, - [SMALL_STATE(415)] = 26130, - [SMALL_STATE(416)] = 26206, - [SMALL_STATE(417)] = 26308, - [SMALL_STATE(418)] = 26384, - [SMALL_STATE(419)] = 26460, - [SMALL_STATE(420)] = 26562, - [SMALL_STATE(421)] = 26664, - [SMALL_STATE(422)] = 26766, - [SMALL_STATE(423)] = 26868, - [SMALL_STATE(424)] = 26972, - [SMALL_STATE(425)] = 27076, - [SMALL_STATE(426)] = 27170, - [SMALL_STATE(427)] = 27246, - [SMALL_STATE(428)] = 27348, - [SMALL_STATE(429)] = 27424, - [SMALL_STATE(430)] = 27526, - [SMALL_STATE(431)] = 27628, - [SMALL_STATE(432)] = 27730, - [SMALL_STATE(433)] = 27832, - [SMALL_STATE(434)] = 27934, - [SMALL_STATE(435)] = 28036, - [SMALL_STATE(436)] = 28140, - [SMALL_STATE(437)] = 28242, - [SMALL_STATE(438)] = 28344, - [SMALL_STATE(439)] = 28448, - [SMALL_STATE(440)] = 28552, - [SMALL_STATE(441)] = 28628, - [SMALL_STATE(442)] = 28730, - [SMALL_STATE(443)] = 28824, - [SMALL_STATE(444)] = 28918, - [SMALL_STATE(445)] = 29022, - [SMALL_STATE(446)] = 29124, - [SMALL_STATE(447)] = 29228, - [SMALL_STATE(448)] = 29330, - [SMALL_STATE(449)] = 29434, - [SMALL_STATE(450)] = 29536, - [SMALL_STATE(451)] = 29640, - [SMALL_STATE(452)] = 29744, - [SMALL_STATE(453)] = 29848, - [SMALL_STATE(454)] = 29952, - [SMALL_STATE(455)] = 30056, - [SMALL_STATE(456)] = 30150, - [SMALL_STATE(457)] = 30254, - [SMALL_STATE(458)] = 30358, - [SMALL_STATE(459)] = 30460, - [SMALL_STATE(460)] = 30562, - [SMALL_STATE(461)] = 30664, - [SMALL_STATE(462)] = 30765, - [SMALL_STATE(463)] = 30842, - [SMALL_STATE(464)] = 30943, - [SMALL_STATE(465)] = 31044, - [SMALL_STATE(466)] = 31145, - [SMALL_STATE(467)] = 31246, - [SMALL_STATE(468)] = 31321, - [SMALL_STATE(469)] = 31422, - [SMALL_STATE(470)] = 31523, - [SMALL_STATE(471)] = 31624, - [SMALL_STATE(472)] = 31725, - [SMALL_STATE(473)] = 31826, - [SMALL_STATE(474)] = 31927, - [SMALL_STATE(475)] = 32028, - [SMALL_STATE(476)] = 32129, - [SMALL_STATE(477)] = 32230, - [SMALL_STATE(478)] = 32305, - [SMALL_STATE(479)] = 32406, - [SMALL_STATE(480)] = 32481, - [SMALL_STATE(481)] = 32579, - [SMALL_STATE(482)] = 32677, - [SMALL_STATE(483)] = 32743, - [SMALL_STATE(484)] = 32841, - [SMALL_STATE(485)] = 32939, - [SMALL_STATE(486)] = 33037, - [SMALL_STATE(487)] = 33135, - [SMALL_STATE(488)] = 33233, - [SMALL_STATE(489)] = 33331, - [SMALL_STATE(490)] = 33429, - [SMALL_STATE(491)] = 33527, - [SMALL_STATE(492)] = 33625, - [SMALL_STATE(493)] = 33723, - [SMALL_STATE(494)] = 33821, - [SMALL_STATE(495)] = 33919, - [SMALL_STATE(496)] = 34017, - [SMALL_STATE(497)] = 34115, - [SMALL_STATE(498)] = 34213, - [SMALL_STATE(499)] = 34311, - [SMALL_STATE(500)] = 34409, - [SMALL_STATE(501)] = 34507, - [SMALL_STATE(502)] = 34605, - [SMALL_STATE(503)] = 34703, - [SMALL_STATE(504)] = 34801, - [SMALL_STATE(505)] = 34899, - [SMALL_STATE(506)] = 34997, - [SMALL_STATE(507)] = 35095, - [SMALL_STATE(508)] = 35193, - [SMALL_STATE(509)] = 35291, - [SMALL_STATE(510)] = 35389, - [SMALL_STATE(511)] = 35487, - [SMALL_STATE(512)] = 35585, - [SMALL_STATE(513)] = 35683, - [SMALL_STATE(514)] = 35781, - [SMALL_STATE(515)] = 35879, - [SMALL_STATE(516)] = 35977, - [SMALL_STATE(517)] = 36075, - [SMALL_STATE(518)] = 36173, - [SMALL_STATE(519)] = 36271, - [SMALL_STATE(520)] = 36369, - [SMALL_STATE(521)] = 36467, - [SMALL_STATE(522)] = 36565, - [SMALL_STATE(523)] = 36663, - [SMALL_STATE(524)] = 36761, - [SMALL_STATE(525)] = 36859, - [SMALL_STATE(526)] = 36957, - [SMALL_STATE(527)] = 37055, - [SMALL_STATE(528)] = 37153, - [SMALL_STATE(529)] = 37251, - [SMALL_STATE(530)] = 37349, - [SMALL_STATE(531)] = 37447, - [SMALL_STATE(532)] = 37545, - [SMALL_STATE(533)] = 37643, - [SMALL_STATE(534)] = 37741, - [SMALL_STATE(535)] = 37839, - [SMALL_STATE(536)] = 37937, - [SMALL_STATE(537)] = 38035, - [SMALL_STATE(538)] = 38135, - [SMALL_STATE(539)] = 38233, - [SMALL_STATE(540)] = 38331, - [SMALL_STATE(541)] = 38429, - [SMALL_STATE(542)] = 38527, - [SMALL_STATE(543)] = 38625, - [SMALL_STATE(544)] = 38723, - [SMALL_STATE(545)] = 38821, - [SMALL_STATE(546)] = 38919, - [SMALL_STATE(547)] = 39017, - [SMALL_STATE(548)] = 39115, - [SMALL_STATE(549)] = 39213, - [SMALL_STATE(550)] = 39313, - [SMALL_STATE(551)] = 39411, - [SMALL_STATE(552)] = 39509, - [SMALL_STATE(553)] = 39607, - [SMALL_STATE(554)] = 39705, - [SMALL_STATE(555)] = 39803, - [SMALL_STATE(556)] = 39901, - [SMALL_STATE(557)] = 39999, - [SMALL_STATE(558)] = 40099, - [SMALL_STATE(559)] = 40197, - [SMALL_STATE(560)] = 40297, - [SMALL_STATE(561)] = 40395, - [SMALL_STATE(562)] = 40493, - [SMALL_STATE(563)] = 40591, - [SMALL_STATE(564)] = 40689, - [SMALL_STATE(565)] = 40787, - [SMALL_STATE(566)] = 40885, - [SMALL_STATE(567)] = 40985, - [SMALL_STATE(568)] = 41083, - [SMALL_STATE(569)] = 41181, - [SMALL_STATE(570)] = 41279, - [SMALL_STATE(571)] = 41377, - [SMALL_STATE(572)] = 41475, - [SMALL_STATE(573)] = 41573, - [SMALL_STATE(574)] = 41671, - [SMALL_STATE(575)] = 41769, - [SMALL_STATE(576)] = 41867, - [SMALL_STATE(577)] = 41967, - [SMALL_STATE(578)] = 42065, - [SMALL_STATE(579)] = 42163, - [SMALL_STATE(580)] = 42261, - [SMALL_STATE(581)] = 42359, - [SMALL_STATE(582)] = 42457, - [SMALL_STATE(583)] = 42555, - [SMALL_STATE(584)] = 42655, - [SMALL_STATE(585)] = 42753, - [SMALL_STATE(586)] = 42851, - [SMALL_STATE(587)] = 42949, - [SMALL_STATE(588)] = 43015, - [SMALL_STATE(589)] = 43113, - [SMALL_STATE(590)] = 43211, - [SMALL_STATE(591)] = 43309, - [SMALL_STATE(592)] = 43407, - [SMALL_STATE(593)] = 43505, - [SMALL_STATE(594)] = 43603, - [SMALL_STATE(595)] = 43701, - [SMALL_STATE(596)] = 43799, - [SMALL_STATE(597)] = 43897, - [SMALL_STATE(598)] = 43995, - [SMALL_STATE(599)] = 44093, - [SMALL_STATE(600)] = 44191, - [SMALL_STATE(601)] = 44289, - [SMALL_STATE(602)] = 44387, - [SMALL_STATE(603)] = 44485, - [SMALL_STATE(604)] = 44583, - [SMALL_STATE(605)] = 44656, - [SMALL_STATE(606)] = 44724, - [SMALL_STATE(607)] = 44792, - [SMALL_STATE(608)] = 44860, - [SMALL_STATE(609)] = 44926, - [SMALL_STATE(610)] = 44994, - [SMALL_STATE(611)] = 45062, - [SMALL_STATE(612)] = 45130, - [SMALL_STATE(613)] = 45196, - [SMALL_STATE(614)] = 45264, - [SMALL_STATE(615)] = 45332, - [SMALL_STATE(616)] = 45398, - [SMALL_STATE(617)] = 45466, - [SMALL_STATE(618)] = 45534, - [SMALL_STATE(619)] = 45591, - [SMALL_STATE(620)] = 45656, - [SMALL_STATE(621)] = 45713, - [SMALL_STATE(622)] = 45770, - [SMALL_STATE(623)] = 45827, - [SMALL_STATE(624)] = 45884, - [SMALL_STATE(625)] = 45947, - [SMALL_STATE(626)] = 46010, - [SMALL_STATE(627)] = 46073, - [SMALL_STATE(628)] = 46136, - [SMALL_STATE(629)] = 46199, - [SMALL_STATE(630)] = 46256, - [SMALL_STATE(631)] = 46313, - [SMALL_STATE(632)] = 46370, - [SMALL_STATE(633)] = 46427, - [SMALL_STATE(634)] = 46490, - [SMALL_STATE(635)] = 46547, - [SMALL_STATE(636)] = 46604, - [SMALL_STATE(637)] = 46661, - [SMALL_STATE(638)] = 46724, - [SMALL_STATE(639)] = 46787, - [SMALL_STATE(640)] = 46844, - [SMALL_STATE(641)] = 46901, - [SMALL_STATE(642)] = 46958, - [SMALL_STATE(643)] = 47015, - [SMALL_STATE(644)] = 47072, - [SMALL_STATE(645)] = 47129, - [SMALL_STATE(646)] = 47190, - [SMALL_STATE(647)] = 47247, - [SMALL_STATE(648)] = 47304, - [SMALL_STATE(649)] = 47361, - [SMALL_STATE(650)] = 47418, - [SMALL_STATE(651)] = 47479, - [SMALL_STATE(652)] = 47540, - [SMALL_STATE(653)] = 47597, - [SMALL_STATE(654)] = 47654, - [SMALL_STATE(655)] = 47711, - [SMALL_STATE(656)] = 47768, - [SMALL_STATE(657)] = 47825, - [SMALL_STATE(658)] = 47882, - [SMALL_STATE(659)] = 47939, - [SMALL_STATE(660)] = 47996, - [SMALL_STATE(661)] = 48053, - [SMALL_STATE(662)] = 48110, - [SMALL_STATE(663)] = 48167, - [SMALL_STATE(664)] = 48230, - [SMALL_STATE(665)] = 48287, - [SMALL_STATE(666)] = 48350, - [SMALL_STATE(667)] = 48407, - [SMALL_STATE(668)] = 48464, - [SMALL_STATE(669)] = 48521, - [SMALL_STATE(670)] = 48577, - [SMALL_STATE(671)] = 48633, - [SMALL_STATE(672)] = 48689, - [SMALL_STATE(673)] = 48745, - [SMALL_STATE(674)] = 48837, - [SMALL_STATE(675)] = 48893, - [SMALL_STATE(676)] = 48949, - [SMALL_STATE(677)] = 49041, - [SMALL_STATE(678)] = 49097, - [SMALL_STATE(679)] = 49153, - [SMALL_STATE(680)] = 49209, - [SMALL_STATE(681)] = 49265, - [SMALL_STATE(682)] = 49324, - [SMALL_STATE(683)] = 49379, - [SMALL_STATE(684)] = 49438, - [SMALL_STATE(685)] = 49497, - [SMALL_STATE(686)] = 49556, - [SMALL_STATE(687)] = 49611, - [SMALL_STATE(688)] = 49670, - [SMALL_STATE(689)] = 49729, - [SMALL_STATE(690)] = 49784, - [SMALL_STATE(691)] = 49843, - [SMALL_STATE(692)] = 49898, - [SMALL_STATE(693)] = 49957, - [SMALL_STATE(694)] = 50016, - [SMALL_STATE(695)] = 50075, - [SMALL_STATE(696)] = 50134, - [SMALL_STATE(697)] = 50193, - [SMALL_STATE(698)] = 50252, - [SMALL_STATE(699)] = 50311, - [SMALL_STATE(700)] = 50370, - [SMALL_STATE(701)] = 50425, - [SMALL_STATE(702)] = 50484, - [SMALL_STATE(703)] = 50543, - [SMALL_STATE(704)] = 50602, - [SMALL_STATE(705)] = 50657, - [SMALL_STATE(706)] = 50716, - [SMALL_STATE(707)] = 50775, - [SMALL_STATE(708)] = 50829, - [SMALL_STATE(709)] = 50921, - [SMALL_STATE(710)] = 50975, - [SMALL_STATE(711)] = 51029, - [SMALL_STATE(712)] = 51083, - [SMALL_STATE(713)] = 51175, - [SMALL_STATE(714)] = 51228, - [SMALL_STATE(715)] = 51281, - [SMALL_STATE(716)] = 51334, - [SMALL_STATE(717)] = 51387, - [SMALL_STATE(718)] = 51440, - [SMALL_STATE(719)] = 51493, - [SMALL_STATE(720)] = 51546, - [SMALL_STATE(721)] = 51599, - [SMALL_STATE(722)] = 51652, - [SMALL_STATE(723)] = 51705, - [SMALL_STATE(724)] = 51758, - [SMALL_STATE(725)] = 51811, - [SMALL_STATE(726)] = 51864, - [SMALL_STATE(727)] = 51917, - [SMALL_STATE(728)] = 51970, - [SMALL_STATE(729)] = 52023, - [SMALL_STATE(730)] = 52076, - [SMALL_STATE(731)] = 52129, - [SMALL_STATE(732)] = 52182, - [SMALL_STATE(733)] = 52271, - [SMALL_STATE(734)] = 52360, - [SMALL_STATE(735)] = 52413, - [SMALL_STATE(736)] = 52466, - [SMALL_STATE(737)] = 52519, - [SMALL_STATE(738)] = 52572, - [SMALL_STATE(739)] = 52661, - [SMALL_STATE(740)] = 52714, - [SMALL_STATE(741)] = 52767, - [SMALL_STATE(742)] = 52820, - [SMALL_STATE(743)] = 52873, - [SMALL_STATE(744)] = 52926, - [SMALL_STATE(745)] = 52979, - [SMALL_STATE(746)] = 53032, - [SMALL_STATE(747)] = 53085, - [SMALL_STATE(748)] = 53138, - [SMALL_STATE(749)] = 53191, - [SMALL_STATE(750)] = 53244, - [SMALL_STATE(751)] = 53297, - [SMALL_STATE(752)] = 53350, - [SMALL_STATE(753)] = 53439, - [SMALL_STATE(754)] = 53492, - [SMALL_STATE(755)] = 53545, - [SMALL_STATE(756)] = 53598, - [SMALL_STATE(757)] = 53651, - [SMALL_STATE(758)] = 53704, - [SMALL_STATE(759)] = 53757, - [SMALL_STATE(760)] = 53810, - [SMALL_STATE(761)] = 53863, - [SMALL_STATE(762)] = 53916, - [SMALL_STATE(763)] = 53969, - [SMALL_STATE(764)] = 54022, - [SMALL_STATE(765)] = 54075, - [SMALL_STATE(766)] = 54128, - [SMALL_STATE(767)] = 54181, - [SMALL_STATE(768)] = 54234, - [SMALL_STATE(769)] = 54287, - [SMALL_STATE(770)] = 54340, - [SMALL_STATE(771)] = 54429, - [SMALL_STATE(772)] = 54482, - [SMALL_STATE(773)] = 54571, - [SMALL_STATE(774)] = 54624, - [SMALL_STATE(775)] = 54713, - [SMALL_STATE(776)] = 54802, - [SMALL_STATE(777)] = 54855, - [SMALL_STATE(778)] = 54944, - [SMALL_STATE(779)] = 54997, - [SMALL_STATE(780)] = 55086, - [SMALL_STATE(781)] = 55139, - [SMALL_STATE(782)] = 55192, - [SMALL_STATE(783)] = 55245, - [SMALL_STATE(784)] = 55298, - [SMALL_STATE(785)] = 55351, - [SMALL_STATE(786)] = 55404, - [SMALL_STATE(787)] = 55457, - [SMALL_STATE(788)] = 55510, - [SMALL_STATE(789)] = 55563, - [SMALL_STATE(790)] = 55616, - [SMALL_STATE(791)] = 55669, - [SMALL_STATE(792)] = 55722, - [SMALL_STATE(793)] = 55775, - [SMALL_STATE(794)] = 55864, - [SMALL_STATE(795)] = 55917, - [SMALL_STATE(796)] = 55970, - [SMALL_STATE(797)] = 56023, - [SMALL_STATE(798)] = 56076, - [SMALL_STATE(799)] = 56129, - [SMALL_STATE(800)] = 56182, - [SMALL_STATE(801)] = 56235, - [SMALL_STATE(802)] = 56288, - [SMALL_STATE(803)] = 56341, - [SMALL_STATE(804)] = 56394, - [SMALL_STATE(805)] = 56447, - [SMALL_STATE(806)] = 56500, - [SMALL_STATE(807)] = 56553, - [SMALL_STATE(808)] = 56606, - [SMALL_STATE(809)] = 56659, - [SMALL_STATE(810)] = 56712, - [SMALL_STATE(811)] = 56765, - [SMALL_STATE(812)] = 56818, - [SMALL_STATE(813)] = 56871, - [SMALL_STATE(814)] = 56924, - [SMALL_STATE(815)] = 56977, - [SMALL_STATE(816)] = 57030, - [SMALL_STATE(817)] = 57083, - [SMALL_STATE(818)] = 57136, - [SMALL_STATE(819)] = 57189, - [SMALL_STATE(820)] = 57242, - [SMALL_STATE(821)] = 57295, - [SMALL_STATE(822)] = 57348, - [SMALL_STATE(823)] = 57401, - [SMALL_STATE(824)] = 57454, - [SMALL_STATE(825)] = 57507, - [SMALL_STATE(826)] = 57560, - [SMALL_STATE(827)] = 57649, - [SMALL_STATE(828)] = 57738, - [SMALL_STATE(829)] = 57791, - [SMALL_STATE(830)] = 57844, - [SMALL_STATE(831)] = 57897, - [SMALL_STATE(832)] = 57950, - [SMALL_STATE(833)] = 58003, - [SMALL_STATE(834)] = 58056, - [SMALL_STATE(835)] = 58145, - [SMALL_STATE(836)] = 58234, - [SMALL_STATE(837)] = 58323, - [SMALL_STATE(838)] = 58409, - [SMALL_STATE(839)] = 58495, - [SMALL_STATE(840)] = 58581, - [SMALL_STATE(841)] = 58667, - [SMALL_STATE(842)] = 58753, - [SMALL_STATE(843)] = 58839, - [SMALL_STATE(844)] = 58922, - [SMALL_STATE(845)] = 59005, - [SMALL_STATE(846)] = 59091, - [SMALL_STATE(847)] = 59169, - [SMALL_STATE(848)] = 59247, - [SMALL_STATE(849)] = 59325, - [SMALL_STATE(850)] = 59403, - [SMALL_STATE(851)] = 59481, - [SMALL_STATE(852)] = 59559, - [SMALL_STATE(853)] = 59637, - [SMALL_STATE(854)] = 59715, - [SMALL_STATE(855)] = 59790, - [SMALL_STATE(856)] = 59865, - [SMALL_STATE(857)] = 59940, - [SMALL_STATE(858)] = 60025, - [SMALL_STATE(859)] = 60100, - [SMALL_STATE(860)] = 60175, - [SMALL_STATE(861)] = 60254, - [SMALL_STATE(862)] = 60329, - [SMALL_STATE(863)] = 60404, - [SMALL_STATE(864)] = 60479, - [SMALL_STATE(865)] = 60554, - [SMALL_STATE(866)] = 60629, - [SMALL_STATE(867)] = 60704, - [SMALL_STATE(868)] = 60779, - [SMALL_STATE(869)] = 60858, - [SMALL_STATE(870)] = 60933, - [SMALL_STATE(871)] = 61008, - [SMALL_STATE(872)] = 61083, - [SMALL_STATE(873)] = 61158, - [SMALL_STATE(874)] = 61233, - [SMALL_STATE(875)] = 61312, - [SMALL_STATE(876)] = 61391, - [SMALL_STATE(877)] = 61466, - [SMALL_STATE(878)] = 61545, - [SMALL_STATE(879)] = 61620, - [SMALL_STATE(880)] = 61695, - [SMALL_STATE(881)] = 61770, - [SMALL_STATE(882)] = 61845, - [SMALL_STATE(883)] = 61920, - [SMALL_STATE(884)] = 61995, - [SMALL_STATE(885)] = 62070, - [SMALL_STATE(886)] = 62149, - [SMALL_STATE(887)] = 62224, - [SMALL_STATE(888)] = 62303, - [SMALL_STATE(889)] = 62378, - [SMALL_STATE(890)] = 62457, - [SMALL_STATE(891)] = 62532, - [SMALL_STATE(892)] = 62607, - [SMALL_STATE(893)] = 62682, - [SMALL_STATE(894)] = 62767, - [SMALL_STATE(895)] = 62842, - [SMALL_STATE(896)] = 62921, - [SMALL_STATE(897)] = 62996, - [SMALL_STATE(898)] = 63071, - [SMALL_STATE(899)] = 63146, - [SMALL_STATE(900)] = 63221, - [SMALL_STATE(901)] = 63296, - [SMALL_STATE(902)] = 63381, - [SMALL_STATE(903)] = 63456, - [SMALL_STATE(904)] = 63535, - [SMALL_STATE(905)] = 63614, - [SMALL_STATE(906)] = 63689, - [SMALL_STATE(907)] = 63764, - [SMALL_STATE(908)] = 63839, - [SMALL_STATE(909)] = 63918, - [SMALL_STATE(910)] = 63997, - [SMALL_STATE(911)] = 64072, - [SMALL_STATE(912)] = 64147, - [SMALL_STATE(913)] = 64222, - [SMALL_STATE(914)] = 64297, - [SMALL_STATE(915)] = 64372, - [SMALL_STATE(916)] = 64447, - [SMALL_STATE(917)] = 64526, - [SMALL_STATE(918)] = 64601, - [SMALL_STATE(919)] = 64676, - [SMALL_STATE(920)] = 64751, - [SMALL_STATE(921)] = 64826, - [SMALL_STATE(922)] = 64901, - [SMALL_STATE(923)] = 64976, - [SMALL_STATE(924)] = 65055, - [SMALL_STATE(925)] = 65134, - [SMALL_STATE(926)] = 65209, - [SMALL_STATE(927)] = 65284, - [SMALL_STATE(928)] = 65359, - [SMALL_STATE(929)] = 65434, - [SMALL_STATE(930)] = 65509, - [SMALL_STATE(931)] = 65584, - [SMALL_STATE(932)] = 65659, - [SMALL_STATE(933)] = 65734, - [SMALL_STATE(934)] = 65809, - [SMALL_STATE(935)] = 65884, - [SMALL_STATE(936)] = 65959, - [SMALL_STATE(937)] = 66034, - [SMALL_STATE(938)] = 66109, - [SMALL_STATE(939)] = 66184, - [SMALL_STATE(940)] = 66263, - [SMALL_STATE(941)] = 66338, - [SMALL_STATE(942)] = 66417, - [SMALL_STATE(943)] = 66496, - [SMALL_STATE(944)] = 66575, - [SMALL_STATE(945)] = 66650, - [SMALL_STATE(946)] = 66725, - [SMALL_STATE(947)] = 66800, - [SMALL_STATE(948)] = 66875, - [SMALL_STATE(949)] = 66950, - [SMALL_STATE(950)] = 67032, - [SMALL_STATE(951)] = 67116, - [SMALL_STATE(952)] = 67168, - [SMALL_STATE(953)] = 67252, - [SMALL_STATE(954)] = 67336, - [SMALL_STATE(955)] = 67388, - [SMALL_STATE(956)] = 67440, - [SMALL_STATE(957)] = 67497, - [SMALL_STATE(958)] = 67554, - [SMALL_STATE(959)] = 67605, - [SMALL_STATE(960)] = 67662, - [SMALL_STATE(961)] = 67713, - [SMALL_STATE(962)] = 67764, - [SMALL_STATE(963)] = 67825, - [SMALL_STATE(964)] = 67906, - [SMALL_STATE(965)] = 67957, - [SMALL_STATE(966)] = 68020, - [SMALL_STATE(967)] = 68089, - [SMALL_STATE(968)] = 68156, - [SMALL_STATE(969)] = 68207, - [SMALL_STATE(970)] = 68258, - [SMALL_STATE(971)] = 68309, - [SMALL_STATE(972)] = 68360, - [SMALL_STATE(973)] = 68425, - [SMALL_STATE(974)] = 68496, - [SMALL_STATE(975)] = 68553, - [SMALL_STATE(976)] = 68604, - [SMALL_STATE(977)] = 68650, - [SMALL_STATE(978)] = 68706, - [SMALL_STATE(979)] = 68756, - [SMALL_STATE(980)] = 68816, - [SMALL_STATE(981)] = 68864, - [SMALL_STATE(982)] = 68914, - [SMALL_STATE(983)] = 68978, - [SMALL_STATE(984)] = 69042, - [SMALL_STATE(985)] = 69092, - [SMALL_STATE(986)] = 69142, - [SMALL_STATE(987)] = 69188, - [SMALL_STATE(988)] = 69234, - [SMALL_STATE(989)] = 69280, - [SMALL_STATE(990)] = 69360, - [SMALL_STATE(991)] = 69420, - [SMALL_STATE(992)] = 69476, - [SMALL_STATE(993)] = 69526, - [SMALL_STATE(994)] = 69596, - [SMALL_STATE(995)] = 69676, - [SMALL_STATE(996)] = 69726, - [SMALL_STATE(997)] = 69772, - [SMALL_STATE(998)] = 69828, - [SMALL_STATE(999)] = 69878, - [SMALL_STATE(1000)] = 69934, - [SMALL_STATE(1001)] = 69980, - [SMALL_STATE(1002)] = 70042, - [SMALL_STATE(1003)] = 70094, - [SMALL_STATE(1004)] = 70162, - [SMALL_STATE(1005)] = 70224, - [SMALL_STATE(1006)] = 70280, - [SMALL_STATE(1007)] = 70330, - [SMALL_STATE(1008)] = 70410, - [SMALL_STATE(1009)] = 70466, - [SMALL_STATE(1010)] = 70536, - [SMALL_STATE(1011)] = 70602, - [SMALL_STATE(1012)] = 70666, - [SMALL_STATE(1013)] = 70714, - [SMALL_STATE(1014)] = 70764, - [SMALL_STATE(1015)] = 70820, - [SMALL_STATE(1016)] = 70876, - [SMALL_STATE(1017)] = 70932, - [SMALL_STATE(1018)] = 70978, - [SMALL_STATE(1019)] = 71026, - [SMALL_STATE(1020)] = 71072, - [SMALL_STATE(1021)] = 71128, - [SMALL_STATE(1022)] = 71184, - [SMALL_STATE(1023)] = 71240, - [SMALL_STATE(1024)] = 71300, - [SMALL_STATE(1025)] = 71368, - [SMALL_STATE(1026)] = 71434, - [SMALL_STATE(1027)] = 71502, - [SMALL_STATE(1028)] = 71564, - [SMALL_STATE(1029)] = 71630, - [SMALL_STATE(1030)] = 71676, - [SMALL_STATE(1031)] = 71746, - [SMALL_STATE(1032)] = 71798, - [SMALL_STATE(1033)] = 71847, - [SMALL_STATE(1034)] = 71892, - [SMALL_STATE(1035)] = 71937, - [SMALL_STATE(1036)] = 71982, - [SMALL_STATE(1037)] = 72027, - [SMALL_STATE(1038)] = 72072, - [SMALL_STATE(1039)] = 72121, - [SMALL_STATE(1040)] = 72170, - [SMALL_STATE(1041)] = 72215, - [SMALL_STATE(1042)] = 72260, - [SMALL_STATE(1043)] = 72311, - [SMALL_STATE(1044)] = 72362, - [SMALL_STATE(1045)] = 72407, - [SMALL_STATE(1046)] = 72460, - [SMALL_STATE(1047)] = 72505, - [SMALL_STATE(1048)] = 72550, - [SMALL_STATE(1049)] = 72595, - [SMALL_STATE(1050)] = 72646, - [SMALL_STATE(1051)] = 72697, - [SMALL_STATE(1052)] = 72752, - [SMALL_STATE(1053)] = 72797, - [SMALL_STATE(1054)] = 72844, - [SMALL_STATE(1055)] = 72891, - [SMALL_STATE(1056)] = 72938, - [SMALL_STATE(1057)] = 72993, - [SMALL_STATE(1058)] = 73038, - [SMALL_STATE(1059)] = 73087, - [SMALL_STATE(1060)] = 73136, - [SMALL_STATE(1061)] = 73181, - [SMALL_STATE(1062)] = 73226, - [SMALL_STATE(1063)] = 73271, - [SMALL_STATE(1064)] = 73316, - [SMALL_STATE(1065)] = 73367, - [SMALL_STATE(1066)] = 73418, - [SMALL_STATE(1067)] = 73463, - [SMALL_STATE(1068)] = 73508, - [SMALL_STATE(1069)] = 73553, - [SMALL_STATE(1070)] = 73598, - [SMALL_STATE(1071)] = 73653, - [SMALL_STATE(1072)] = 73708, - [SMALL_STATE(1073)] = 73753, - [SMALL_STATE(1074)] = 73808, - [SMALL_STATE(1075)] = 73869, - [SMALL_STATE(1076)] = 73938, - [SMALL_STATE(1077)] = 73993, - [SMALL_STATE(1078)] = 74052, - [SMALL_STATE(1079)] = 74119, - [SMALL_STATE(1080)] = 74184, - [SMALL_STATE(1081)] = 74247, - [SMALL_STATE(1082)] = 74296, - [SMALL_STATE(1083)] = 74343, - [SMALL_STATE(1084)] = 74390, - [SMALL_STATE(1085)] = 74437, - [SMALL_STATE(1086)] = 74492, - [SMALL_STATE(1087)] = 74541, - [SMALL_STATE(1088)] = 74602, - [SMALL_STATE(1089)] = 74651, - [SMALL_STATE(1090)] = 74720, - [SMALL_STATE(1091)] = 74775, - [SMALL_STATE(1092)] = 74834, - [SMALL_STATE(1093)] = 74901, - [SMALL_STATE(1094)] = 74966, - [SMALL_STATE(1095)] = 75029, - [SMALL_STATE(1096)] = 75074, - [SMALL_STATE(1097)] = 75119, - [SMALL_STATE(1098)] = 75164, - [SMALL_STATE(1099)] = 75209, - [SMALL_STATE(1100)] = 75254, - [SMALL_STATE(1101)] = 75299, - [SMALL_STATE(1102)] = 75344, - [SMALL_STATE(1103)] = 75389, - [SMALL_STATE(1104)] = 75434, - [SMALL_STATE(1105)] = 75479, - [SMALL_STATE(1106)] = 75524, - [SMALL_STATE(1107)] = 75569, - [SMALL_STATE(1108)] = 75614, - [SMALL_STATE(1109)] = 75663, - [SMALL_STATE(1110)] = 75712, - [SMALL_STATE(1111)] = 75761, - [SMALL_STATE(1112)] = 75810, - [SMALL_STATE(1113)] = 75857, - [SMALL_STATE(1114)] = 75904, - [SMALL_STATE(1115)] = 75951, - [SMALL_STATE(1116)] = 76006, - [SMALL_STATE(1117)] = 76061, - [SMALL_STATE(1118)] = 76106, - [SMALL_STATE(1119)] = 76157, - [SMALL_STATE(1120)] = 76208, - [SMALL_STATE(1121)] = 76259, - [SMALL_STATE(1122)] = 76304, - [SMALL_STATE(1123)] = 76349, - [SMALL_STATE(1124)] = 76404, - [SMALL_STATE(1125)] = 76465, - [SMALL_STATE(1126)] = 76534, - [SMALL_STATE(1127)] = 76589, - [SMALL_STATE(1128)] = 76648, - [SMALL_STATE(1129)] = 76715, - [SMALL_STATE(1130)] = 76780, - [SMALL_STATE(1131)] = 76843, - [SMALL_STATE(1132)] = 76888, - [SMALL_STATE(1133)] = 76954, - [SMALL_STATE(1134)] = 76998, - [SMALL_STATE(1135)] = 77042, - [SMALL_STATE(1136)] = 77086, - [SMALL_STATE(1137)] = 77130, - [SMALL_STATE(1138)] = 77174, - [SMALL_STATE(1139)] = 77218, - [SMALL_STATE(1140)] = 77266, - [SMALL_STATE(1141)] = 77310, - [SMALL_STATE(1142)] = 77360, - [SMALL_STATE(1143)] = 77404, - [SMALL_STATE(1144)] = 77454, - [SMALL_STATE(1145)] = 77498, - [SMALL_STATE(1146)] = 77542, - [SMALL_STATE(1147)] = 77586, - [SMALL_STATE(1148)] = 77630, - [SMALL_STATE(1149)] = 77674, - [SMALL_STATE(1150)] = 77718, - [SMALL_STATE(1151)] = 77762, - [SMALL_STATE(1152)] = 77806, - [SMALL_STATE(1153)] = 77850, - [SMALL_STATE(1154)] = 77894, - [SMALL_STATE(1155)] = 77938, - [SMALL_STATE(1156)] = 77982, - [SMALL_STATE(1157)] = 78026, - [SMALL_STATE(1158)] = 78070, - [SMALL_STATE(1159)] = 78118, - [SMALL_STATE(1160)] = 78166, - [SMALL_STATE(1161)] = 78210, - [SMALL_STATE(1162)] = 78254, - [SMALL_STATE(1163)] = 78298, - [SMALL_STATE(1164)] = 78342, - [SMALL_STATE(1165)] = 78386, - [SMALL_STATE(1166)] = 78430, - [SMALL_STATE(1167)] = 78474, - [SMALL_STATE(1168)] = 78518, - [SMALL_STATE(1169)] = 78562, - [SMALL_STATE(1170)] = 78606, - [SMALL_STATE(1171)] = 78650, - [SMALL_STATE(1172)] = 78694, - [SMALL_STATE(1173)] = 78738, - [SMALL_STATE(1174)] = 78782, - [SMALL_STATE(1175)] = 78826, - [SMALL_STATE(1176)] = 78870, - [SMALL_STATE(1177)] = 78914, - [SMALL_STATE(1178)] = 78958, - [SMALL_STATE(1179)] = 79002, - [SMALL_STATE(1180)] = 79046, - [SMALL_STATE(1181)] = 79090, - [SMALL_STATE(1182)] = 79136, - [SMALL_STATE(1183)] = 79182, - [SMALL_STATE(1184)] = 79228, - [SMALL_STATE(1185)] = 79274, - [SMALL_STATE(1186)] = 79320, - [SMALL_STATE(1187)] = 79368, - [SMALL_STATE(1188)] = 79416, - [SMALL_STATE(1189)] = 79460, - [SMALL_STATE(1190)] = 79504, - [SMALL_STATE(1191)] = 79548, - [SMALL_STATE(1192)] = 79592, - [SMALL_STATE(1193)] = 79636, - [SMALL_STATE(1194)] = 79680, - [SMALL_STATE(1195)] = 79726, - [SMALL_STATE(1196)] = 79770, - [SMALL_STATE(1197)] = 79818, - [SMALL_STATE(1198)] = 79862, - [SMALL_STATE(1199)] = 79908, - [SMALL_STATE(1200)] = 79954, - [SMALL_STATE(1201)] = 80000, - [SMALL_STATE(1202)] = 80054, - [SMALL_STATE(1203)] = 80108, - [SMALL_STATE(1204)] = 80152, - [SMALL_STATE(1205)] = 80200, - [SMALL_STATE(1206)] = 80246, - [SMALL_STATE(1207)] = 80290, - [SMALL_STATE(1208)] = 80334, - [SMALL_STATE(1209)] = 80378, - [SMALL_STATE(1210)] = 80422, - [SMALL_STATE(1211)] = 80476, - [SMALL_STATE(1212)] = 80536, - [SMALL_STATE(1213)] = 80604, - [SMALL_STATE(1214)] = 80658, - [SMALL_STATE(1215)] = 80716, - [SMALL_STATE(1216)] = 80760, - [SMALL_STATE(1217)] = 80804, - [SMALL_STATE(1218)] = 80866, - [SMALL_STATE(1219)] = 80910, - [SMALL_STATE(1220)] = 80954, - [SMALL_STATE(1221)] = 81002, - [SMALL_STATE(1222)] = 81050, - [SMALL_STATE(1223)] = 81094, - [SMALL_STATE(1224)] = 81142, - [SMALL_STATE(1225)] = 81190, - [SMALL_STATE(1226)] = 81238, - [SMALL_STATE(1227)] = 81286, - [SMALL_STATE(1228)] = 81332, - [SMALL_STATE(1229)] = 81378, - [SMALL_STATE(1230)] = 81426, - [SMALL_STATE(1231)] = 81474, - [SMALL_STATE(1232)] = 81518, - [SMALL_STATE(1233)] = 81564, - [SMALL_STATE(1234)] = 81608, - [SMALL_STATE(1235)] = 81656, - [SMALL_STATE(1236)] = 81704, - [SMALL_STATE(1237)] = 81752, - [SMALL_STATE(1238)] = 81796, - [SMALL_STATE(1239)] = 81840, - [SMALL_STATE(1240)] = 81884, - [SMALL_STATE(1241)] = 81930, - [SMALL_STATE(1242)] = 81974, - [SMALL_STATE(1243)] = 82018, - [SMALL_STATE(1244)] = 82062, - [SMALL_STATE(1245)] = 82106, - [SMALL_STATE(1246)] = 82150, - [SMALL_STATE(1247)] = 82194, - [SMALL_STATE(1248)] = 82238, - [SMALL_STATE(1249)] = 82282, - [SMALL_STATE(1250)] = 82326, - [SMALL_STATE(1251)] = 82370, - [SMALL_STATE(1252)] = 82414, - [SMALL_STATE(1253)] = 82458, - [SMALL_STATE(1254)] = 82506, - [SMALL_STATE(1255)] = 82550, - [SMALL_STATE(1256)] = 82594, - [SMALL_STATE(1257)] = 82638, - [SMALL_STATE(1258)] = 82682, - [SMALL_STATE(1259)] = 82726, - [SMALL_STATE(1260)] = 82770, - [SMALL_STATE(1261)] = 82814, - [SMALL_STATE(1262)] = 82858, - [SMALL_STATE(1263)] = 82902, - [SMALL_STATE(1264)] = 82952, - [SMALL_STATE(1265)] = 83002, - [SMALL_STATE(1266)] = 83046, - [SMALL_STATE(1267)] = 83090, - [SMALL_STATE(1268)] = 83134, - [SMALL_STATE(1269)] = 83178, - [SMALL_STATE(1270)] = 83222, - [SMALL_STATE(1271)] = 83266, - [SMALL_STATE(1272)] = 83310, - [SMALL_STATE(1273)] = 83354, - [SMALL_STATE(1274)] = 83398, - [SMALL_STATE(1275)] = 83442, - [SMALL_STATE(1276)] = 83486, - [SMALL_STATE(1277)] = 83530, - [SMALL_STATE(1278)] = 83574, - [SMALL_STATE(1279)] = 83618, - [SMALL_STATE(1280)] = 83662, - [SMALL_STATE(1281)] = 83706, - [SMALL_STATE(1282)] = 83750, - [SMALL_STATE(1283)] = 83796, - [SMALL_STATE(1284)] = 83840, - [SMALL_STATE(1285)] = 83904, - [SMALL_STATE(1286)] = 83947, - [SMALL_STATE(1287)] = 83990, - [SMALL_STATE(1288)] = 84033, - [SMALL_STATE(1289)] = 84076, - [SMALL_STATE(1290)] = 84119, - [SMALL_STATE(1291)] = 84162, - [SMALL_STATE(1292)] = 84205, - [SMALL_STATE(1293)] = 84248, - [SMALL_STATE(1294)] = 84291, - [SMALL_STATE(1295)] = 84334, - [SMALL_STATE(1296)] = 84377, - [SMALL_STATE(1297)] = 84420, - [SMALL_STATE(1298)] = 84463, - [SMALL_STATE(1299)] = 84506, - [SMALL_STATE(1300)] = 84549, - [SMALL_STATE(1301)] = 84592, - [SMALL_STATE(1302)] = 84635, - [SMALL_STATE(1303)] = 84678, - [SMALL_STATE(1304)] = 84721, - [SMALL_STATE(1305)] = 84764, - [SMALL_STATE(1306)] = 84807, - [SMALL_STATE(1307)] = 84850, - [SMALL_STATE(1308)] = 84893, - [SMALL_STATE(1309)] = 84936, - [SMALL_STATE(1310)] = 84979, - [SMALL_STATE(1311)] = 85022, - [SMALL_STATE(1312)] = 85065, - [SMALL_STATE(1313)] = 85108, - [SMALL_STATE(1314)] = 85151, - [SMALL_STATE(1315)] = 85194, - [SMALL_STATE(1316)] = 85237, - [SMALL_STATE(1317)] = 85280, - [SMALL_STATE(1318)] = 85323, - [SMALL_STATE(1319)] = 85366, - [SMALL_STATE(1320)] = 85409, - [SMALL_STATE(1321)] = 85452, - [SMALL_STATE(1322)] = 85495, - [SMALL_STATE(1323)] = 85542, - [SMALL_STATE(1324)] = 85589, - [SMALL_STATE(1325)] = 85636, - [SMALL_STATE(1326)] = 85683, - [SMALL_STATE(1327)] = 85730, - [SMALL_STATE(1328)] = 85781, - [SMALL_STATE(1329)] = 85824, - [SMALL_STATE(1330)] = 85869, - [SMALL_STATE(1331)] = 85914, - [SMALL_STATE(1332)] = 85957, - [SMALL_STATE(1333)] = 86000, - [SMALL_STATE(1334)] = 86043, - [SMALL_STATE(1335)] = 86086, - [SMALL_STATE(1336)] = 86129, - [SMALL_STATE(1337)] = 86172, - [SMALL_STATE(1338)] = 86215, - [SMALL_STATE(1339)] = 86258, - [SMALL_STATE(1340)] = 86301, - [SMALL_STATE(1341)] = 86346, - [SMALL_STATE(1342)] = 86391, - [SMALL_STATE(1343)] = 86438, - [SMALL_STATE(1344)] = 86483, - [SMALL_STATE(1345)] = 86526, - [SMALL_STATE(1346)] = 86571, - [SMALL_STATE(1347)] = 86616, - [SMALL_STATE(1348)] = 86661, - [SMALL_STATE(1349)] = 86706, - [SMALL_STATE(1350)] = 86753, - [SMALL_STATE(1351)] = 86798, - [SMALL_STATE(1352)] = 86841, - [SMALL_STATE(1353)] = 86886, - [SMALL_STATE(1354)] = 86933, - [SMALL_STATE(1355)] = 86976, - [SMALL_STATE(1356)] = 87019, - [SMALL_STATE(1357)] = 87062, - [SMALL_STATE(1358)] = 87105, - [SMALL_STATE(1359)] = 87148, - [SMALL_STATE(1360)] = 87191, - [SMALL_STATE(1361)] = 87234, - [SMALL_STATE(1362)] = 87281, - [SMALL_STATE(1363)] = 87326, - [SMALL_STATE(1364)] = 87369, - [SMALL_STATE(1365)] = 87412, - [SMALL_STATE(1366)] = 87455, - [SMALL_STATE(1367)] = 87500, - [SMALL_STATE(1368)] = 87543, - [SMALL_STATE(1369)] = 87588, - [SMALL_STATE(1370)] = 87631, - [SMALL_STATE(1371)] = 87674, - [SMALL_STATE(1372)] = 87717, - [SMALL_STATE(1373)] = 87760, - [SMALL_STATE(1374)] = 87803, - [SMALL_STATE(1375)] = 87846, - [SMALL_STATE(1376)] = 87889, - [SMALL_STATE(1377)] = 87932, - [SMALL_STATE(1378)] = 87975, - [SMALL_STATE(1379)] = 88022, - [SMALL_STATE(1380)] = 88065, - [SMALL_STATE(1381)] = 88108, - [SMALL_STATE(1382)] = 88151, - [SMALL_STATE(1383)] = 88194, - [SMALL_STATE(1384)] = 88237, - [SMALL_STATE(1385)] = 88280, - [SMALL_STATE(1386)] = 88323, - [SMALL_STATE(1387)] = 88366, - [SMALL_STATE(1388)] = 88413, - [SMALL_STATE(1389)] = 88460, - [SMALL_STATE(1390)] = 88503, - [SMALL_STATE(1391)] = 88546, - [SMALL_STATE(1392)] = 88591, - [SMALL_STATE(1393)] = 88634, - [SMALL_STATE(1394)] = 88677, - [SMALL_STATE(1395)] = 88720, - [SMALL_STATE(1396)] = 88765, - [SMALL_STATE(1397)] = 88808, - [SMALL_STATE(1398)] = 88853, - [SMALL_STATE(1399)] = 88896, - [SMALL_STATE(1400)] = 88939, - [SMALL_STATE(1401)] = 88984, - [SMALL_STATE(1402)] = 89027, - [SMALL_STATE(1403)] = 89070, - [SMALL_STATE(1404)] = 89113, - [SMALL_STATE(1405)] = 89156, - [SMALL_STATE(1406)] = 89199, - [SMALL_STATE(1407)] = 89242, - [SMALL_STATE(1408)] = 89285, - [SMALL_STATE(1409)] = 89328, - [SMALL_STATE(1410)] = 89379, - [SMALL_STATE(1411)] = 89422, - [SMALL_STATE(1412)] = 89464, - [SMALL_STATE(1413)] = 89506, - [SMALL_STATE(1414)] = 89550, - [SMALL_STATE(1415)] = 89592, - [SMALL_STATE(1416)] = 89638, - [SMALL_STATE(1417)] = 89680, - [SMALL_STATE(1418)] = 89722, - [SMALL_STATE(1419)] = 89764, - [SMALL_STATE(1420)] = 89806, - [SMALL_STATE(1421)] = 89848, - [SMALL_STATE(1422)] = 89892, - [SMALL_STATE(1423)] = 89934, - [SMALL_STATE(1424)] = 89978, - [SMALL_STATE(1425)] = 90020, - [SMALL_STATE(1426)] = 90064, - [SMALL_STATE(1427)] = 90106, - [SMALL_STATE(1428)] = 90150, - [SMALL_STATE(1429)] = 90192, - [SMALL_STATE(1430)] = 90234, - [SMALL_STATE(1431)] = 90280, - [SMALL_STATE(1432)] = 90322, - [SMALL_STATE(1433)] = 90364, - [SMALL_STATE(1434)] = 90406, - [SMALL_STATE(1435)] = 90448, - [SMALL_STATE(1436)] = 90490, - [SMALL_STATE(1437)] = 90532, - [SMALL_STATE(1438)] = 90574, - [SMALL_STATE(1439)] = 90616, - [SMALL_STATE(1440)] = 90658, - [SMALL_STATE(1441)] = 90700, - [SMALL_STATE(1442)] = 90742, - [SMALL_STATE(1443)] = 90786, - [SMALL_STATE(1444)] = 90830, - [SMALL_STATE(1445)] = 90872, - [SMALL_STATE(1446)] = 90920, - [SMALL_STATE(1447)] = 90970, - [SMALL_STATE(1448)] = 91012, - [SMALL_STATE(1449)] = 91054, - [SMALL_STATE(1450)] = 91100, - [SMALL_STATE(1451)] = 91142, - [SMALL_STATE(1452)] = 91186, - [SMALL_STATE(1453)] = 91230, - [SMALL_STATE(1454)] = 91272, - [SMALL_STATE(1455)] = 91314, - [SMALL_STATE(1456)] = 91356, - [SMALL_STATE(1457)] = 91398, - [SMALL_STATE(1458)] = 91440, - [SMALL_STATE(1459)] = 91481, - [SMALL_STATE(1460)] = 91522, - [SMALL_STATE(1461)] = 91563, - [SMALL_STATE(1462)] = 91604, - [SMALL_STATE(1463)] = 91647, - [SMALL_STATE(1464)] = 91690, - [SMALL_STATE(1465)] = 91733, - [SMALL_STATE(1466)] = 91776, - [SMALL_STATE(1467)] = 91819, - [SMALL_STATE(1468)] = 91862, - [SMALL_STATE(1469)] = 91903, - [SMALL_STATE(1470)] = 91944, - [SMALL_STATE(1471)] = 91985, - [SMALL_STATE(1472)] = 92028, - [SMALL_STATE(1473)] = 92069, - [SMALL_STATE(1474)] = 92110, - [SMALL_STATE(1475)] = 92151, - [SMALL_STATE(1476)] = 92194, - [SMALL_STATE(1477)] = 92237, - [SMALL_STATE(1478)] = 92311, - [SMALL_STATE(1479)] = 92385, - [SMALL_STATE(1480)] = 92453, - [SMALL_STATE(1481)] = 92521, - [SMALL_STATE(1482)] = 92589, - [SMALL_STATE(1483)] = 92657, - [SMALL_STATE(1484)] = 92725, - [SMALL_STATE(1485)] = 92793, - [SMALL_STATE(1486)] = 92861, - [SMALL_STATE(1487)] = 92929, - [SMALL_STATE(1488)] = 92997, - [SMALL_STATE(1489)] = 93065, - [SMALL_STATE(1490)] = 93133, - [SMALL_STATE(1491)] = 93201, - [SMALL_STATE(1492)] = 93269, - [SMALL_STATE(1493)] = 93337, - [SMALL_STATE(1494)] = 93405, - [SMALL_STATE(1495)] = 93473, - [SMALL_STATE(1496)] = 93541, - [SMALL_STATE(1497)] = 93609, - [SMALL_STATE(1498)] = 93677, - [SMALL_STATE(1499)] = 93745, - [SMALL_STATE(1500)] = 93813, - [SMALL_STATE(1501)] = 93881, - [SMALL_STATE(1502)] = 93949, - [SMALL_STATE(1503)] = 94017, - [SMALL_STATE(1504)] = 94085, - [SMALL_STATE(1505)] = 94153, - [SMALL_STATE(1506)] = 94221, - [SMALL_STATE(1507)] = 94289, - [SMALL_STATE(1508)] = 94357, - [SMALL_STATE(1509)] = 94425, - [SMALL_STATE(1510)] = 94493, - [SMALL_STATE(1511)] = 94561, - [SMALL_STATE(1512)] = 94629, - [SMALL_STATE(1513)] = 94697, - [SMALL_STATE(1514)] = 94765, - [SMALL_STATE(1515)] = 94833, - [SMALL_STATE(1516)] = 94898, - [SMALL_STATE(1517)] = 94963, - [SMALL_STATE(1518)] = 95028, - [SMALL_STATE(1519)] = 95093, - [SMALL_STATE(1520)] = 95158, - [SMALL_STATE(1521)] = 95224, - [SMALL_STATE(1522)] = 95290, - [SMALL_STATE(1523)] = 95356, - [SMALL_STATE(1524)] = 95422, - [SMALL_STATE(1525)] = 95488, - [SMALL_STATE(1526)] = 95554, - [SMALL_STATE(1527)] = 95620, - [SMALL_STATE(1528)] = 95686, - [SMALL_STATE(1529)] = 95752, - [SMALL_STATE(1530)] = 95818, - [SMALL_STATE(1531)] = 95884, - [SMALL_STATE(1532)] = 95950, - [SMALL_STATE(1533)] = 96016, - [SMALL_STATE(1534)] = 96082, - [SMALL_STATE(1535)] = 96148, - [SMALL_STATE(1536)] = 96214, - [SMALL_STATE(1537)] = 96280, - [SMALL_STATE(1538)] = 96346, - [SMALL_STATE(1539)] = 96412, - [SMALL_STATE(1540)] = 96478, - [SMALL_STATE(1541)] = 96541, - [SMALL_STATE(1542)] = 96599, - [SMALL_STATE(1543)] = 96657, - [SMALL_STATE(1544)] = 96715, - [SMALL_STATE(1545)] = 96773, - [SMALL_STATE(1546)] = 96819, - [SMALL_STATE(1547)] = 96877, - [SMALL_STATE(1548)] = 96935, - [SMALL_STATE(1549)] = 96993, - [SMALL_STATE(1550)] = 97051, - [SMALL_STATE(1551)] = 97097, - [SMALL_STATE(1552)] = 97142, - [SMALL_STATE(1553)] = 97187, - [SMALL_STATE(1554)] = 97231, - [SMALL_STATE(1555)] = 97275, - [SMALL_STATE(1556)] = 97319, - [SMALL_STATE(1557)] = 97363, - [SMALL_STATE(1558)] = 97406, - [SMALL_STATE(1559)] = 97449, - [SMALL_STATE(1560)] = 97490, - [SMALL_STATE(1561)] = 97533, - [SMALL_STATE(1562)] = 97576, - [SMALL_STATE(1563)] = 97617, - [SMALL_STATE(1564)] = 97649, - [SMALL_STATE(1565)] = 97691, - [SMALL_STATE(1566)] = 97723, - [SMALL_STATE(1567)] = 97753, - [SMALL_STATE(1568)] = 97785, - [SMALL_STATE(1569)] = 97827, - [SMALL_STATE(1570)] = 97859, - [SMALL_STATE(1571)] = 97889, - [SMALL_STATE(1572)] = 97921, - [SMALL_STATE(1573)] = 97953, - [SMALL_STATE(1574)] = 97983, - [SMALL_STATE(1575)] = 98013, - [SMALL_STATE(1576)] = 98043, - [SMALL_STATE(1577)] = 98073, - [SMALL_STATE(1578)] = 98103, - [SMALL_STATE(1579)] = 98133, - [SMALL_STATE(1580)] = 98163, - [SMALL_STATE(1581)] = 98193, - [SMALL_STATE(1582)] = 98240, - [SMALL_STATE(1583)] = 98269, - [SMALL_STATE(1584)] = 98298, - [SMALL_STATE(1585)] = 98323, - [SMALL_STATE(1586)] = 98352, - [SMALL_STATE(1587)] = 98381, - [SMALL_STATE(1588)] = 98410, - [SMALL_STATE(1589)] = 98457, - [SMALL_STATE(1590)] = 98486, - [SMALL_STATE(1591)] = 98533, - [SMALL_STATE(1592)] = 98562, - [SMALL_STATE(1593)] = 98591, - [SMALL_STATE(1594)] = 98616, - [SMALL_STATE(1595)] = 98645, - [SMALL_STATE(1596)] = 98674, - [SMALL_STATE(1597)] = 98703, - [SMALL_STATE(1598)] = 98728, - [SMALL_STATE(1599)] = 98775, - [SMALL_STATE(1600)] = 98804, - [SMALL_STATE(1601)] = 98851, - [SMALL_STATE(1602)] = 98880, - [SMALL_STATE(1603)] = 98905, - [SMALL_STATE(1604)] = 98952, - [SMALL_STATE(1605)] = 98981, - [SMALL_STATE(1606)] = 99010, - [SMALL_STATE(1607)] = 99057, - [SMALL_STATE(1608)] = 99104, - [SMALL_STATE(1609)] = 99151, - [SMALL_STATE(1610)] = 99180, - [SMALL_STATE(1611)] = 99209, - [SMALL_STATE(1612)] = 99238, - [SMALL_STATE(1613)] = 99267, - [SMALL_STATE(1614)] = 99296, - [SMALL_STATE(1615)] = 99325, - [SMALL_STATE(1616)] = 99354, - [SMALL_STATE(1617)] = 99383, - [SMALL_STATE(1618)] = 99412, - [SMALL_STATE(1619)] = 99459, - [SMALL_STATE(1620)] = 99505, - [SMALL_STATE(1621)] = 99533, - [SMALL_STATE(1622)] = 99579, - [SMALL_STATE(1623)] = 99625, - [SMALL_STATE(1624)] = 99657, - [SMALL_STATE(1625)] = 99689, - [SMALL_STATE(1626)] = 99713, - [SMALL_STATE(1627)] = 99737, - [SMALL_STATE(1628)] = 99783, - [SMALL_STATE(1629)] = 99829, - [SMALL_STATE(1630)] = 99875, - [SMALL_STATE(1631)] = 99899, - [SMALL_STATE(1632)] = 99945, - [SMALL_STATE(1633)] = 99991, - [SMALL_STATE(1634)] = 100037, - [SMALL_STATE(1635)] = 100067, - [SMALL_STATE(1636)] = 100113, - [SMALL_STATE(1637)] = 100137, - [SMALL_STATE(1638)] = 100183, - [SMALL_STATE(1639)] = 100211, - [SMALL_STATE(1640)] = 100254, - [SMALL_STATE(1641)] = 100294, - [SMALL_STATE(1642)] = 100334, - [SMALL_STATE(1643)] = 100374, - [SMALL_STATE(1644)] = 100414, - [SMALL_STATE(1645)] = 100440, - [SMALL_STATE(1646)] = 100479, - [SMALL_STATE(1647)] = 100516, - [SMALL_STATE(1648)] = 100553, - [SMALL_STATE(1649)] = 100580, - [SMALL_STATE(1650)] = 100599, - [SMALL_STATE(1651)] = 100640, - [SMALL_STATE(1652)] = 100665, - [SMALL_STATE(1653)] = 100688, - [SMALL_STATE(1654)] = 100715, - [SMALL_STATE(1655)] = 100736, - [SMALL_STATE(1656)] = 100777, - [SMALL_STATE(1657)] = 100818, - [SMALL_STATE(1658)] = 100859, - [SMALL_STATE(1659)] = 100886, - [SMALL_STATE(1660)] = 100927, - [SMALL_STATE(1661)] = 100968, - [SMALL_STATE(1662)] = 101009, - [SMALL_STATE(1663)] = 101050, - [SMALL_STATE(1664)] = 101069, - [SMALL_STATE(1665)] = 101088, - [SMALL_STATE(1666)] = 101126, - [SMALL_STATE(1667)] = 101156, - [SMALL_STATE(1668)] = 101186, - [SMALL_STATE(1669)] = 101224, - [SMALL_STATE(1670)] = 101254, - [SMALL_STATE(1671)] = 101280, - [SMALL_STATE(1672)] = 101300, - [SMALL_STATE(1673)] = 101330, - [SMALL_STATE(1674)] = 101356, - [SMALL_STATE(1675)] = 101376, - [SMALL_STATE(1676)] = 101406, - [SMALL_STATE(1677)] = 101444, - [SMALL_STATE(1678)] = 101482, - [SMALL_STATE(1679)] = 101520, - [SMALL_STATE(1680)] = 101550, - [SMALL_STATE(1681)] = 101572, - [SMALL_STATE(1682)] = 101602, - [SMALL_STATE(1683)] = 101632, - [SMALL_STATE(1684)] = 101670, - [SMALL_STATE(1685)] = 101708, - [SMALL_STATE(1686)] = 101740, - [SMALL_STATE(1687)] = 101770, - [SMALL_STATE(1688)] = 101808, - [SMALL_STATE(1689)] = 101846, - [SMALL_STATE(1690)] = 101876, - [SMALL_STATE(1691)] = 101914, - [SMALL_STATE(1692)] = 101944, - [SMALL_STATE(1693)] = 101974, - [SMALL_STATE(1694)] = 102012, - [SMALL_STATE(1695)] = 102038, - [SMALL_STATE(1696)] = 102076, - [SMALL_STATE(1697)] = 102106, - [SMALL_STATE(1698)] = 102136, - [SMALL_STATE(1699)] = 102166, - [SMALL_STATE(1700)] = 102204, - [SMALL_STATE(1701)] = 102242, - [SMALL_STATE(1702)] = 102280, - [SMALL_STATE(1703)] = 102310, - [SMALL_STATE(1704)] = 102340, - [SMALL_STATE(1705)] = 102364, - [SMALL_STATE(1706)] = 102402, - [SMALL_STATE(1707)] = 102432, - [SMALL_STATE(1708)] = 102470, - [SMALL_STATE(1709)] = 102500, - [SMALL_STATE(1710)] = 102538, - [SMALL_STATE(1711)] = 102558, - [SMALL_STATE(1712)] = 102582, - [SMALL_STATE(1713)] = 102620, - [SMALL_STATE(1714)] = 102658, - [SMALL_STATE(1715)] = 102696, - [SMALL_STATE(1716)] = 102734, - [SMALL_STATE(1717)] = 102772, - [SMALL_STATE(1718)] = 102810, - [SMALL_STATE(1719)] = 102848, - [SMALL_STATE(1720)] = 102865, - [SMALL_STATE(1721)] = 102894, - [SMALL_STATE(1722)] = 102919, - [SMALL_STATE(1723)] = 102936, - [SMALL_STATE(1724)] = 102953, - [SMALL_STATE(1725)] = 102978, - [SMALL_STATE(1726)] = 103003, - [SMALL_STATE(1727)] = 103026, - [SMALL_STATE(1728)] = 103051, - [SMALL_STATE(1729)] = 103072, - [SMALL_STATE(1730)] = 103089, - [SMALL_STATE(1731)] = 103108, - [SMALL_STATE(1732)] = 103133, - [SMALL_STATE(1733)] = 103158, - [SMALL_STATE(1734)] = 103183, - [SMALL_STATE(1735)] = 103212, - [SMALL_STATE(1736)] = 103229, - [SMALL_STATE(1737)] = 103252, - [SMALL_STATE(1738)] = 103273, - [SMALL_STATE(1739)] = 103290, - [SMALL_STATE(1740)] = 103315, - [SMALL_STATE(1741)] = 103334, - [SMALL_STATE(1742)] = 103352, - [SMALL_STATE(1743)] = 103374, - [SMALL_STATE(1744)] = 103392, - [SMALL_STATE(1745)] = 103408, - [SMALL_STATE(1746)] = 103432, - [SMALL_STATE(1747)] = 103454, - [SMALL_STATE(1748)] = 103474, - [SMALL_STATE(1749)] = 103490, - [SMALL_STATE(1750)] = 103510, - [SMALL_STATE(1751)] = 103528, - [SMALL_STATE(1752)] = 103552, - [SMALL_STATE(1753)] = 103576, - [SMALL_STATE(1754)] = 103592, - [SMALL_STATE(1755)] = 103610, - [SMALL_STATE(1756)] = 103634, - [SMALL_STATE(1757)] = 103658, - [SMALL_STATE(1758)] = 103682, - [SMALL_STATE(1759)] = 103698, - [SMALL_STATE(1760)] = 103722, - [SMALL_STATE(1761)] = 103746, - [SMALL_STATE(1762)] = 103768, - [SMALL_STATE(1763)] = 103792, - [SMALL_STATE(1764)] = 103816, - [SMALL_STATE(1765)] = 103836, - [SMALL_STATE(1766)] = 103852, - [SMALL_STATE(1767)] = 103870, - [SMALL_STATE(1768)] = 103890, - [SMALL_STATE(1769)] = 103912, - [SMALL_STATE(1770)] = 103928, - [SMALL_STATE(1771)] = 103952, - [SMALL_STATE(1772)] = 103974, - [SMALL_STATE(1773)] = 103994, - [SMALL_STATE(1774)] = 104018, - [SMALL_STATE(1775)] = 104038, - [SMALL_STATE(1776)] = 104068, - [SMALL_STATE(1777)] = 104092, - [SMALL_STATE(1778)] = 104121, - [SMALL_STATE(1779)] = 104148, - [SMALL_STATE(1780)] = 104169, - [SMALL_STATE(1781)] = 104198, - [SMALL_STATE(1782)] = 104225, - [SMALL_STATE(1783)] = 104246, - [SMALL_STATE(1784)] = 104269, - [SMALL_STATE(1785)] = 104290, - [SMALL_STATE(1786)] = 104313, - [SMALL_STATE(1787)] = 104342, - [SMALL_STATE(1788)] = 104363, - [SMALL_STATE(1789)] = 104380, - [SMALL_STATE(1790)] = 104403, - [SMALL_STATE(1791)] = 104426, - [SMALL_STATE(1792)] = 104445, - [SMALL_STATE(1793)] = 104474, - [SMALL_STATE(1794)] = 104501, - [SMALL_STATE(1795)] = 104522, - [SMALL_STATE(1796)] = 104543, - [SMALL_STATE(1797)] = 104560, - [SMALL_STATE(1798)] = 104579, - [SMALL_STATE(1799)] = 104600, - [SMALL_STATE(1800)] = 104627, - [SMALL_STATE(1801)] = 104656, - [SMALL_STATE(1802)] = 104683, - [SMALL_STATE(1803)] = 104704, - [SMALL_STATE(1804)] = 104733, - [SMALL_STATE(1805)] = 104756, - [SMALL_STATE(1806)] = 104783, - [SMALL_STATE(1807)] = 104804, - [SMALL_STATE(1808)] = 104821, - [SMALL_STATE(1809)] = 104844, - [SMALL_STATE(1810)] = 104873, - [SMALL_STATE(1811)] = 104896, - [SMALL_STATE(1812)] = 104925, - [SMALL_STATE(1813)] = 104954, - [SMALL_STATE(1814)] = 104983, - [SMALL_STATE(1815)] = 105004, - [SMALL_STATE(1816)] = 105025, - [SMALL_STATE(1817)] = 105052, - [SMALL_STATE(1818)] = 105077, - [SMALL_STATE(1819)] = 105092, - [SMALL_STATE(1820)] = 105117, - [SMALL_STATE(1821)] = 105138, - [SMALL_STATE(1822)] = 105159, - [SMALL_STATE(1823)] = 105180, - [SMALL_STATE(1824)] = 105207, - [SMALL_STATE(1825)] = 105229, - [SMALL_STATE(1826)] = 105251, - [SMALL_STATE(1827)] = 105277, - [SMALL_STATE(1828)] = 105303, - [SMALL_STATE(1829)] = 105321, - [SMALL_STATE(1830)] = 105347, - [SMALL_STATE(1831)] = 105365, - [SMALL_STATE(1832)] = 105391, - [SMALL_STATE(1833)] = 105407, - [SMALL_STATE(1834)] = 105433, - [SMALL_STATE(1835)] = 105451, - [SMALL_STATE(1836)] = 105469, - [SMALL_STATE(1837)] = 105495, - [SMALL_STATE(1838)] = 105513, - [SMALL_STATE(1839)] = 105535, - [SMALL_STATE(1840)] = 105551, - [SMALL_STATE(1841)] = 105571, - [SMALL_STATE(1842)] = 105595, - [SMALL_STATE(1843)] = 105621, - [SMALL_STATE(1844)] = 105641, - [SMALL_STATE(1845)] = 105659, - [SMALL_STATE(1846)] = 105683, - [SMALL_STATE(1847)] = 105709, - [SMALL_STATE(1848)] = 105731, - [SMALL_STATE(1849)] = 105753, - [SMALL_STATE(1850)] = 105779, - [SMALL_STATE(1851)] = 105805, - [SMALL_STATE(1852)] = 105827, - [SMALL_STATE(1853)] = 105849, - [SMALL_STATE(1854)] = 105867, - [SMALL_STATE(1855)] = 105893, - [SMALL_STATE(1856)] = 105919, - [SMALL_STATE(1857)] = 105945, - [SMALL_STATE(1858)] = 105971, - [SMALL_STATE(1859)] = 105993, - [SMALL_STATE(1860)] = 106015, - [SMALL_STATE(1861)] = 106041, - [SMALL_STATE(1862)] = 106059, - [SMALL_STATE(1863)] = 106085, - [SMALL_STATE(1864)] = 106103, - [SMALL_STATE(1865)] = 106121, - [SMALL_STATE(1866)] = 106145, - [SMALL_STATE(1867)] = 106169, - [SMALL_STATE(1868)] = 106191, - [SMALL_STATE(1869)] = 106217, - [SMALL_STATE(1870)] = 106243, - [SMALL_STATE(1871)] = 106261, - [SMALL_STATE(1872)] = 106281, - [SMALL_STATE(1873)] = 106303, - [SMALL_STATE(1874)] = 106321, - [SMALL_STATE(1875)] = 106338, - [SMALL_STATE(1876)] = 106355, - [SMALL_STATE(1877)] = 106368, - [SMALL_STATE(1878)] = 106389, - [SMALL_STATE(1879)] = 106406, - [SMALL_STATE(1880)] = 106419, - [SMALL_STATE(1881)] = 106440, - [SMALL_STATE(1882)] = 106453, - [SMALL_STATE(1883)] = 106474, - [SMALL_STATE(1884)] = 106493, - [SMALL_STATE(1885)] = 106510, - [SMALL_STATE(1886)] = 106523, - [SMALL_STATE(1887)] = 106546, - [SMALL_STATE(1888)] = 106563, - [SMALL_STATE(1889)] = 106580, - [SMALL_STATE(1890)] = 106597, - [SMALL_STATE(1891)] = 106614, - [SMALL_STATE(1892)] = 106631, - [SMALL_STATE(1893)] = 106648, - [SMALL_STATE(1894)] = 106665, - [SMALL_STATE(1895)] = 106682, - [SMALL_STATE(1896)] = 106705, - [SMALL_STATE(1897)] = 106726, - [SMALL_STATE(1898)] = 106743, - [SMALL_STATE(1899)] = 106764, - [SMALL_STATE(1900)] = 106785, - [SMALL_STATE(1901)] = 106806, - [SMALL_STATE(1902)] = 106819, - [SMALL_STATE(1903)] = 106840, - [SMALL_STATE(1904)] = 106861, - [SMALL_STATE(1905)] = 106878, - [SMALL_STATE(1906)] = 106893, - [SMALL_STATE(1907)] = 106910, - [SMALL_STATE(1908)] = 106927, - [SMALL_STATE(1909)] = 106944, - [SMALL_STATE(1910)] = 106957, - [SMALL_STATE(1911)] = 106972, - [SMALL_STATE(1912)] = 106989, - [SMALL_STATE(1913)] = 107010, - [SMALL_STATE(1914)] = 107031, - [SMALL_STATE(1915)] = 107054, - [SMALL_STATE(1916)] = 107071, - [SMALL_STATE(1917)] = 107092, - [SMALL_STATE(1918)] = 107113, - [SMALL_STATE(1919)] = 107130, - [SMALL_STATE(1920)] = 107145, - [SMALL_STATE(1921)] = 107166, - [SMALL_STATE(1922)] = 107179, - [SMALL_STATE(1923)] = 107192, - [SMALL_STATE(1924)] = 107213, - [SMALL_STATE(1925)] = 107234, - [SMALL_STATE(1926)] = 107251, - [SMALL_STATE(1927)] = 107264, - [SMALL_STATE(1928)] = 107285, - [SMALL_STATE(1929)] = 107306, - [SMALL_STATE(1930)] = 107323, - [SMALL_STATE(1931)] = 107336, - [SMALL_STATE(1932)] = 107359, - [SMALL_STATE(1933)] = 107380, - [SMALL_STATE(1934)] = 107393, - [SMALL_STATE(1935)] = 107408, - [SMALL_STATE(1936)] = 107429, - [SMALL_STATE(1937)] = 107452, - [SMALL_STATE(1938)] = 107473, - [SMALL_STATE(1939)] = 107494, - [SMALL_STATE(1940)] = 107507, - [SMALL_STATE(1941)] = 107528, - [SMALL_STATE(1942)] = 107543, - [SMALL_STATE(1943)] = 107560, - [SMALL_STATE(1944)] = 107577, - [SMALL_STATE(1945)] = 107594, - [SMALL_STATE(1946)] = 107617, - [SMALL_STATE(1947)] = 107638, - [SMALL_STATE(1948)] = 107651, - [SMALL_STATE(1949)] = 107668, - [SMALL_STATE(1950)] = 107681, - [SMALL_STATE(1951)] = 107702, - [SMALL_STATE(1952)] = 107719, - [SMALL_STATE(1953)] = 107740, - [SMALL_STATE(1954)] = 107757, - [SMALL_STATE(1955)] = 107778, - [SMALL_STATE(1956)] = 107795, - [SMALL_STATE(1957)] = 107808, - [SMALL_STATE(1958)] = 107825, - [SMALL_STATE(1959)] = 107846, - [SMALL_STATE(1960)] = 107863, - [SMALL_STATE(1961)] = 107880, - [SMALL_STATE(1962)] = 107893, - [SMALL_STATE(1963)] = 107906, - [SMALL_STATE(1964)] = 107927, - [SMALL_STATE(1965)] = 107944, - [SMALL_STATE(1966)] = 107957, - [SMALL_STATE(1967)] = 107970, - [SMALL_STATE(1968)] = 107989, - [SMALL_STATE(1969)] = 108010, - [SMALL_STATE(1970)] = 108033, - [SMALL_STATE(1971)] = 108050, - [SMALL_STATE(1972)] = 108063, - [SMALL_STATE(1973)] = 108078, - [SMALL_STATE(1974)] = 108091, - [SMALL_STATE(1975)] = 108104, - [SMALL_STATE(1976)] = 108125, - [SMALL_STATE(1977)] = 108140, - [SMALL_STATE(1978)] = 108153, - [SMALL_STATE(1979)] = 108168, - [SMALL_STATE(1980)] = 108185, - [SMALL_STATE(1981)] = 108202, - [SMALL_STATE(1982)] = 108215, - [SMALL_STATE(1983)] = 108236, - [SMALL_STATE(1984)] = 108248, - [SMALL_STATE(1985)] = 108264, - [SMALL_STATE(1986)] = 108276, - [SMALL_STATE(1987)] = 108288, - [SMALL_STATE(1988)] = 108306, - [SMALL_STATE(1989)] = 108324, - [SMALL_STATE(1990)] = 108344, - [SMALL_STATE(1991)] = 108364, - [SMALL_STATE(1992)] = 108382, - [SMALL_STATE(1993)] = 108402, - [SMALL_STATE(1994)] = 108414, - [SMALL_STATE(1995)] = 108426, - [SMALL_STATE(1996)] = 108438, - [SMALL_STATE(1997)] = 108450, - [SMALL_STATE(1998)] = 108462, - [SMALL_STATE(1999)] = 108474, - [SMALL_STATE(2000)] = 108494, - [SMALL_STATE(2001)] = 108508, - [SMALL_STATE(2002)] = 108520, - [SMALL_STATE(2003)] = 108540, - [SMALL_STATE(2004)] = 108560, - [SMALL_STATE(2005)] = 108576, - [SMALL_STATE(2006)] = 108588, - [SMALL_STATE(2007)] = 108608, - [SMALL_STATE(2008)] = 108620, - [SMALL_STATE(2009)] = 108640, - [SMALL_STATE(2010)] = 108652, - [SMALL_STATE(2011)] = 108664, - [SMALL_STATE(2012)] = 108676, - [SMALL_STATE(2013)] = 108688, - [SMALL_STATE(2014)] = 108708, - [SMALL_STATE(2015)] = 108720, - [SMALL_STATE(2016)] = 108732, - [SMALL_STATE(2017)] = 108752, - [SMALL_STATE(2018)] = 108764, - [SMALL_STATE(2019)] = 108776, - [SMALL_STATE(2020)] = 108788, - [SMALL_STATE(2021)] = 108808, - [SMALL_STATE(2022)] = 108820, - [SMALL_STATE(2023)] = 108840, - [SMALL_STATE(2024)] = 108860, - [SMALL_STATE(2025)] = 108872, - [SMALL_STATE(2026)] = 108888, - [SMALL_STATE(2027)] = 108900, - [SMALL_STATE(2028)] = 108920, - [SMALL_STATE(2029)] = 108936, - [SMALL_STATE(2030)] = 108956, - [SMALL_STATE(2031)] = 108968, - [SMALL_STATE(2032)] = 108986, - [SMALL_STATE(2033)] = 109002, - [SMALL_STATE(2034)] = 109014, - [SMALL_STATE(2035)] = 109034, - [SMALL_STATE(2036)] = 109054, - [SMALL_STATE(2037)] = 109074, - [SMALL_STATE(2038)] = 109094, - [SMALL_STATE(2039)] = 109112, - [SMALL_STATE(2040)] = 109132, - [SMALL_STATE(2041)] = 109150, - [SMALL_STATE(2042)] = 109170, - [SMALL_STATE(2043)] = 109188, - [SMALL_STATE(2044)] = 109200, - [SMALL_STATE(2045)] = 109212, - [SMALL_STATE(2046)] = 109230, - [SMALL_STATE(2047)] = 109242, - [SMALL_STATE(2048)] = 109256, - [SMALL_STATE(2049)] = 109270, - [SMALL_STATE(2050)] = 109286, - [SMALL_STATE(2051)] = 109302, - [SMALL_STATE(2052)] = 109318, - [SMALL_STATE(2053)] = 109330, - [SMALL_STATE(2054)] = 109342, - [SMALL_STATE(2055)] = 109356, - [SMALL_STATE(2056)] = 109368, - [SMALL_STATE(2057)] = 109384, - [SMALL_STATE(2058)] = 109404, - [SMALL_STATE(2059)] = 109422, - [SMALL_STATE(2060)] = 109434, - [SMALL_STATE(2061)] = 109454, - [SMALL_STATE(2062)] = 109472, - [SMALL_STATE(2063)] = 109484, - [SMALL_STATE(2064)] = 109500, - [SMALL_STATE(2065)] = 109512, - [SMALL_STATE(2066)] = 109524, - [SMALL_STATE(2067)] = 109536, - [SMALL_STATE(2068)] = 109552, - [SMALL_STATE(2069)] = 109564, - [SMALL_STATE(2070)] = 109584, - [SMALL_STATE(2071)] = 109600, - [SMALL_STATE(2072)] = 109620, - [SMALL_STATE(2073)] = 109632, - [SMALL_STATE(2074)] = 109644, - [SMALL_STATE(2075)] = 109656, - [SMALL_STATE(2076)] = 109668, - [SMALL_STATE(2077)] = 109684, - [SMALL_STATE(2078)] = 109696, - [SMALL_STATE(2079)] = 109712, - [SMALL_STATE(2080)] = 109732, - [SMALL_STATE(2081)] = 109744, - [SMALL_STATE(2082)] = 109756, - [SMALL_STATE(2083)] = 109768, - [SMALL_STATE(2084)] = 109780, - [SMALL_STATE(2085)] = 109798, - [SMALL_STATE(2086)] = 109810, - [SMALL_STATE(2087)] = 109830, - [SMALL_STATE(2088)] = 109846, - [SMALL_STATE(2089)] = 109858, - [SMALL_STATE(2090)] = 109870, - [SMALL_STATE(2091)] = 109884, - [SMALL_STATE(2092)] = 109902, - [SMALL_STATE(2093)] = 109922, - [SMALL_STATE(2094)] = 109934, - [SMALL_STATE(2095)] = 109946, - [SMALL_STATE(2096)] = 109966, - [SMALL_STATE(2097)] = 109986, - [SMALL_STATE(2098)] = 109998, - [SMALL_STATE(2099)] = 110018, - [SMALL_STATE(2100)] = 110030, - [SMALL_STATE(2101)] = 110048, - [SMALL_STATE(2102)] = 110062, - [SMALL_STATE(2103)] = 110074, - [SMALL_STATE(2104)] = 110085, - [SMALL_STATE(2105)] = 110102, - [SMALL_STATE(2106)] = 110119, - [SMALL_STATE(2107)] = 110134, - [SMALL_STATE(2108)] = 110151, - [SMALL_STATE(2109)] = 110166, - [SMALL_STATE(2110)] = 110181, - [SMALL_STATE(2111)] = 110198, - [SMALL_STATE(2112)] = 110213, - [SMALL_STATE(2113)] = 110228, - [SMALL_STATE(2114)] = 110243, - [SMALL_STATE(2115)] = 110260, - [SMALL_STATE(2116)] = 110275, - [SMALL_STATE(2117)] = 110288, - [SMALL_STATE(2118)] = 110303, - [SMALL_STATE(2119)] = 110320, - [SMALL_STATE(2120)] = 110337, - [SMALL_STATE(2121)] = 110348, - [SMALL_STATE(2122)] = 110359, - [SMALL_STATE(2123)] = 110370, - [SMALL_STATE(2124)] = 110381, - [SMALL_STATE(2125)] = 110398, - [SMALL_STATE(2126)] = 110415, - [SMALL_STATE(2127)] = 110426, - [SMALL_STATE(2128)] = 110437, - [SMALL_STATE(2129)] = 110448, - [SMALL_STATE(2130)] = 110459, - [SMALL_STATE(2131)] = 110470, - [SMALL_STATE(2132)] = 110481, - [SMALL_STATE(2133)] = 110496, - [SMALL_STATE(2134)] = 110507, - [SMALL_STATE(2135)] = 110518, - [SMALL_STATE(2136)] = 110529, - [SMALL_STATE(2137)] = 110540, - [SMALL_STATE(2138)] = 110551, - [SMALL_STATE(2139)] = 110562, - [SMALL_STATE(2140)] = 110573, - [SMALL_STATE(2141)] = 110584, - [SMALL_STATE(2142)] = 110595, - [SMALL_STATE(2143)] = 110606, - [SMALL_STATE(2144)] = 110617, - [SMALL_STATE(2145)] = 110628, - [SMALL_STATE(2146)] = 110639, - [SMALL_STATE(2147)] = 110650, - [SMALL_STATE(2148)] = 110665, - [SMALL_STATE(2149)] = 110682, - [SMALL_STATE(2150)] = 110699, - [SMALL_STATE(2151)] = 110710, - [SMALL_STATE(2152)] = 110721, - [SMALL_STATE(2153)] = 110738, - [SMALL_STATE(2154)] = 110755, - [SMALL_STATE(2155)] = 110770, - [SMALL_STATE(2156)] = 110781, - [SMALL_STATE(2157)] = 110792, - [SMALL_STATE(2158)] = 110803, - [SMALL_STATE(2159)] = 110814, - [SMALL_STATE(2160)] = 110831, - [SMALL_STATE(2161)] = 110848, - [SMALL_STATE(2162)] = 110863, - [SMALL_STATE(2163)] = 110878, - [SMALL_STATE(2164)] = 110895, - [SMALL_STATE(2165)] = 110912, - [SMALL_STATE(2166)] = 110923, - [SMALL_STATE(2167)] = 110934, - [SMALL_STATE(2168)] = 110945, - [SMALL_STATE(2169)] = 110956, - [SMALL_STATE(2170)] = 110967, - [SMALL_STATE(2171)] = 110984, - [SMALL_STATE(2172)] = 110995, - [SMALL_STATE(2173)] = 111012, - [SMALL_STATE(2174)] = 111027, - [SMALL_STATE(2175)] = 111042, - [SMALL_STATE(2176)] = 111053, - [SMALL_STATE(2177)] = 111064, - [SMALL_STATE(2178)] = 111075, - [SMALL_STATE(2179)] = 111086, - [SMALL_STATE(2180)] = 111097, - [SMALL_STATE(2181)] = 111108, - [SMALL_STATE(2182)] = 111119, - [SMALL_STATE(2183)] = 111130, - [SMALL_STATE(2184)] = 111141, - [SMALL_STATE(2185)] = 111152, - [SMALL_STATE(2186)] = 111163, - [SMALL_STATE(2187)] = 111174, - [SMALL_STATE(2188)] = 111185, - [SMALL_STATE(2189)] = 111202, - [SMALL_STATE(2190)] = 111213, - [SMALL_STATE(2191)] = 111230, - [SMALL_STATE(2192)] = 111241, - [SMALL_STATE(2193)] = 111252, - [SMALL_STATE(2194)] = 111263, - [SMALL_STATE(2195)] = 111280, - [SMALL_STATE(2196)] = 111291, - [SMALL_STATE(2197)] = 111302, - [SMALL_STATE(2198)] = 111313, - [SMALL_STATE(2199)] = 111324, - [SMALL_STATE(2200)] = 111335, - [SMALL_STATE(2201)] = 111346, - [SMALL_STATE(2202)] = 111357, - [SMALL_STATE(2203)] = 111368, - [SMALL_STATE(2204)] = 111379, - [SMALL_STATE(2205)] = 111390, - [SMALL_STATE(2206)] = 111401, - [SMALL_STATE(2207)] = 111412, - [SMALL_STATE(2208)] = 111423, - [SMALL_STATE(2209)] = 111434, - [SMALL_STATE(2210)] = 111445, - [SMALL_STATE(2211)] = 111456, - [SMALL_STATE(2212)] = 111467, - [SMALL_STATE(2213)] = 111478, - [SMALL_STATE(2214)] = 111489, - [SMALL_STATE(2215)] = 111504, - [SMALL_STATE(2216)] = 111521, - [SMALL_STATE(2217)] = 111536, - [SMALL_STATE(2218)] = 111551, - [SMALL_STATE(2219)] = 111568, - [SMALL_STATE(2220)] = 111585, - [SMALL_STATE(2221)] = 111600, - [SMALL_STATE(2222)] = 111613, - [SMALL_STATE(2223)] = 111628, - [SMALL_STATE(2224)] = 111645, - [SMALL_STATE(2225)] = 111662, - [SMALL_STATE(2226)] = 111679, - [SMALL_STATE(2227)] = 111696, - [SMALL_STATE(2228)] = 111713, - [SMALL_STATE(2229)] = 111730, - [SMALL_STATE(2230)] = 111747, - [SMALL_STATE(2231)] = 111760, - [SMALL_STATE(2232)] = 111771, - [SMALL_STATE(2233)] = 111785, - [SMALL_STATE(2234)] = 111799, - [SMALL_STATE(2235)] = 111813, - [SMALL_STATE(2236)] = 111827, - [SMALL_STATE(2237)] = 111841, - [SMALL_STATE(2238)] = 111855, - [SMALL_STATE(2239)] = 111869, - [SMALL_STATE(2240)] = 111883, - [SMALL_STATE(2241)] = 111897, - [SMALL_STATE(2242)] = 111911, - [SMALL_STATE(2243)] = 111925, - [SMALL_STATE(2244)] = 111937, - [SMALL_STATE(2245)] = 111949, - [SMALL_STATE(2246)] = 111963, - [SMALL_STATE(2247)] = 111975, - [SMALL_STATE(2248)] = 111985, - [SMALL_STATE(2249)] = 111999, - [SMALL_STATE(2250)] = 112013, - [SMALL_STATE(2251)] = 112027, - [SMALL_STATE(2252)] = 112041, - [SMALL_STATE(2253)] = 112055, - [SMALL_STATE(2254)] = 112069, - [SMALL_STATE(2255)] = 112079, - [SMALL_STATE(2256)] = 112093, - [SMALL_STATE(2257)] = 112107, - [SMALL_STATE(2258)] = 112121, - [SMALL_STATE(2259)] = 112135, - [SMALL_STATE(2260)] = 112149, - [SMALL_STATE(2261)] = 112163, - [SMALL_STATE(2262)] = 112177, - [SMALL_STATE(2263)] = 112191, - [SMALL_STATE(2264)] = 112205, - [SMALL_STATE(2265)] = 112219, - [SMALL_STATE(2266)] = 112233, - [SMALL_STATE(2267)] = 112243, - [SMALL_STATE(2268)] = 112255, - [SMALL_STATE(2269)] = 112269, - [SMALL_STATE(2270)] = 112283, - [SMALL_STATE(2271)] = 112297, - [SMALL_STATE(2272)] = 112311, - [SMALL_STATE(2273)] = 112323, - [SMALL_STATE(2274)] = 112337, - [SMALL_STATE(2275)] = 112351, - [SMALL_STATE(2276)] = 112361, - [SMALL_STATE(2277)] = 112375, - [SMALL_STATE(2278)] = 112387, - [SMALL_STATE(2279)] = 112399, - [SMALL_STATE(2280)] = 112413, - [SMALL_STATE(2281)] = 112427, - [SMALL_STATE(2282)] = 112437, - [SMALL_STATE(2283)] = 112451, - [SMALL_STATE(2284)] = 112465, - [SMALL_STATE(2285)] = 112479, - [SMALL_STATE(2286)] = 112493, - [SMALL_STATE(2287)] = 112507, - [SMALL_STATE(2288)] = 112521, - [SMALL_STATE(2289)] = 112535, - [SMALL_STATE(2290)] = 112549, - [SMALL_STATE(2291)] = 112563, - [SMALL_STATE(2292)] = 112577, - [SMALL_STATE(2293)] = 112591, - [SMALL_STATE(2294)] = 112605, - [SMALL_STATE(2295)] = 112619, - [SMALL_STATE(2296)] = 112633, - [SMALL_STATE(2297)] = 112647, - [SMALL_STATE(2298)] = 112661, - [SMALL_STATE(2299)] = 112675, - [SMALL_STATE(2300)] = 112687, - [SMALL_STATE(2301)] = 112701, - [SMALL_STATE(2302)] = 112715, - [SMALL_STATE(2303)] = 112729, - [SMALL_STATE(2304)] = 112743, - [SMALL_STATE(2305)] = 112757, - [SMALL_STATE(2306)] = 112767, - [SMALL_STATE(2307)] = 112781, - [SMALL_STATE(2308)] = 112793, - [SMALL_STATE(2309)] = 112807, - [SMALL_STATE(2310)] = 112821, - [SMALL_STATE(2311)] = 112835, - [SMALL_STATE(2312)] = 112847, - [SMALL_STATE(2313)] = 112857, - [SMALL_STATE(2314)] = 112871, - [SMALL_STATE(2315)] = 112885, - [SMALL_STATE(2316)] = 112899, - [SMALL_STATE(2317)] = 112913, - [SMALL_STATE(2318)] = 112927, - [SMALL_STATE(2319)] = 112941, - [SMALL_STATE(2320)] = 112955, - [SMALL_STATE(2321)] = 112969, - [SMALL_STATE(2322)] = 112981, - [SMALL_STATE(2323)] = 112995, - [SMALL_STATE(2324)] = 113007, - [SMALL_STATE(2325)] = 113021, - [SMALL_STATE(2326)] = 113035, - [SMALL_STATE(2327)] = 113049, - [SMALL_STATE(2328)] = 113063, - [SMALL_STATE(2329)] = 113077, - [SMALL_STATE(2330)] = 113091, - [SMALL_STATE(2331)] = 113105, - [SMALL_STATE(2332)] = 113119, - [SMALL_STATE(2333)] = 113133, - [SMALL_STATE(2334)] = 113147, - [SMALL_STATE(2335)] = 113161, - [SMALL_STATE(2336)] = 113175, - [SMALL_STATE(2337)] = 113189, - [SMALL_STATE(2338)] = 113203, - [SMALL_STATE(2339)] = 113217, - [SMALL_STATE(2340)] = 113229, - [SMALL_STATE(2341)] = 113243, - [SMALL_STATE(2342)] = 113257, - [SMALL_STATE(2343)] = 113271, - [SMALL_STATE(2344)] = 113285, - [SMALL_STATE(2345)] = 113299, - [SMALL_STATE(2346)] = 113313, - [SMALL_STATE(2347)] = 113327, - [SMALL_STATE(2348)] = 113341, - [SMALL_STATE(2349)] = 113355, - [SMALL_STATE(2350)] = 113369, - [SMALL_STATE(2351)] = 113381, - [SMALL_STATE(2352)] = 113395, - [SMALL_STATE(2353)] = 113409, - [SMALL_STATE(2354)] = 113423, - [SMALL_STATE(2355)] = 113437, - [SMALL_STATE(2356)] = 113447, - [SMALL_STATE(2357)] = 113461, - [SMALL_STATE(2358)] = 113473, - [SMALL_STATE(2359)] = 113487, - [SMALL_STATE(2360)] = 113501, - [SMALL_STATE(2361)] = 113515, - [SMALL_STATE(2362)] = 113529, - [SMALL_STATE(2363)] = 113543, - [SMALL_STATE(2364)] = 113557, - [SMALL_STATE(2365)] = 113571, - [SMALL_STATE(2366)] = 113585, - [SMALL_STATE(2367)] = 113599, - [SMALL_STATE(2368)] = 113613, - [SMALL_STATE(2369)] = 113627, - [SMALL_STATE(2370)] = 113641, - [SMALL_STATE(2371)] = 113655, - [SMALL_STATE(2372)] = 113669, - [SMALL_STATE(2373)] = 113683, - [SMALL_STATE(2374)] = 113697, - [SMALL_STATE(2375)] = 113711, - [SMALL_STATE(2376)] = 113725, - [SMALL_STATE(2377)] = 113739, - [SMALL_STATE(2378)] = 113749, - [SMALL_STATE(2379)] = 113763, - [SMALL_STATE(2380)] = 113777, - [SMALL_STATE(2381)] = 113791, - [SMALL_STATE(2382)] = 113805, - [SMALL_STATE(2383)] = 113819, - [SMALL_STATE(2384)] = 113833, - [SMALL_STATE(2385)] = 113847, - [SMALL_STATE(2386)] = 113861, - [SMALL_STATE(2387)] = 113875, - [SMALL_STATE(2388)] = 113889, - [SMALL_STATE(2389)] = 113903, - [SMALL_STATE(2390)] = 113917, - [SMALL_STATE(2391)] = 113931, - [SMALL_STATE(2392)] = 113945, - [SMALL_STATE(2393)] = 113959, - [SMALL_STATE(2394)] = 113973, - [SMALL_STATE(2395)] = 113985, - [SMALL_STATE(2396)] = 113995, - [SMALL_STATE(2397)] = 114009, - [SMALL_STATE(2398)] = 114023, - [SMALL_STATE(2399)] = 114033, - [SMALL_STATE(2400)] = 114047, - [SMALL_STATE(2401)] = 114061, - [SMALL_STATE(2402)] = 114075, - [SMALL_STATE(2403)] = 114089, - [SMALL_STATE(2404)] = 114103, - [SMALL_STATE(2405)] = 114117, - [SMALL_STATE(2406)] = 114131, - [SMALL_STATE(2407)] = 114145, - [SMALL_STATE(2408)] = 114159, - [SMALL_STATE(2409)] = 114173, - [SMALL_STATE(2410)] = 114187, - [SMALL_STATE(2411)] = 114201, - [SMALL_STATE(2412)] = 114215, - [SMALL_STATE(2413)] = 114229, - [SMALL_STATE(2414)] = 114243, - [SMALL_STATE(2415)] = 114257, - [SMALL_STATE(2416)] = 114271, - [SMALL_STATE(2417)] = 114285, - [SMALL_STATE(2418)] = 114299, - [SMALL_STATE(2419)] = 114313, - [SMALL_STATE(2420)] = 114323, - [SMALL_STATE(2421)] = 114337, - [SMALL_STATE(2422)] = 114351, - [SMALL_STATE(2423)] = 114365, - [SMALL_STATE(2424)] = 114379, - [SMALL_STATE(2425)] = 114393, - [SMALL_STATE(2426)] = 114407, - [SMALL_STATE(2427)] = 114421, - [SMALL_STATE(2428)] = 114435, - [SMALL_STATE(2429)] = 114449, - [SMALL_STATE(2430)] = 114463, - [SMALL_STATE(2431)] = 114477, - [SMALL_STATE(2432)] = 114491, - [SMALL_STATE(2433)] = 114505, - [SMALL_STATE(2434)] = 114515, - [SMALL_STATE(2435)] = 114529, - [SMALL_STATE(2436)] = 114541, - [SMALL_STATE(2437)] = 114555, - [SMALL_STATE(2438)] = 114569, - [SMALL_STATE(2439)] = 114583, - [SMALL_STATE(2440)] = 114597, - [SMALL_STATE(2441)] = 114607, - [SMALL_STATE(2442)] = 114621, - [SMALL_STATE(2443)] = 114635, - [SMALL_STATE(2444)] = 114649, - [SMALL_STATE(2445)] = 114663, - [SMALL_STATE(2446)] = 114677, - [SMALL_STATE(2447)] = 114691, - [SMALL_STATE(2448)] = 114705, - [SMALL_STATE(2449)] = 114719, - [SMALL_STATE(2450)] = 114733, - [SMALL_STATE(2451)] = 114747, - [SMALL_STATE(2452)] = 114761, - [SMALL_STATE(2453)] = 114775, - [SMALL_STATE(2454)] = 114789, - [SMALL_STATE(2455)] = 114803, - [SMALL_STATE(2456)] = 114815, - [SMALL_STATE(2457)] = 114829, - [SMALL_STATE(2458)] = 114843, - [SMALL_STATE(2459)] = 114855, - [SMALL_STATE(2460)] = 114869, - [SMALL_STATE(2461)] = 114883, - [SMALL_STATE(2462)] = 114897, - [SMALL_STATE(2463)] = 114911, - [SMALL_STATE(2464)] = 114925, - [SMALL_STATE(2465)] = 114939, - [SMALL_STATE(2466)] = 114953, - [SMALL_STATE(2467)] = 114967, - [SMALL_STATE(2468)] = 114981, - [SMALL_STATE(2469)] = 114995, - [SMALL_STATE(2470)] = 115009, - [SMALL_STATE(2471)] = 115023, - [SMALL_STATE(2472)] = 115037, - [SMALL_STATE(2473)] = 115051, - [SMALL_STATE(2474)] = 115065, - [SMALL_STATE(2475)] = 115079, - [SMALL_STATE(2476)] = 115093, - [SMALL_STATE(2477)] = 115107, - [SMALL_STATE(2478)] = 115121, - [SMALL_STATE(2479)] = 115135, - [SMALL_STATE(2480)] = 115149, - [SMALL_STATE(2481)] = 115163, - [SMALL_STATE(2482)] = 115172, - [SMALL_STATE(2483)] = 115181, - [SMALL_STATE(2484)] = 115190, - [SMALL_STATE(2485)] = 115199, - [SMALL_STATE(2486)] = 115208, - [SMALL_STATE(2487)] = 115219, - [SMALL_STATE(2488)] = 115228, - [SMALL_STATE(2489)] = 115237, - [SMALL_STATE(2490)] = 115248, - [SMALL_STATE(2491)] = 115257, - [SMALL_STATE(2492)] = 115266, - [SMALL_STATE(2493)] = 115275, - [SMALL_STATE(2494)] = 115284, - [SMALL_STATE(2495)] = 115295, - [SMALL_STATE(2496)] = 115304, - [SMALL_STATE(2497)] = 115315, - [SMALL_STATE(2498)] = 115326, - [SMALL_STATE(2499)] = 115335, - [SMALL_STATE(2500)] = 115344, - [SMALL_STATE(2501)] = 115353, - [SMALL_STATE(2502)] = 115362, - [SMALL_STATE(2503)] = 115373, - [SMALL_STATE(2504)] = 115382, - [SMALL_STATE(2505)] = 115391, - [SMALL_STATE(2506)] = 115400, - [SMALL_STATE(2507)] = 115409, - [SMALL_STATE(2508)] = 115418, - [SMALL_STATE(2509)] = 115429, - [SMALL_STATE(2510)] = 115438, - [SMALL_STATE(2511)] = 115449, - [SMALL_STATE(2512)] = 115458, - [SMALL_STATE(2513)] = 115467, - [SMALL_STATE(2514)] = 115478, - [SMALL_STATE(2515)] = 115487, - [SMALL_STATE(2516)] = 115498, - [SMALL_STATE(2517)] = 115507, - [SMALL_STATE(2518)] = 115518, - [SMALL_STATE(2519)] = 115527, - [SMALL_STATE(2520)] = 115536, - [SMALL_STATE(2521)] = 115545, - [SMALL_STATE(2522)] = 115556, - [SMALL_STATE(2523)] = 115567, - [SMALL_STATE(2524)] = 115576, - [SMALL_STATE(2525)] = 115585, - [SMALL_STATE(2526)] = 115594, - [SMALL_STATE(2527)] = 115603, - [SMALL_STATE(2528)] = 115612, - [SMALL_STATE(2529)] = 115621, - [SMALL_STATE(2530)] = 115630, - [SMALL_STATE(2531)] = 115639, - [SMALL_STATE(2532)] = 115648, - [SMALL_STATE(2533)] = 115657, - [SMALL_STATE(2534)] = 115666, - [SMALL_STATE(2535)] = 115675, - [SMALL_STATE(2536)] = 115684, - [SMALL_STATE(2537)] = 115693, - [SMALL_STATE(2538)] = 115702, - [SMALL_STATE(2539)] = 115711, - [SMALL_STATE(2540)] = 115720, - [SMALL_STATE(2541)] = 115731, - [SMALL_STATE(2542)] = 115740, - [SMALL_STATE(2543)] = 115749, - [SMALL_STATE(2544)] = 115760, - [SMALL_STATE(2545)] = 115769, - [SMALL_STATE(2546)] = 115778, - [SMALL_STATE(2547)] = 115787, - [SMALL_STATE(2548)] = 115796, - [SMALL_STATE(2549)] = 115807, - [SMALL_STATE(2550)] = 115816, - [SMALL_STATE(2551)] = 115827, - [SMALL_STATE(2552)] = 115838, - [SMALL_STATE(2553)] = 115849, - [SMALL_STATE(2554)] = 115860, - [SMALL_STATE(2555)] = 115869, - [SMALL_STATE(2556)] = 115878, - [SMALL_STATE(2557)] = 115889, - [SMALL_STATE(2558)] = 115898, - [SMALL_STATE(2559)] = 115907, - [SMALL_STATE(2560)] = 115916, - [SMALL_STATE(2561)] = 115925, - [SMALL_STATE(2562)] = 115934, - [SMALL_STATE(2563)] = 115943, - [SMALL_STATE(2564)] = 115952, - [SMALL_STATE(2565)] = 115961, - [SMALL_STATE(2566)] = 115970, - [SMALL_STATE(2567)] = 115979, - [SMALL_STATE(2568)] = 115990, - [SMALL_STATE(2569)] = 115999, - [SMALL_STATE(2570)] = 116008, - [SMALL_STATE(2571)] = 116017, - [SMALL_STATE(2572)] = 116026, - [SMALL_STATE(2573)] = 116035, - [SMALL_STATE(2574)] = 116044, - [SMALL_STATE(2575)] = 116053, - [SMALL_STATE(2576)] = 116062, - [SMALL_STATE(2577)] = 116073, - [SMALL_STATE(2578)] = 116082, - [SMALL_STATE(2579)] = 116093, - [SMALL_STATE(2580)] = 116104, - [SMALL_STATE(2581)] = 116113, - [SMALL_STATE(2582)] = 116122, - [SMALL_STATE(2583)] = 116130, - [SMALL_STATE(2584)] = 116138, - [SMALL_STATE(2585)] = 116146, - [SMALL_STATE(2586)] = 116154, - [SMALL_STATE(2587)] = 116162, - [SMALL_STATE(2588)] = 116170, - [SMALL_STATE(2589)] = 116178, - [SMALL_STATE(2590)] = 116186, - [SMALL_STATE(2591)] = 116194, - [SMALL_STATE(2592)] = 116202, - [SMALL_STATE(2593)] = 116210, - [SMALL_STATE(2594)] = 116218, - [SMALL_STATE(2595)] = 116226, - [SMALL_STATE(2596)] = 116234, - [SMALL_STATE(2597)] = 116242, - [SMALL_STATE(2598)] = 116250, - [SMALL_STATE(2599)] = 116258, - [SMALL_STATE(2600)] = 116266, - [SMALL_STATE(2601)] = 116274, - [SMALL_STATE(2602)] = 116282, - [SMALL_STATE(2603)] = 116290, - [SMALL_STATE(2604)] = 116298, - [SMALL_STATE(2605)] = 116306, - [SMALL_STATE(2606)] = 116314, - [SMALL_STATE(2607)] = 116322, - [SMALL_STATE(2608)] = 116330, - [SMALL_STATE(2609)] = 116338, - [SMALL_STATE(2610)] = 116346, - [SMALL_STATE(2611)] = 116354, - [SMALL_STATE(2612)] = 116362, - [SMALL_STATE(2613)] = 116370, - [SMALL_STATE(2614)] = 116378, - [SMALL_STATE(2615)] = 116386, - [SMALL_STATE(2616)] = 116394, - [SMALL_STATE(2617)] = 116402, - [SMALL_STATE(2618)] = 116410, - [SMALL_STATE(2619)] = 116418, - [SMALL_STATE(2620)] = 116426, - [SMALL_STATE(2621)] = 116434, - [SMALL_STATE(2622)] = 116442, - [SMALL_STATE(2623)] = 116450, - [SMALL_STATE(2624)] = 116458, - [SMALL_STATE(2625)] = 116466, - [SMALL_STATE(2626)] = 116474, - [SMALL_STATE(2627)] = 116482, - [SMALL_STATE(2628)] = 116490, - [SMALL_STATE(2629)] = 116498, - [SMALL_STATE(2630)] = 116506, - [SMALL_STATE(2631)] = 116514, - [SMALL_STATE(2632)] = 116522, - [SMALL_STATE(2633)] = 116530, - [SMALL_STATE(2634)] = 116538, - [SMALL_STATE(2635)] = 116546, - [SMALL_STATE(2636)] = 116554, - [SMALL_STATE(2637)] = 116562, - [SMALL_STATE(2638)] = 116570, - [SMALL_STATE(2639)] = 116578, - [SMALL_STATE(2640)] = 116586, - [SMALL_STATE(2641)] = 116594, - [SMALL_STATE(2642)] = 116602, - [SMALL_STATE(2643)] = 116610, - [SMALL_STATE(2644)] = 116618, - [SMALL_STATE(2645)] = 116626, - [SMALL_STATE(2646)] = 116634, - [SMALL_STATE(2647)] = 116642, - [SMALL_STATE(2648)] = 116650, - [SMALL_STATE(2649)] = 116658, - [SMALL_STATE(2650)] = 116666, - [SMALL_STATE(2651)] = 116674, - [SMALL_STATE(2652)] = 116682, - [SMALL_STATE(2653)] = 116690, - [SMALL_STATE(2654)] = 116698, - [SMALL_STATE(2655)] = 116706, - [SMALL_STATE(2656)] = 116714, - [SMALL_STATE(2657)] = 116722, - [SMALL_STATE(2658)] = 116730, - [SMALL_STATE(2659)] = 116738, - [SMALL_STATE(2660)] = 116746, - [SMALL_STATE(2661)] = 116754, - [SMALL_STATE(2662)] = 116762, - [SMALL_STATE(2663)] = 116770, - [SMALL_STATE(2664)] = 116778, - [SMALL_STATE(2665)] = 116786, - [SMALL_STATE(2666)] = 116794, - [SMALL_STATE(2667)] = 116802, - [SMALL_STATE(2668)] = 116810, - [SMALL_STATE(2669)] = 116818, - [SMALL_STATE(2670)] = 116826, - [SMALL_STATE(2671)] = 116834, - [SMALL_STATE(2672)] = 116842, - [SMALL_STATE(2673)] = 116850, - [SMALL_STATE(2674)] = 116858, - [SMALL_STATE(2675)] = 116866, - [SMALL_STATE(2676)] = 116874, - [SMALL_STATE(2677)] = 116882, - [SMALL_STATE(2678)] = 116890, - [SMALL_STATE(2679)] = 116898, - [SMALL_STATE(2680)] = 116906, - [SMALL_STATE(2681)] = 116914, - [SMALL_STATE(2682)] = 116922, - [SMALL_STATE(2683)] = 116930, - [SMALL_STATE(2684)] = 116938, - [SMALL_STATE(2685)] = 116946, - [SMALL_STATE(2686)] = 116954, - [SMALL_STATE(2687)] = 116962, - [SMALL_STATE(2688)] = 116970, - [SMALL_STATE(2689)] = 116978, - [SMALL_STATE(2690)] = 116986, - [SMALL_STATE(2691)] = 116994, - [SMALL_STATE(2692)] = 117002, - [SMALL_STATE(2693)] = 117010, - [SMALL_STATE(2694)] = 117018, - [SMALL_STATE(2695)] = 117026, - [SMALL_STATE(2696)] = 117034, - [SMALL_STATE(2697)] = 117042, - [SMALL_STATE(2698)] = 117050, - [SMALL_STATE(2699)] = 117058, - [SMALL_STATE(2700)] = 117066, - [SMALL_STATE(2701)] = 117074, - [SMALL_STATE(2702)] = 117082, - [SMALL_STATE(2703)] = 117090, - [SMALL_STATE(2704)] = 117098, - [SMALL_STATE(2705)] = 117106, - [SMALL_STATE(2706)] = 117114, - [SMALL_STATE(2707)] = 117122, - [SMALL_STATE(2708)] = 117130, - [SMALL_STATE(2709)] = 117138, - [SMALL_STATE(2710)] = 117146, - [SMALL_STATE(2711)] = 117154, - [SMALL_STATE(2712)] = 117162, - [SMALL_STATE(2713)] = 117170, - [SMALL_STATE(2714)] = 117178, - [SMALL_STATE(2715)] = 117186, - [SMALL_STATE(2716)] = 117194, - [SMALL_STATE(2717)] = 117202, - [SMALL_STATE(2718)] = 117210, - [SMALL_STATE(2719)] = 117218, - [SMALL_STATE(2720)] = 117226, - [SMALL_STATE(2721)] = 117234, - [SMALL_STATE(2722)] = 117242, - [SMALL_STATE(2723)] = 117250, - [SMALL_STATE(2724)] = 117258, - [SMALL_STATE(2725)] = 117266, - [SMALL_STATE(2726)] = 117274, - [SMALL_STATE(2727)] = 117282, - [SMALL_STATE(2728)] = 117290, - [SMALL_STATE(2729)] = 117298, - [SMALL_STATE(2730)] = 117306, - [SMALL_STATE(2731)] = 117314, - [SMALL_STATE(2732)] = 117322, - [SMALL_STATE(2733)] = 117330, - [SMALL_STATE(2734)] = 117338, - [SMALL_STATE(2735)] = 117346, - [SMALL_STATE(2736)] = 117354, - [SMALL_STATE(2737)] = 117362, - [SMALL_STATE(2738)] = 117370, - [SMALL_STATE(2739)] = 117378, - [SMALL_STATE(2740)] = 117386, - [SMALL_STATE(2741)] = 117394, - [SMALL_STATE(2742)] = 117402, - [SMALL_STATE(2743)] = 117410, - [SMALL_STATE(2744)] = 117418, - [SMALL_STATE(2745)] = 117426, - [SMALL_STATE(2746)] = 117434, - [SMALL_STATE(2747)] = 117442, - [SMALL_STATE(2748)] = 117450, - [SMALL_STATE(2749)] = 117458, - [SMALL_STATE(2750)] = 117466, - [SMALL_STATE(2751)] = 117474, - [SMALL_STATE(2752)] = 117482, - [SMALL_STATE(2753)] = 117490, - [SMALL_STATE(2754)] = 117498, - [SMALL_STATE(2755)] = 117506, - [SMALL_STATE(2756)] = 117514, - [SMALL_STATE(2757)] = 117522, - [SMALL_STATE(2758)] = 117530, - [SMALL_STATE(2759)] = 117538, - [SMALL_STATE(2760)] = 117546, - [SMALL_STATE(2761)] = 117554, - [SMALL_STATE(2762)] = 117562, - [SMALL_STATE(2763)] = 117570, - [SMALL_STATE(2764)] = 117578, - [SMALL_STATE(2765)] = 117586, - [SMALL_STATE(2766)] = 117594, - [SMALL_STATE(2767)] = 117602, - [SMALL_STATE(2768)] = 117610, - [SMALL_STATE(2769)] = 117618, - [SMALL_STATE(2770)] = 117626, - [SMALL_STATE(2771)] = 117634, - [SMALL_STATE(2772)] = 117642, - [SMALL_STATE(2773)] = 117650, - [SMALL_STATE(2774)] = 117658, - [SMALL_STATE(2775)] = 117666, - [SMALL_STATE(2776)] = 117674, + [SMALL_STATE(185)] = 0, + [SMALL_STATE(186)] = 120, + [SMALL_STATE(187)] = 244, + [SMALL_STATE(188)] = 368, + [SMALL_STATE(189)] = 494, + [SMALL_STATE(190)] = 618, + [SMALL_STATE(191)] = 742, + [SMALL_STATE(192)] = 870, + [SMALL_STATE(193)] = 996, + [SMALL_STATE(194)] = 1116, + [SMALL_STATE(195)] = 1244, + [SMALL_STATE(196)] = 1364, + [SMALL_STATE(197)] = 1490, + [SMALL_STATE(198)] = 1614, + [SMALL_STATE(199)] = 1740, + [SMALL_STATE(200)] = 1864, + [SMALL_STATE(201)] = 1988, + [SMALL_STATE(202)] = 2114, + [SMALL_STATE(203)] = 2238, + [SMALL_STATE(204)] = 2362, + [SMALL_STATE(205)] = 2488, + [SMALL_STATE(206)] = 2612, + [SMALL_STATE(207)] = 2736, + [SMALL_STATE(208)] = 2862, + [SMALL_STATE(209)] = 2986, + [SMALL_STATE(210)] = 3110, + [SMALL_STATE(211)] = 3236, + [SMALL_STATE(212)] = 3360, + [SMALL_STATE(213)] = 3484, + [SMALL_STATE(214)] = 3610, + [SMALL_STATE(215)] = 3734, + [SMALL_STATE(216)] = 3858, + [SMALL_STATE(217)] = 3982, + [SMALL_STATE(218)] = 4106, + [SMALL_STATE(219)] = 4213, + [SMALL_STATE(220)] = 4320, + [SMALL_STATE(221)] = 4436, + [SMALL_STATE(222)] = 4552, + [SMALL_STATE(223)] = 4668, + [SMALL_STATE(224)] = 4784, + [SMALL_STATE(225)] = 4900, + [SMALL_STATE(226)] = 5016, + [SMALL_STATE(227)] = 5132, + [SMALL_STATE(228)] = 5248, + [SMALL_STATE(229)] = 5364, + [SMALL_STATE(230)] = 5480, + [SMALL_STATE(231)] = 5593, + [SMALL_STATE(232)] = 5708, + [SMALL_STATE(233)] = 5813, + [SMALL_STATE(234)] = 5926, + [SMALL_STATE(235)] = 6039, + [SMALL_STATE(236)] = 6152, + [SMALL_STATE(237)] = 6265, + [SMALL_STATE(238)] = 6378, + [SMALL_STATE(239)] = 6491, + [SMALL_STATE(240)] = 6606, + [SMALL_STATE(241)] = 6719, + [SMALL_STATE(242)] = 6832, + [SMALL_STATE(243)] = 6943, + [SMALL_STATE(244)] = 7056, + [SMALL_STATE(245)] = 7171, + [SMALL_STATE(246)] = 7284, + [SMALL_STATE(247)] = 7397, + [SMALL_STATE(248)] = 7510, + [SMALL_STATE(249)] = 7623, + [SMALL_STATE(250)] = 7738, + [SMALL_STATE(251)] = 7851, + [SMALL_STATE(252)] = 7968, + [SMALL_STATE(253)] = 8083, + [SMALL_STATE(254)] = 8198, + [SMALL_STATE(255)] = 8303, + [SMALL_STATE(256)] = 8416, + [SMALL_STATE(257)] = 8531, + [SMALL_STATE(258)] = 8646, + [SMALL_STATE(259)] = 8759, + [SMALL_STATE(260)] = 8872, + [SMALL_STATE(261)] = 8987, + [SMALL_STATE(262)] = 9100, + [SMALL_STATE(263)] = 9213, + [SMALL_STATE(264)] = 9326, + [SMALL_STATE(265)] = 9439, + [SMALL_STATE(266)] = 9552, + [SMALL_STATE(267)] = 9665, + [SMALL_STATE(268)] = 9778, + [SMALL_STATE(269)] = 9890, + [SMALL_STATE(270)] = 10004, + [SMALL_STATE(271)] = 10116, + [SMALL_STATE(272)] = 10228, + [SMALL_STATE(273)] = 10340, + [SMALL_STATE(274)] = 10454, + [SMALL_STATE(275)] = 10566, + [SMALL_STATE(276)] = 10682, + [SMALL_STATE(277)] = 10794, + [SMALL_STATE(278)] = 10906, + [SMALL_STATE(279)] = 11018, + [SMALL_STATE(280)] = 11130, + [SMALL_STATE(281)] = 11242, + [SMALL_STATE(282)] = 11358, + [SMALL_STATE(283)] = 11472, + [SMALL_STATE(284)] = 11584, + [SMALL_STATE(285)] = 11700, + [SMALL_STATE(286)] = 11812, + [SMALL_STATE(287)] = 11924, + [SMALL_STATE(288)] = 12036, + [SMALL_STATE(289)] = 12148, + [SMALL_STATE(290)] = 12260, + [SMALL_STATE(291)] = 12374, + [SMALL_STATE(292)] = 12486, + [SMALL_STATE(293)] = 12598, + [SMALL_STATE(294)] = 12710, + [SMALL_STATE(295)] = 12822, + [SMALL_STATE(296)] = 12934, + [SMALL_STATE(297)] = 13046, + [SMALL_STATE(298)] = 13158, + [SMALL_STATE(299)] = 13272, + [SMALL_STATE(300)] = 13384, + [SMALL_STATE(301)] = 13500, + [SMALL_STATE(302)] = 13612, + [SMALL_STATE(303)] = 13724, + [SMALL_STATE(304)] = 13836, + [SMALL_STATE(305)] = 13948, + [SMALL_STATE(306)] = 14060, + [SMALL_STATE(307)] = 14176, + [SMALL_STATE(308)] = 14290, + [SMALL_STATE(309)] = 14402, + [SMALL_STATE(310)] = 14514, + [SMALL_STATE(311)] = 14626, + [SMALL_STATE(312)] = 14738, + [SMALL_STATE(313)] = 14850, + [SMALL_STATE(314)] = 14964, + [SMALL_STATE(315)] = 15076, + [SMALL_STATE(316)] = 15188, + [SMALL_STATE(317)] = 15300, + [SMALL_STATE(318)] = 15412, + [SMALL_STATE(319)] = 15524, + [SMALL_STATE(320)] = 15638, + [SMALL_STATE(321)] = 15750, + [SMALL_STATE(322)] = 15866, + [SMALL_STATE(323)] = 15975, + [SMALL_STATE(324)] = 16084, + [SMALL_STATE(325)] = 16181, + [SMALL_STATE(326)] = 16290, + [SMALL_STATE(327)] = 16399, + [SMALL_STATE(328)] = 16508, + [SMALL_STATE(329)] = 16617, + [SMALL_STATE(330)] = 16726, + [SMALL_STATE(331)] = 16835, + [SMALL_STATE(332)] = 16940, + [SMALL_STATE(333)] = 17049, + [SMALL_STATE(334)] = 17158, + [SMALL_STATE(335)] = 17263, + [SMALL_STATE(336)] = 17372, + [SMALL_STATE(337)] = 17481, + [SMALL_STATE(338)] = 17590, + [SMALL_STATE(339)] = 17699, + [SMALL_STATE(340)] = 17808, + [SMALL_STATE(341)] = 17917, + [SMALL_STATE(342)] = 18026, + [SMALL_STATE(343)] = 18135, + [SMALL_STATE(344)] = 18244, + [SMALL_STATE(345)] = 18352, + [SMALL_STATE(346)] = 18460, + [SMALL_STATE(347)] = 18568, + [SMALL_STATE(348)] = 18676, + [SMALL_STATE(349)] = 18784, + [SMALL_STATE(350)] = 18892, + [SMALL_STATE(351)] = 19000, + [SMALL_STATE(352)] = 19106, + [SMALL_STATE(353)] = 19212, + [SMALL_STATE(354)] = 19320, + [SMALL_STATE(355)] = 19428, + [SMALL_STATE(356)] = 19536, + [SMALL_STATE(357)] = 19644, + [SMALL_STATE(358)] = 19752, + [SMALL_STATE(359)] = 19860, + [SMALL_STATE(360)] = 19968, + [SMALL_STATE(361)] = 20074, + [SMALL_STATE(362)] = 20182, + [SMALL_STATE(363)] = 20290, + [SMALL_STATE(364)] = 20398, + [SMALL_STATE(365)] = 20506, + [SMALL_STATE(366)] = 20614, + [SMALL_STATE(367)] = 20722, + [SMALL_STATE(368)] = 20827, + [SMALL_STATE(369)] = 20934, + [SMALL_STATE(370)] = 21041, + [SMALL_STATE(371)] = 21148, + [SMALL_STATE(372)] = 21243, + [SMALL_STATE(373)] = 21348, + [SMALL_STATE(374)] = 21455, + [SMALL_STATE(375)] = 21562, + [SMALL_STATE(376)] = 21669, + [SMALL_STATE(377)] = 21776, + [SMALL_STATE(378)] = 21881, + [SMALL_STATE(379)] = 21988, + [SMALL_STATE(380)] = 22095, + [SMALL_STATE(381)] = 22202, + [SMALL_STATE(382)] = 22309, + [SMALL_STATE(383)] = 22416, + [SMALL_STATE(384)] = 22523, + [SMALL_STATE(385)] = 22630, + [SMALL_STATE(386)] = 22725, + [SMALL_STATE(387)] = 22832, + [SMALL_STATE(388)] = 22939, + [SMALL_STATE(389)] = 23046, + [SMALL_STATE(390)] = 23153, + [SMALL_STATE(391)] = 23260, + [SMALL_STATE(392)] = 23367, + [SMALL_STATE(393)] = 23474, + [SMALL_STATE(394)] = 23581, + [SMALL_STATE(395)] = 23686, + [SMALL_STATE(396)] = 23793, + [SMALL_STATE(397)] = 23900, + [SMALL_STATE(398)] = 24005, + [SMALL_STATE(399)] = 24112, + [SMALL_STATE(400)] = 24219, + [SMALL_STATE(401)] = 24326, + [SMALL_STATE(402)] = 24431, + [SMALL_STATE(403)] = 24538, + [SMALL_STATE(404)] = 24645, + [SMALL_STATE(405)] = 24752, + [SMALL_STATE(406)] = 24846, + [SMALL_STATE(407)] = 24948, + [SMALL_STATE(408)] = 25050, + [SMALL_STATE(409)] = 25152, + [SMALL_STATE(410)] = 25256, + [SMALL_STATE(411)] = 25360, + [SMALL_STATE(412)] = 25462, + [SMALL_STATE(413)] = 25564, + [SMALL_STATE(414)] = 25658, + [SMALL_STATE(415)] = 25752, + [SMALL_STATE(416)] = 25854, + [SMALL_STATE(417)] = 25956, + [SMALL_STATE(418)] = 26060, + [SMALL_STATE(419)] = 26162, + [SMALL_STATE(420)] = 26264, + [SMALL_STATE(421)] = 26366, + [SMALL_STATE(422)] = 26468, + [SMALL_STATE(423)] = 26572, + [SMALL_STATE(424)] = 26674, + [SMALL_STATE(425)] = 26776, + [SMALL_STATE(426)] = 26880, + [SMALL_STATE(427)] = 26982, + [SMALL_STATE(428)] = 27084, + [SMALL_STATE(429)] = 27186, + [SMALL_STATE(430)] = 27290, + [SMALL_STATE(431)] = 27392, + [SMALL_STATE(432)] = 27494, + [SMALL_STATE(433)] = 27590, + [SMALL_STATE(434)] = 27692, + [SMALL_STATE(435)] = 27794, + [SMALL_STATE(436)] = 27896, + [SMALL_STATE(437)] = 27998, + [SMALL_STATE(438)] = 28100, + [SMALL_STATE(439)] = 28202, + [SMALL_STATE(440)] = 28304, + [SMALL_STATE(441)] = 28406, + [SMALL_STATE(442)] = 28508, + [SMALL_STATE(443)] = 28612, + [SMALL_STATE(444)] = 28716, + [SMALL_STATE(445)] = 28820, + [SMALL_STATE(446)] = 28914, + [SMALL_STATE(447)] = 29018, + [SMALL_STATE(448)] = 29122, + [SMALL_STATE(449)] = 29226, + [SMALL_STATE(450)] = 29330, + [SMALL_STATE(451)] = 29434, + [SMALL_STATE(452)] = 29538, + [SMALL_STATE(453)] = 29642, + [SMALL_STATE(454)] = 29746, + [SMALL_STATE(455)] = 29850, + [SMALL_STATE(456)] = 29954, + [SMALL_STATE(457)] = 30058, + [SMALL_STATE(458)] = 30162, + [SMALL_STATE(459)] = 30264, + [SMALL_STATE(460)] = 30365, + [SMALL_STATE(461)] = 30440, + [SMALL_STATE(462)] = 30515, + [SMALL_STATE(463)] = 30616, + [SMALL_STATE(464)] = 30717, + [SMALL_STATE(465)] = 30818, + [SMALL_STATE(466)] = 30919, + [SMALL_STATE(467)] = 31020, + [SMALL_STATE(468)] = 31095, + [SMALL_STATE(469)] = 31196, + [SMALL_STATE(470)] = 31297, + [SMALL_STATE(471)] = 31398, + [SMALL_STATE(472)] = 31499, + [SMALL_STATE(473)] = 31600, + [SMALL_STATE(474)] = 31701, + [SMALL_STATE(475)] = 31778, + [SMALL_STATE(476)] = 31879, + [SMALL_STATE(477)] = 31980, + [SMALL_STATE(478)] = 32081, + [SMALL_STATE(479)] = 32179, + [SMALL_STATE(480)] = 32277, + [SMALL_STATE(481)] = 32375, + [SMALL_STATE(482)] = 32473, + [SMALL_STATE(483)] = 32545, + [SMALL_STATE(484)] = 32643, + [SMALL_STATE(485)] = 32741, + [SMALL_STATE(486)] = 32839, + [SMALL_STATE(487)] = 32937, + [SMALL_STATE(488)] = 33035, + [SMALL_STATE(489)] = 33133, + [SMALL_STATE(490)] = 33231, + [SMALL_STATE(491)] = 33329, + [SMALL_STATE(492)] = 33427, + [SMALL_STATE(493)] = 33525, + [SMALL_STATE(494)] = 33623, + [SMALL_STATE(495)] = 33721, + [SMALL_STATE(496)] = 33819, + [SMALL_STATE(497)] = 33917, + [SMALL_STATE(498)] = 34015, + [SMALL_STATE(499)] = 34113, + [SMALL_STATE(500)] = 34211, + [SMALL_STATE(501)] = 34309, + [SMALL_STATE(502)] = 34407, + [SMALL_STATE(503)] = 34505, + [SMALL_STATE(504)] = 34603, + [SMALL_STATE(505)] = 34701, + [SMALL_STATE(506)] = 34799, + [SMALL_STATE(507)] = 34897, + [SMALL_STATE(508)] = 34995, + [SMALL_STATE(509)] = 35093, + [SMALL_STATE(510)] = 35191, + [SMALL_STATE(511)] = 35289, + [SMALL_STATE(512)] = 35387, + [SMALL_STATE(513)] = 35485, + [SMALL_STATE(514)] = 35583, + [SMALL_STATE(515)] = 35681, + [SMALL_STATE(516)] = 35779, + [SMALL_STATE(517)] = 35877, + [SMALL_STATE(518)] = 35975, + [SMALL_STATE(519)] = 36073, + [SMALL_STATE(520)] = 36171, + [SMALL_STATE(521)] = 36269, + [SMALL_STATE(522)] = 36367, + [SMALL_STATE(523)] = 36465, + [SMALL_STATE(524)] = 36563, + [SMALL_STATE(525)] = 36661, + [SMALL_STATE(526)] = 36759, + [SMALL_STATE(527)] = 36857, + [SMALL_STATE(528)] = 36955, + [SMALL_STATE(529)] = 37053, + [SMALL_STATE(530)] = 37151, + [SMALL_STATE(531)] = 37249, + [SMALL_STATE(532)] = 37347, + [SMALL_STATE(533)] = 37447, + [SMALL_STATE(534)] = 37545, + [SMALL_STATE(535)] = 37645, + [SMALL_STATE(536)] = 37743, + [SMALL_STATE(537)] = 37841, + [SMALL_STATE(538)] = 37939, + [SMALL_STATE(539)] = 38037, + [SMALL_STATE(540)] = 38109, + [SMALL_STATE(541)] = 38207, + [SMALL_STATE(542)] = 38279, + [SMALL_STATE(543)] = 38377, + [SMALL_STATE(544)] = 38475, + [SMALL_STATE(545)] = 38573, + [SMALL_STATE(546)] = 38671, + [SMALL_STATE(547)] = 38769, + [SMALL_STATE(548)] = 38867, + [SMALL_STATE(549)] = 38965, + [SMALL_STATE(550)] = 39037, + [SMALL_STATE(551)] = 39135, + [SMALL_STATE(552)] = 39233, + [SMALL_STATE(553)] = 39331, + [SMALL_STATE(554)] = 39429, + [SMALL_STATE(555)] = 39527, + [SMALL_STATE(556)] = 39625, + [SMALL_STATE(557)] = 39723, + [SMALL_STATE(558)] = 39823, + [SMALL_STATE(559)] = 39921, + [SMALL_STATE(560)] = 40019, + [SMALL_STATE(561)] = 40117, + [SMALL_STATE(562)] = 40215, + [SMALL_STATE(563)] = 40313, + [SMALL_STATE(564)] = 40411, + [SMALL_STATE(565)] = 40509, + [SMALL_STATE(566)] = 40609, + [SMALL_STATE(567)] = 40707, + [SMALL_STATE(568)] = 40805, + [SMALL_STATE(569)] = 40903, + [SMALL_STATE(570)] = 41001, + [SMALL_STATE(571)] = 41101, + [SMALL_STATE(572)] = 41199, + [SMALL_STATE(573)] = 41299, + [SMALL_STATE(574)] = 41397, + [SMALL_STATE(575)] = 41497, + [SMALL_STATE(576)] = 41569, + [SMALL_STATE(577)] = 41641, + [SMALL_STATE(578)] = 41739, + [SMALL_STATE(579)] = 41837, + [SMALL_STATE(580)] = 41935, + [SMALL_STATE(581)] = 42033, + [SMALL_STATE(582)] = 42131, + [SMALL_STATE(583)] = 42229, + [SMALL_STATE(584)] = 42327, + [SMALL_STATE(585)] = 42425, + [SMALL_STATE(586)] = 42523, + [SMALL_STATE(587)] = 42621, + [SMALL_STATE(588)] = 42719, + [SMALL_STATE(589)] = 42817, + [SMALL_STATE(590)] = 42915, + [SMALL_STATE(591)] = 42987, + [SMALL_STATE(592)] = 43085, + [SMALL_STATE(593)] = 43183, + [SMALL_STATE(594)] = 43281, + [SMALL_STATE(595)] = 43379, + [SMALL_STATE(596)] = 43477, + [SMALL_STATE(597)] = 43575, + [SMALL_STATE(598)] = 43673, + [SMALL_STATE(599)] = 43771, + [SMALL_STATE(600)] = 43869, + [SMALL_STATE(601)] = 43967, + [SMALL_STATE(602)] = 44065, + [SMALL_STATE(603)] = 44163, + [SMALL_STATE(604)] = 44235, + [SMALL_STATE(605)] = 44333, + [SMALL_STATE(606)] = 44406, + [SMALL_STATE(607)] = 44474, + [SMALL_STATE(608)] = 44542, + [SMALL_STATE(609)] = 44608, + [SMALL_STATE(610)] = 44674, + [SMALL_STATE(611)] = 44742, + [SMALL_STATE(612)] = 44810, + [SMALL_STATE(613)] = 44878, + [SMALL_STATE(614)] = 44946, + [SMALL_STATE(615)] = 45014, + [SMALL_STATE(616)] = 45082, + [SMALL_STATE(617)] = 45148, + [SMALL_STATE(618)] = 45210, + [SMALL_STATE(619)] = 45272, + [SMALL_STATE(620)] = 45340, + [SMALL_STATE(621)] = 45408, + [SMALL_STATE(622)] = 45471, + [SMALL_STATE(623)] = 45528, + [SMALL_STATE(624)] = 45591, + [SMALL_STATE(625)] = 45654, + [SMALL_STATE(626)] = 45711, + [SMALL_STATE(627)] = 45774, + [SMALL_STATE(628)] = 45837, + [SMALL_STATE(629)] = 45894, + [SMALL_STATE(630)] = 45951, + [SMALL_STATE(631)] = 46014, + [SMALL_STATE(632)] = 46071, + [SMALL_STATE(633)] = 46128, + [SMALL_STATE(634)] = 46185, + [SMALL_STATE(635)] = 46242, + [SMALL_STATE(636)] = 46305, + [SMALL_STATE(637)] = 46362, + [SMALL_STATE(638)] = 46419, + [SMALL_STATE(639)] = 46482, + [SMALL_STATE(640)] = 46539, + [SMALL_STATE(641)] = 46596, + [SMALL_STATE(642)] = 46659, + [SMALL_STATE(643)] = 46716, + [SMALL_STATE(644)] = 46777, + [SMALL_STATE(645)] = 46838, + [SMALL_STATE(646)] = 46903, + [SMALL_STATE(647)] = 46960, + [SMALL_STATE(648)] = 47023, + [SMALL_STATE(649)] = 47084, + [SMALL_STATE(650)] = 47141, + [SMALL_STATE(651)] = 47198, + [SMALL_STATE(652)] = 47255, + [SMALL_STATE(653)] = 47311, + [SMALL_STATE(654)] = 47367, + [SMALL_STATE(655)] = 47423, + [SMALL_STATE(656)] = 47479, + [SMALL_STATE(657)] = 47535, + [SMALL_STATE(658)] = 47591, + [SMALL_STATE(659)] = 47647, + [SMALL_STATE(660)] = 47703, + [SMALL_STATE(661)] = 47759, + [SMALL_STATE(662)] = 47815, + [SMALL_STATE(663)] = 47907, + [SMALL_STATE(664)] = 47963, + [SMALL_STATE(665)] = 48019, + [SMALL_STATE(666)] = 48075, + [SMALL_STATE(667)] = 48131, + [SMALL_STATE(668)] = 48187, + [SMALL_STATE(669)] = 48243, + [SMALL_STATE(670)] = 48299, + [SMALL_STATE(671)] = 48355, + [SMALL_STATE(672)] = 48411, + [SMALL_STATE(673)] = 48467, + [SMALL_STATE(674)] = 48523, + [SMALL_STATE(675)] = 48615, + [SMALL_STATE(676)] = 48671, + [SMALL_STATE(677)] = 48727, + [SMALL_STATE(678)] = 48783, + [SMALL_STATE(679)] = 48839, + [SMALL_STATE(680)] = 48895, + [SMALL_STATE(681)] = 48951, + [SMALL_STATE(682)] = 49007, + [SMALL_STATE(683)] = 49063, + [SMALL_STATE(684)] = 49119, + [SMALL_STATE(685)] = 49175, + [SMALL_STATE(686)] = 49231, + [SMALL_STATE(687)] = 49287, + [SMALL_STATE(688)] = 49343, + [SMALL_STATE(689)] = 49399, + [SMALL_STATE(690)] = 49455, + [SMALL_STATE(691)] = 49514, + [SMALL_STATE(692)] = 49569, + [SMALL_STATE(693)] = 49628, + [SMALL_STATE(694)] = 49687, + [SMALL_STATE(695)] = 49746, + [SMALL_STATE(696)] = 49801, + [SMALL_STATE(697)] = 49856, + [SMALL_STATE(698)] = 49915, + [SMALL_STATE(699)] = 49974, + [SMALL_STATE(700)] = 50033, + [SMALL_STATE(701)] = 50092, + [SMALL_STATE(702)] = 50151, + [SMALL_STATE(703)] = 50210, + [SMALL_STATE(704)] = 50269, + [SMALL_STATE(705)] = 50324, + [SMALL_STATE(706)] = 50379, + [SMALL_STATE(707)] = 50434, + [SMALL_STATE(708)] = 50493, + [SMALL_STATE(709)] = 50552, + [SMALL_STATE(710)] = 50611, + [SMALL_STATE(711)] = 50670, + [SMALL_STATE(712)] = 50729, + [SMALL_STATE(713)] = 50788, + [SMALL_STATE(714)] = 50847, + [SMALL_STATE(715)] = 50906, + [SMALL_STATE(716)] = 50965, + [SMALL_STATE(717)] = 51057, + [SMALL_STATE(718)] = 51111, + [SMALL_STATE(719)] = 51165, + [SMALL_STATE(720)] = 51219, + [SMALL_STATE(721)] = 51273, + [SMALL_STATE(722)] = 51365, + [SMALL_STATE(723)] = 51454, + [SMALL_STATE(724)] = 51507, + [SMALL_STATE(725)] = 51560, + [SMALL_STATE(726)] = 51613, + [SMALL_STATE(727)] = 51666, + [SMALL_STATE(728)] = 51719, + [SMALL_STATE(729)] = 51772, + [SMALL_STATE(730)] = 51825, + [SMALL_STATE(731)] = 51878, + [SMALL_STATE(732)] = 51931, + [SMALL_STATE(733)] = 51984, + [SMALL_STATE(734)] = 52073, + [SMALL_STATE(735)] = 52126, + [SMALL_STATE(736)] = 52179, + [SMALL_STATE(737)] = 52232, + [SMALL_STATE(738)] = 52321, + [SMALL_STATE(739)] = 52374, + [SMALL_STATE(740)] = 52427, + [SMALL_STATE(741)] = 52480, + [SMALL_STATE(742)] = 52533, + [SMALL_STATE(743)] = 52586, + [SMALL_STATE(744)] = 52639, + [SMALL_STATE(745)] = 52692, + [SMALL_STATE(746)] = 52745, + [SMALL_STATE(747)] = 52834, + [SMALL_STATE(748)] = 52887, + [SMALL_STATE(749)] = 52940, + [SMALL_STATE(750)] = 52993, + [SMALL_STATE(751)] = 53046, + [SMALL_STATE(752)] = 53099, + [SMALL_STATE(753)] = 53152, + [SMALL_STATE(754)] = 53205, + [SMALL_STATE(755)] = 53258, + [SMALL_STATE(756)] = 53311, + [SMALL_STATE(757)] = 53364, + [SMALL_STATE(758)] = 53417, + [SMALL_STATE(759)] = 53470, + [SMALL_STATE(760)] = 53523, + [SMALL_STATE(761)] = 53576, + [SMALL_STATE(762)] = 53629, + [SMALL_STATE(763)] = 53682, + [SMALL_STATE(764)] = 53771, + [SMALL_STATE(765)] = 53824, + [SMALL_STATE(766)] = 53877, + [SMALL_STATE(767)] = 53930, + [SMALL_STATE(768)] = 53983, + [SMALL_STATE(769)] = 54036, + [SMALL_STATE(770)] = 54125, + [SMALL_STATE(771)] = 54178, + [SMALL_STATE(772)] = 54231, + [SMALL_STATE(773)] = 54284, + [SMALL_STATE(774)] = 54337, + [SMALL_STATE(775)] = 54390, + [SMALL_STATE(776)] = 54443, + [SMALL_STATE(777)] = 54496, + [SMALL_STATE(778)] = 54549, + [SMALL_STATE(779)] = 54602, + [SMALL_STATE(780)] = 54655, + [SMALL_STATE(781)] = 54708, + [SMALL_STATE(782)] = 54761, + [SMALL_STATE(783)] = 54814, + [SMALL_STATE(784)] = 54867, + [SMALL_STATE(785)] = 54920, + [SMALL_STATE(786)] = 54973, + [SMALL_STATE(787)] = 55026, + [SMALL_STATE(788)] = 55079, + [SMALL_STATE(789)] = 55132, + [SMALL_STATE(790)] = 55185, + [SMALL_STATE(791)] = 55238, + [SMALL_STATE(792)] = 55291, + [SMALL_STATE(793)] = 55344, + [SMALL_STATE(794)] = 55397, + [SMALL_STATE(795)] = 55450, + [SMALL_STATE(796)] = 55503, + [SMALL_STATE(797)] = 55556, + [SMALL_STATE(798)] = 55609, + [SMALL_STATE(799)] = 55662, + [SMALL_STATE(800)] = 55715, + [SMALL_STATE(801)] = 55768, + [SMALL_STATE(802)] = 55821, + [SMALL_STATE(803)] = 55910, + [SMALL_STATE(804)] = 55963, + [SMALL_STATE(805)] = 56052, + [SMALL_STATE(806)] = 56105, + [SMALL_STATE(807)] = 56158, + [SMALL_STATE(808)] = 56211, + [SMALL_STATE(809)] = 56300, + [SMALL_STATE(810)] = 56353, + [SMALL_STATE(811)] = 56406, + [SMALL_STATE(812)] = 56459, + [SMALL_STATE(813)] = 56512, + [SMALL_STATE(814)] = 56565, + [SMALL_STATE(815)] = 56618, + [SMALL_STATE(816)] = 56671, + [SMALL_STATE(817)] = 56760, + [SMALL_STATE(818)] = 56813, + [SMALL_STATE(819)] = 56866, + [SMALL_STATE(820)] = 56919, + [SMALL_STATE(821)] = 57008, + [SMALL_STATE(822)] = 57061, + [SMALL_STATE(823)] = 57114, + [SMALL_STATE(824)] = 57167, + [SMALL_STATE(825)] = 57220, + [SMALL_STATE(826)] = 57273, + [SMALL_STATE(827)] = 57326, + [SMALL_STATE(828)] = 57379, + [SMALL_STATE(829)] = 57432, + [SMALL_STATE(830)] = 57485, + [SMALL_STATE(831)] = 57538, + [SMALL_STATE(832)] = 57591, + [SMALL_STATE(833)] = 57644, + [SMALL_STATE(834)] = 57697, + [SMALL_STATE(835)] = 57786, + [SMALL_STATE(836)] = 57839, + [SMALL_STATE(837)] = 57892, + [SMALL_STATE(838)] = 57945, + [SMALL_STATE(839)] = 57998, + [SMALL_STATE(840)] = 58051, + [SMALL_STATE(841)] = 58140, + [SMALL_STATE(842)] = 58229, + [SMALL_STATE(843)] = 58282, + [SMALL_STATE(844)] = 58371, + [SMALL_STATE(845)] = 58460, + [SMALL_STATE(846)] = 58513, + [SMALL_STATE(847)] = 58599, + [SMALL_STATE(848)] = 58685, + [SMALL_STATE(849)] = 58771, + [SMALL_STATE(850)] = 58857, + [SMALL_STATE(851)] = 58943, + [SMALL_STATE(852)] = 59029, + [SMALL_STATE(853)] = 59112, + [SMALL_STATE(854)] = 59195, + [SMALL_STATE(855)] = 59273, + [SMALL_STATE(856)] = 59351, + [SMALL_STATE(857)] = 59429, + [SMALL_STATE(858)] = 59507, + [SMALL_STATE(859)] = 59585, + [SMALL_STATE(860)] = 59671, + [SMALL_STATE(861)] = 59749, + [SMALL_STATE(862)] = 59827, + [SMALL_STATE(863)] = 59905, + [SMALL_STATE(864)] = 59980, + [SMALL_STATE(865)] = 60055, + [SMALL_STATE(866)] = 60130, + [SMALL_STATE(867)] = 60205, + [SMALL_STATE(868)] = 60280, + [SMALL_STATE(869)] = 60355, + [SMALL_STATE(870)] = 60430, + [SMALL_STATE(871)] = 60509, + [SMALL_STATE(872)] = 60584, + [SMALL_STATE(873)] = 60663, + [SMALL_STATE(874)] = 60738, + [SMALL_STATE(875)] = 60813, + [SMALL_STATE(876)] = 60888, + [SMALL_STATE(877)] = 60967, + [SMALL_STATE(878)] = 61042, + [SMALL_STATE(879)] = 61117, + [SMALL_STATE(880)] = 61202, + [SMALL_STATE(881)] = 61287, + [SMALL_STATE(882)] = 61362, + [SMALL_STATE(883)] = 61437, + [SMALL_STATE(884)] = 61512, + [SMALL_STATE(885)] = 61587, + [SMALL_STATE(886)] = 61666, + [SMALL_STATE(887)] = 61745, + [SMALL_STATE(888)] = 61820, + [SMALL_STATE(889)] = 61895, + [SMALL_STATE(890)] = 61970, + [SMALL_STATE(891)] = 62049, + [SMALL_STATE(892)] = 62124, + [SMALL_STATE(893)] = 62199, + [SMALL_STATE(894)] = 62274, + [SMALL_STATE(895)] = 62349, + [SMALL_STATE(896)] = 62424, + [SMALL_STATE(897)] = 62499, + [SMALL_STATE(898)] = 62574, + [SMALL_STATE(899)] = 62653, + [SMALL_STATE(900)] = 62728, + [SMALL_STATE(901)] = 62803, + [SMALL_STATE(902)] = 62878, + [SMALL_STATE(903)] = 62953, + [SMALL_STATE(904)] = 63028, + [SMALL_STATE(905)] = 63107, + [SMALL_STATE(906)] = 63182, + [SMALL_STATE(907)] = 63257, + [SMALL_STATE(908)] = 63332, + [SMALL_STATE(909)] = 63411, + [SMALL_STATE(910)] = 63490, + [SMALL_STATE(911)] = 63565, + [SMALL_STATE(912)] = 63650, + [SMALL_STATE(913)] = 63725, + [SMALL_STATE(914)] = 63800, + [SMALL_STATE(915)] = 63875, + [SMALL_STATE(916)] = 63950, + [SMALL_STATE(917)] = 64029, + [SMALL_STATE(918)] = 64104, + [SMALL_STATE(919)] = 64179, + [SMALL_STATE(920)] = 64258, + [SMALL_STATE(921)] = 64333, + [SMALL_STATE(922)] = 64408, + [SMALL_STATE(923)] = 64483, + [SMALL_STATE(924)] = 64562, + [SMALL_STATE(925)] = 64641, + [SMALL_STATE(926)] = 64720, + [SMALL_STATE(927)] = 64795, + [SMALL_STATE(928)] = 64870, + [SMALL_STATE(929)] = 64945, + [SMALL_STATE(930)] = 65020, + [SMALL_STATE(931)] = 65095, + [SMALL_STATE(932)] = 65170, + [SMALL_STATE(933)] = 65245, + [SMALL_STATE(934)] = 65320, + [SMALL_STATE(935)] = 65395, + [SMALL_STATE(936)] = 65474, + [SMALL_STATE(937)] = 65549, + [SMALL_STATE(938)] = 65624, + [SMALL_STATE(939)] = 65703, + [SMALL_STATE(940)] = 65778, + [SMALL_STATE(941)] = 65853, + [SMALL_STATE(942)] = 65928, + [SMALL_STATE(943)] = 66003, + [SMALL_STATE(944)] = 66078, + [SMALL_STATE(945)] = 66153, + [SMALL_STATE(946)] = 66228, + [SMALL_STATE(947)] = 66303, + [SMALL_STATE(948)] = 66378, + [SMALL_STATE(949)] = 66453, + [SMALL_STATE(950)] = 66532, + [SMALL_STATE(951)] = 66611, + [SMALL_STATE(952)] = 66690, + [SMALL_STATE(953)] = 66765, + [SMALL_STATE(954)] = 66840, + [SMALL_STATE(955)] = 66915, + [SMALL_STATE(956)] = 66990, + [SMALL_STATE(957)] = 67065, + [SMALL_STATE(958)] = 67140, + [SMALL_STATE(959)] = 67222, + [SMALL_STATE(960)] = 67274, + [SMALL_STATE(961)] = 67326, + [SMALL_STATE(962)] = 67410, + [SMALL_STATE(963)] = 67494, + [SMALL_STATE(964)] = 67578, + [SMALL_STATE(965)] = 67630, + [SMALL_STATE(966)] = 67687, + [SMALL_STATE(967)] = 67744, + [SMALL_STATE(968)] = 67801, + [SMALL_STATE(969)] = 67852, + [SMALL_STATE(970)] = 67903, + [SMALL_STATE(971)] = 67954, + [SMALL_STATE(972)] = 68005, + [SMALL_STATE(973)] = 68056, + [SMALL_STATE(974)] = 68107, + [SMALL_STATE(975)] = 68188, + [SMALL_STATE(976)] = 68239, + [SMALL_STATE(977)] = 68290, + [SMALL_STATE(978)] = 68347, + [SMALL_STATE(979)] = 68410, + [SMALL_STATE(980)] = 68481, + [SMALL_STATE(981)] = 68542, + [SMALL_STATE(982)] = 68611, + [SMALL_STATE(983)] = 68678, + [SMALL_STATE(984)] = 68743, + [SMALL_STATE(985)] = 68794, + [SMALL_STATE(986)] = 68864, + [SMALL_STATE(987)] = 68932, + [SMALL_STATE(988)] = 68998, + [SMALL_STATE(989)] = 69062, + [SMALL_STATE(990)] = 69108, + [SMALL_STATE(991)] = 69158, + [SMALL_STATE(992)] = 69210, + [SMALL_STATE(993)] = 69262, + [SMALL_STATE(994)] = 69318, + [SMALL_STATE(995)] = 69374, + [SMALL_STATE(996)] = 69424, + [SMALL_STATE(997)] = 69480, + [SMALL_STATE(998)] = 69542, + [SMALL_STATE(999)] = 69612, + [SMALL_STATE(1000)] = 69668, + [SMALL_STATE(1001)] = 69728, + [SMALL_STATE(1002)] = 69796, + [SMALL_STATE(1003)] = 69862, + [SMALL_STATE(1004)] = 69926, + [SMALL_STATE(1005)] = 69976, + [SMALL_STATE(1006)] = 70024, + [SMALL_STATE(1007)] = 70080, + [SMALL_STATE(1008)] = 70136, + [SMALL_STATE(1009)] = 70182, + [SMALL_STATE(1010)] = 70242, + [SMALL_STATE(1011)] = 70298, + [SMALL_STATE(1012)] = 70360, + [SMALL_STATE(1013)] = 70416, + [SMALL_STATE(1014)] = 70472, + [SMALL_STATE(1015)] = 70532, + [SMALL_STATE(1016)] = 70600, + [SMALL_STATE(1017)] = 70666, + [SMALL_STATE(1018)] = 70730, + [SMALL_STATE(1019)] = 70778, + [SMALL_STATE(1020)] = 70824, + [SMALL_STATE(1021)] = 70870, + [SMALL_STATE(1022)] = 70916, + [SMALL_STATE(1023)] = 70962, + [SMALL_STATE(1024)] = 71008, + [SMALL_STATE(1025)] = 71054, + [SMALL_STATE(1026)] = 71134, + [SMALL_STATE(1027)] = 71184, + [SMALL_STATE(1028)] = 71234, + [SMALL_STATE(1029)] = 71284, + [SMALL_STATE(1030)] = 71364, + [SMALL_STATE(1031)] = 71420, + [SMALL_STATE(1032)] = 71476, + [SMALL_STATE(1033)] = 71524, + [SMALL_STATE(1034)] = 71574, + [SMALL_STATE(1035)] = 71630, + [SMALL_STATE(1036)] = 71692, + [SMALL_STATE(1037)] = 71762, + [SMALL_STATE(1038)] = 71812, + [SMALL_STATE(1039)] = 71862, + [SMALL_STATE(1040)] = 71942, + [SMALL_STATE(1041)] = 71988, + [SMALL_STATE(1042)] = 72033, + [SMALL_STATE(1043)] = 72078, + [SMALL_STATE(1044)] = 72133, + [SMALL_STATE(1045)] = 72184, + [SMALL_STATE(1046)] = 72235, + [SMALL_STATE(1047)] = 72286, + [SMALL_STATE(1048)] = 72331, + [SMALL_STATE(1049)] = 72386, + [SMALL_STATE(1050)] = 72441, + [SMALL_STATE(1051)] = 72502, + [SMALL_STATE(1052)] = 72571, + [SMALL_STATE(1053)] = 72626, + [SMALL_STATE(1054)] = 72685, + [SMALL_STATE(1055)] = 72752, + [SMALL_STATE(1056)] = 72817, + [SMALL_STATE(1057)] = 72880, + [SMALL_STATE(1058)] = 72941, + [SMALL_STATE(1059)] = 72986, + [SMALL_STATE(1060)] = 73031, + [SMALL_STATE(1061)] = 73076, + [SMALL_STATE(1062)] = 73121, + [SMALL_STATE(1063)] = 73166, + [SMALL_STATE(1064)] = 73211, + [SMALL_STATE(1065)] = 73256, + [SMALL_STATE(1066)] = 73325, + [SMALL_STATE(1067)] = 73374, + [SMALL_STATE(1068)] = 73429, + [SMALL_STATE(1069)] = 73478, + [SMALL_STATE(1070)] = 73537, + [SMALL_STATE(1071)] = 73588, + [SMALL_STATE(1072)] = 73639, + [SMALL_STATE(1073)] = 73706, + [SMALL_STATE(1074)] = 73771, + [SMALL_STATE(1075)] = 73816, + [SMALL_STATE(1076)] = 73879, + [SMALL_STATE(1077)] = 73924, + [SMALL_STATE(1078)] = 73969, + [SMALL_STATE(1079)] = 74014, + [SMALL_STATE(1080)] = 74059, + [SMALL_STATE(1081)] = 74104, + [SMALL_STATE(1082)] = 74149, + [SMALL_STATE(1083)] = 74194, + [SMALL_STATE(1084)] = 74239, + [SMALL_STATE(1085)] = 74284, + [SMALL_STATE(1086)] = 74329, + [SMALL_STATE(1087)] = 74376, + [SMALL_STATE(1088)] = 74423, + [SMALL_STATE(1089)] = 74470, + [SMALL_STATE(1090)] = 74515, + [SMALL_STATE(1091)] = 74560, + [SMALL_STATE(1092)] = 74605, + [SMALL_STATE(1093)] = 74650, + [SMALL_STATE(1094)] = 74699, + [SMALL_STATE(1095)] = 74748, + [SMALL_STATE(1096)] = 74797, + [SMALL_STATE(1097)] = 74842, + [SMALL_STATE(1098)] = 74887, + [SMALL_STATE(1099)] = 74942, + [SMALL_STATE(1100)] = 74997, + [SMALL_STATE(1101)] = 75046, + [SMALL_STATE(1102)] = 75091, + [SMALL_STATE(1103)] = 75146, + [SMALL_STATE(1104)] = 75207, + [SMALL_STATE(1105)] = 75276, + [SMALL_STATE(1106)] = 75331, + [SMALL_STATE(1107)] = 75390, + [SMALL_STATE(1108)] = 75457, + [SMALL_STATE(1109)] = 75522, + [SMALL_STATE(1110)] = 75585, + [SMALL_STATE(1111)] = 75630, + [SMALL_STATE(1112)] = 75679, + [SMALL_STATE(1113)] = 75726, + [SMALL_STATE(1114)] = 75773, + [SMALL_STATE(1115)] = 75820, + [SMALL_STATE(1116)] = 75869, + [SMALL_STATE(1117)] = 75918, + [SMALL_STATE(1118)] = 75963, + [SMALL_STATE(1119)] = 76008, + [SMALL_STATE(1120)] = 76053, + [SMALL_STATE(1121)] = 76098, + [SMALL_STATE(1122)] = 76147, + [SMALL_STATE(1123)] = 76196, + [SMALL_STATE(1124)] = 76245, + [SMALL_STATE(1125)] = 76292, + [SMALL_STATE(1126)] = 76339, + [SMALL_STATE(1127)] = 76386, + [SMALL_STATE(1128)] = 76439, + [SMALL_STATE(1129)] = 76484, + [SMALL_STATE(1130)] = 76535, + [SMALL_STATE(1131)] = 76586, + [SMALL_STATE(1132)] = 76641, + [SMALL_STATE(1133)] = 76696, + [SMALL_STATE(1134)] = 76741, + [SMALL_STATE(1135)] = 76796, + [SMALL_STATE(1136)] = 76847, + [SMALL_STATE(1137)] = 76898, + [SMALL_STATE(1138)] = 76943, + [SMALL_STATE(1139)] = 76988, + [SMALL_STATE(1140)] = 77033, + [SMALL_STATE(1141)] = 77078, + [SMALL_STATE(1142)] = 77122, + [SMALL_STATE(1143)] = 77166, + [SMALL_STATE(1144)] = 77210, + [SMALL_STATE(1145)] = 77254, + [SMALL_STATE(1146)] = 77298, + [SMALL_STATE(1147)] = 77342, + [SMALL_STATE(1148)] = 77386, + [SMALL_STATE(1149)] = 77430, + [SMALL_STATE(1150)] = 77474, + [SMALL_STATE(1151)] = 77518, + [SMALL_STATE(1152)] = 77562, + [SMALL_STATE(1153)] = 77606, + [SMALL_STATE(1154)] = 77650, + [SMALL_STATE(1155)] = 77694, + [SMALL_STATE(1156)] = 77738, + [SMALL_STATE(1157)] = 77782, + [SMALL_STATE(1158)] = 77826, + [SMALL_STATE(1159)] = 77870, + [SMALL_STATE(1160)] = 77914, + [SMALL_STATE(1161)] = 77958, + [SMALL_STATE(1162)] = 78002, + [SMALL_STATE(1163)] = 78046, + [SMALL_STATE(1164)] = 78090, + [SMALL_STATE(1165)] = 78136, + [SMALL_STATE(1166)] = 78180, + [SMALL_STATE(1167)] = 78224, + [SMALL_STATE(1168)] = 78268, + [SMALL_STATE(1169)] = 78316, + [SMALL_STATE(1170)] = 78360, + [SMALL_STATE(1171)] = 78404, + [SMALL_STATE(1172)] = 78448, + [SMALL_STATE(1173)] = 78492, + [SMALL_STATE(1174)] = 78536, + [SMALL_STATE(1175)] = 78580, + [SMALL_STATE(1176)] = 78624, + [SMALL_STATE(1177)] = 78668, + [SMALL_STATE(1178)] = 78712, + [SMALL_STATE(1179)] = 78756, + [SMALL_STATE(1180)] = 78800, + [SMALL_STATE(1181)] = 78844, + [SMALL_STATE(1182)] = 78888, + [SMALL_STATE(1183)] = 78932, + [SMALL_STATE(1184)] = 78976, + [SMALL_STATE(1185)] = 79020, + [SMALL_STATE(1186)] = 79068, + [SMALL_STATE(1187)] = 79116, + [SMALL_STATE(1188)] = 79160, + [SMALL_STATE(1189)] = 79204, + [SMALL_STATE(1190)] = 79248, + [SMALL_STATE(1191)] = 79292, + [SMALL_STATE(1192)] = 79336, + [SMALL_STATE(1193)] = 79380, + [SMALL_STATE(1194)] = 79424, + [SMALL_STATE(1195)] = 79468, + [SMALL_STATE(1196)] = 79512, + [SMALL_STATE(1197)] = 79556, + [SMALL_STATE(1198)] = 79600, + [SMALL_STATE(1199)] = 79644, + [SMALL_STATE(1200)] = 79692, + [SMALL_STATE(1201)] = 79736, + [SMALL_STATE(1202)] = 79780, + [SMALL_STATE(1203)] = 79824, + [SMALL_STATE(1204)] = 79868, + [SMALL_STATE(1205)] = 79912, + [SMALL_STATE(1206)] = 79956, + [SMALL_STATE(1207)] = 80000, + [SMALL_STATE(1208)] = 80048, + [SMALL_STATE(1209)] = 80092, + [SMALL_STATE(1210)] = 80136, + [SMALL_STATE(1211)] = 80180, + [SMALL_STATE(1212)] = 80224, + [SMALL_STATE(1213)] = 80268, + [SMALL_STATE(1214)] = 80312, + [SMALL_STATE(1215)] = 80356, + [SMALL_STATE(1216)] = 80400, + [SMALL_STATE(1217)] = 80444, + [SMALL_STATE(1218)] = 80488, + [SMALL_STATE(1219)] = 80532, + [SMALL_STATE(1220)] = 80576, + [SMALL_STATE(1221)] = 80620, + [SMALL_STATE(1222)] = 80664, + [SMALL_STATE(1223)] = 80708, + [SMALL_STATE(1224)] = 80752, + [SMALL_STATE(1225)] = 80796, + [SMALL_STATE(1226)] = 80840, + [SMALL_STATE(1227)] = 80884, + [SMALL_STATE(1228)] = 80928, + [SMALL_STATE(1229)] = 80972, + [SMALL_STATE(1230)] = 81018, + [SMALL_STATE(1231)] = 81062, + [SMALL_STATE(1232)] = 81110, + [SMALL_STATE(1233)] = 81154, + [SMALL_STATE(1234)] = 81200, + [SMALL_STATE(1235)] = 81246, + [SMALL_STATE(1236)] = 81292, + [SMALL_STATE(1237)] = 81346, + [SMALL_STATE(1238)] = 81400, + [SMALL_STATE(1239)] = 81448, + [SMALL_STATE(1240)] = 81492, + [SMALL_STATE(1241)] = 81536, + [SMALL_STATE(1242)] = 81580, + [SMALL_STATE(1243)] = 81634, + [SMALL_STATE(1244)] = 81694, + [SMALL_STATE(1245)] = 81762, + [SMALL_STATE(1246)] = 81816, + [SMALL_STATE(1247)] = 81874, + [SMALL_STATE(1248)] = 81940, + [SMALL_STATE(1249)] = 82004, + [SMALL_STATE(1250)] = 82066, + [SMALL_STATE(1251)] = 82114, + [SMALL_STATE(1252)] = 82162, + [SMALL_STATE(1253)] = 82210, + [SMALL_STATE(1254)] = 82258, + [SMALL_STATE(1255)] = 82306, + [SMALL_STATE(1256)] = 82354, + [SMALL_STATE(1257)] = 82402, + [SMALL_STATE(1258)] = 82448, + [SMALL_STATE(1259)] = 82494, + [SMALL_STATE(1260)] = 82540, + [SMALL_STATE(1261)] = 82586, + [SMALL_STATE(1262)] = 82632, + [SMALL_STATE(1263)] = 82676, + [SMALL_STATE(1264)] = 82722, + [SMALL_STATE(1265)] = 82768, + [SMALL_STATE(1266)] = 82812, + [SMALL_STATE(1267)] = 82856, + [SMALL_STATE(1268)] = 82906, + [SMALL_STATE(1269)] = 82956, + [SMALL_STATE(1270)] = 83006, + [SMALL_STATE(1271)] = 83054, + [SMALL_STATE(1272)] = 83102, + [SMALL_STATE(1273)] = 83146, + [SMALL_STATE(1274)] = 83194, + [SMALL_STATE(1275)] = 83242, + [SMALL_STATE(1276)] = 83286, + [SMALL_STATE(1277)] = 83332, + [SMALL_STATE(1278)] = 83378, + [SMALL_STATE(1279)] = 83424, + [SMALL_STATE(1280)] = 83468, + [SMALL_STATE(1281)] = 83512, + [SMALL_STATE(1282)] = 83556, + [SMALL_STATE(1283)] = 83600, + [SMALL_STATE(1284)] = 83650, + [SMALL_STATE(1285)] = 83694, + [SMALL_STATE(1286)] = 83738, + [SMALL_STATE(1287)] = 83782, + [SMALL_STATE(1288)] = 83826, + [SMALL_STATE(1289)] = 83870, + [SMALL_STATE(1290)] = 83918, + [SMALL_STATE(1291)] = 83962, + [SMALL_STATE(1292)] = 84006, + [SMALL_STATE(1293)] = 84050, + [SMALL_STATE(1294)] = 84094, + [SMALL_STATE(1295)] = 84137, + [SMALL_STATE(1296)] = 84180, + [SMALL_STATE(1297)] = 84227, + [SMALL_STATE(1298)] = 84278, + [SMALL_STATE(1299)] = 84321, + [SMALL_STATE(1300)] = 84364, + [SMALL_STATE(1301)] = 84407, + [SMALL_STATE(1302)] = 84454, + [SMALL_STATE(1303)] = 84501, + [SMALL_STATE(1304)] = 84546, + [SMALL_STATE(1305)] = 84591, + [SMALL_STATE(1306)] = 84636, + [SMALL_STATE(1307)] = 84679, + [SMALL_STATE(1308)] = 84722, + [SMALL_STATE(1309)] = 84765, + [SMALL_STATE(1310)] = 84808, + [SMALL_STATE(1311)] = 84851, + [SMALL_STATE(1312)] = 84894, + [SMALL_STATE(1313)] = 84937, + [SMALL_STATE(1314)] = 84980, + [SMALL_STATE(1315)] = 85023, + [SMALL_STATE(1316)] = 85066, + [SMALL_STATE(1317)] = 85109, + [SMALL_STATE(1318)] = 85152, + [SMALL_STATE(1319)] = 85195, + [SMALL_STATE(1320)] = 85238, + [SMALL_STATE(1321)] = 85281, + [SMALL_STATE(1322)] = 85324, + [SMALL_STATE(1323)] = 85371, + [SMALL_STATE(1324)] = 85414, + [SMALL_STATE(1325)] = 85457, + [SMALL_STATE(1326)] = 85500, + [SMALL_STATE(1327)] = 85547, + [SMALL_STATE(1328)] = 85590, + [SMALL_STATE(1329)] = 85633, + [SMALL_STATE(1330)] = 85676, + [SMALL_STATE(1331)] = 85719, + [SMALL_STATE(1332)] = 85762, + [SMALL_STATE(1333)] = 85805, + [SMALL_STATE(1334)] = 85848, + [SMALL_STATE(1335)] = 85891, + [SMALL_STATE(1336)] = 85934, + [SMALL_STATE(1337)] = 85977, + [SMALL_STATE(1338)] = 86020, + [SMALL_STATE(1339)] = 86063, + [SMALL_STATE(1340)] = 86108, + [SMALL_STATE(1341)] = 86151, + [SMALL_STATE(1342)] = 86194, + [SMALL_STATE(1343)] = 86239, + [SMALL_STATE(1344)] = 86282, + [SMALL_STATE(1345)] = 86327, + [SMALL_STATE(1346)] = 86370, + [SMALL_STATE(1347)] = 86413, + [SMALL_STATE(1348)] = 86456, + [SMALL_STATE(1349)] = 86499, + [SMALL_STATE(1350)] = 86542, + [SMALL_STATE(1351)] = 86585, + [SMALL_STATE(1352)] = 86628, + [SMALL_STATE(1353)] = 86671, + [SMALL_STATE(1354)] = 86714, + [SMALL_STATE(1355)] = 86757, + [SMALL_STATE(1356)] = 86800, + [SMALL_STATE(1357)] = 86843, + [SMALL_STATE(1358)] = 86890, + [SMALL_STATE(1359)] = 86933, + [SMALL_STATE(1360)] = 86980, + [SMALL_STATE(1361)] = 87023, + [SMALL_STATE(1362)] = 87066, + [SMALL_STATE(1363)] = 87109, + [SMALL_STATE(1364)] = 87154, + [SMALL_STATE(1365)] = 87199, + [SMALL_STATE(1366)] = 87244, + [SMALL_STATE(1367)] = 87287, + [SMALL_STATE(1368)] = 87330, + [SMALL_STATE(1369)] = 87373, + [SMALL_STATE(1370)] = 87416, + [SMALL_STATE(1371)] = 87459, + [SMALL_STATE(1372)] = 87502, + [SMALL_STATE(1373)] = 87545, + [SMALL_STATE(1374)] = 87588, + [SMALL_STATE(1375)] = 87635, + [SMALL_STATE(1376)] = 87678, + [SMALL_STATE(1377)] = 87723, + [SMALL_STATE(1378)] = 87768, + [SMALL_STATE(1379)] = 87813, + [SMALL_STATE(1380)] = 87856, + [SMALL_STATE(1381)] = 87899, + [SMALL_STATE(1382)] = 87946, + [SMALL_STATE(1383)] = 87991, + [SMALL_STATE(1384)] = 88034, + [SMALL_STATE(1385)] = 88077, + [SMALL_STATE(1386)] = 88120, + [SMALL_STATE(1387)] = 88163, + [SMALL_STATE(1388)] = 88206, + [SMALL_STATE(1389)] = 88249, + [SMALL_STATE(1390)] = 88292, + [SMALL_STATE(1391)] = 88335, + [SMALL_STATE(1392)] = 88378, + [SMALL_STATE(1393)] = 88423, + [SMALL_STATE(1394)] = 88468, + [SMALL_STATE(1395)] = 88511, + [SMALL_STATE(1396)] = 88556, + [SMALL_STATE(1397)] = 88603, + [SMALL_STATE(1398)] = 88650, + [SMALL_STATE(1399)] = 88695, + [SMALL_STATE(1400)] = 88740, + [SMALL_STATE(1401)] = 88783, + [SMALL_STATE(1402)] = 88826, + [SMALL_STATE(1403)] = 88869, + [SMALL_STATE(1404)] = 88912, + [SMALL_STATE(1405)] = 88955, + [SMALL_STATE(1406)] = 88998, + [SMALL_STATE(1407)] = 89041, + [SMALL_STATE(1408)] = 89084, + [SMALL_STATE(1409)] = 89127, + [SMALL_STATE(1410)] = 89170, + [SMALL_STATE(1411)] = 89213, + [SMALL_STATE(1412)] = 89256, + [SMALL_STATE(1413)] = 89299, + [SMALL_STATE(1414)] = 89346, + [SMALL_STATE(1415)] = 89389, + [SMALL_STATE(1416)] = 89432, + [SMALL_STATE(1417)] = 89475, + [SMALL_STATE(1418)] = 89526, + [SMALL_STATE(1419)] = 89569, + [SMALL_STATE(1420)] = 89612, + [SMALL_STATE(1421)] = 89656, + [SMALL_STATE(1422)] = 89698, + [SMALL_STATE(1423)] = 89740, + [SMALL_STATE(1424)] = 89782, + [SMALL_STATE(1425)] = 89824, + [SMALL_STATE(1426)] = 89866, + [SMALL_STATE(1427)] = 89908, + [SMALL_STATE(1428)] = 89950, + [SMALL_STATE(1429)] = 89992, + [SMALL_STATE(1430)] = 90034, + [SMALL_STATE(1431)] = 90076, + [SMALL_STATE(1432)] = 90118, + [SMALL_STATE(1433)] = 90160, + [SMALL_STATE(1434)] = 90206, + [SMALL_STATE(1435)] = 90248, + [SMALL_STATE(1436)] = 90292, + [SMALL_STATE(1437)] = 90336, + [SMALL_STATE(1438)] = 90380, + [SMALL_STATE(1439)] = 90422, + [SMALL_STATE(1440)] = 90464, + [SMALL_STATE(1441)] = 90514, + [SMALL_STATE(1442)] = 90556, + [SMALL_STATE(1443)] = 90598, + [SMALL_STATE(1444)] = 90640, + [SMALL_STATE(1445)] = 90682, + [SMALL_STATE(1446)] = 90726, + [SMALL_STATE(1447)] = 90768, + [SMALL_STATE(1448)] = 90812, + [SMALL_STATE(1449)] = 90856, + [SMALL_STATE(1450)] = 90898, + [SMALL_STATE(1451)] = 90942, + [SMALL_STATE(1452)] = 90984, + [SMALL_STATE(1453)] = 91026, + [SMALL_STATE(1454)] = 91068, + [SMALL_STATE(1455)] = 91110, + [SMALL_STATE(1456)] = 91152, + [SMALL_STATE(1457)] = 91194, + [SMALL_STATE(1458)] = 91236, + [SMALL_STATE(1459)] = 91278, + [SMALL_STATE(1460)] = 91320, + [SMALL_STATE(1461)] = 91362, + [SMALL_STATE(1462)] = 91404, + [SMALL_STATE(1463)] = 91450, + [SMALL_STATE(1464)] = 91494, + [SMALL_STATE(1465)] = 91540, + [SMALL_STATE(1466)] = 91582, + [SMALL_STATE(1467)] = 91630, + [SMALL_STATE(1468)] = 91673, + [SMALL_STATE(1469)] = 91714, + [SMALL_STATE(1470)] = 91757, + [SMALL_STATE(1471)] = 91800, + [SMALL_STATE(1472)] = 91843, + [SMALL_STATE(1473)] = 91886, + [SMALL_STATE(1474)] = 91927, + [SMALL_STATE(1475)] = 91968, + [SMALL_STATE(1476)] = 92009, + [SMALL_STATE(1477)] = 92052, + [SMALL_STATE(1478)] = 92093, + [SMALL_STATE(1479)] = 92134, + [SMALL_STATE(1480)] = 92175, + [SMALL_STATE(1481)] = 92218, + [SMALL_STATE(1482)] = 92261, + [SMALL_STATE(1483)] = 92304, + [SMALL_STATE(1484)] = 92345, + [SMALL_STATE(1485)] = 92386, + [SMALL_STATE(1486)] = 92427, + [SMALL_STATE(1487)] = 92501, + [SMALL_STATE(1488)] = 92575, + [SMALL_STATE(1489)] = 92643, + [SMALL_STATE(1490)] = 92711, + [SMALL_STATE(1491)] = 92779, + [SMALL_STATE(1492)] = 92847, + [SMALL_STATE(1493)] = 92915, + [SMALL_STATE(1494)] = 92983, + [SMALL_STATE(1495)] = 93051, + [SMALL_STATE(1496)] = 93119, + [SMALL_STATE(1497)] = 93187, + [SMALL_STATE(1498)] = 93255, + [SMALL_STATE(1499)] = 93323, + [SMALL_STATE(1500)] = 93391, + [SMALL_STATE(1501)] = 93459, + [SMALL_STATE(1502)] = 93527, + [SMALL_STATE(1503)] = 93595, + [SMALL_STATE(1504)] = 93663, + [SMALL_STATE(1505)] = 93731, + [SMALL_STATE(1506)] = 93799, + [SMALL_STATE(1507)] = 93867, + [SMALL_STATE(1508)] = 93935, + [SMALL_STATE(1509)] = 94003, + [SMALL_STATE(1510)] = 94071, + [SMALL_STATE(1511)] = 94139, + [SMALL_STATE(1512)] = 94207, + [SMALL_STATE(1513)] = 94275, + [SMALL_STATE(1514)] = 94343, + [SMALL_STATE(1515)] = 94411, + [SMALL_STATE(1516)] = 94479, + [SMALL_STATE(1517)] = 94547, + [SMALL_STATE(1518)] = 94615, + [SMALL_STATE(1519)] = 94683, + [SMALL_STATE(1520)] = 94751, + [SMALL_STATE(1521)] = 94819, + [SMALL_STATE(1522)] = 94887, + [SMALL_STATE(1523)] = 94955, + [SMALL_STATE(1524)] = 95023, + [SMALL_STATE(1525)] = 95088, + [SMALL_STATE(1526)] = 95153, + [SMALL_STATE(1527)] = 95218, + [SMALL_STATE(1528)] = 95283, + [SMALL_STATE(1529)] = 95348, + [SMALL_STATE(1530)] = 95414, + [SMALL_STATE(1531)] = 95480, + [SMALL_STATE(1532)] = 95546, + [SMALL_STATE(1533)] = 95612, + [SMALL_STATE(1534)] = 95678, + [SMALL_STATE(1535)] = 95744, + [SMALL_STATE(1536)] = 95810, + [SMALL_STATE(1537)] = 95876, + [SMALL_STATE(1538)] = 95942, + [SMALL_STATE(1539)] = 96008, + [SMALL_STATE(1540)] = 96074, + [SMALL_STATE(1541)] = 96140, + [SMALL_STATE(1542)] = 96206, + [SMALL_STATE(1543)] = 96272, + [SMALL_STATE(1544)] = 96338, + [SMALL_STATE(1545)] = 96404, + [SMALL_STATE(1546)] = 96470, + [SMALL_STATE(1547)] = 96536, + [SMALL_STATE(1548)] = 96602, + [SMALL_STATE(1549)] = 96668, + [SMALL_STATE(1550)] = 96731, + [SMALL_STATE(1551)] = 96789, + [SMALL_STATE(1552)] = 96835, + [SMALL_STATE(1553)] = 96893, + [SMALL_STATE(1554)] = 96951, + [SMALL_STATE(1555)] = 97009, + [SMALL_STATE(1556)] = 97067, + [SMALL_STATE(1557)] = 97125, + [SMALL_STATE(1558)] = 97171, + [SMALL_STATE(1559)] = 97229, + [SMALL_STATE(1560)] = 97287, + [SMALL_STATE(1561)] = 97332, + [SMALL_STATE(1562)] = 97377, + [SMALL_STATE(1563)] = 97421, + [SMALL_STATE(1564)] = 97465, + [SMALL_STATE(1565)] = 97509, + [SMALL_STATE(1566)] = 97553, + [SMALL_STATE(1567)] = 97596, + [SMALL_STATE(1568)] = 97637, + [SMALL_STATE(1569)] = 97680, + [SMALL_STATE(1570)] = 97723, + [SMALL_STATE(1571)] = 97766, + [SMALL_STATE(1572)] = 97807, + [SMALL_STATE(1573)] = 97839, + [SMALL_STATE(1574)] = 97871, + [SMALL_STATE(1575)] = 97913, + [SMALL_STATE(1576)] = 97943, + [SMALL_STATE(1577)] = 97985, + [SMALL_STATE(1578)] = 98017, + [SMALL_STATE(1579)] = 98047, + [SMALL_STATE(1580)] = 98079, + [SMALL_STATE(1581)] = 98111, + [SMALL_STATE(1582)] = 98143, + [SMALL_STATE(1583)] = 98173, + [SMALL_STATE(1584)] = 98203, + [SMALL_STATE(1585)] = 98233, + [SMALL_STATE(1586)] = 98263, + [SMALL_STATE(1587)] = 98293, + [SMALL_STATE(1588)] = 98323, + [SMALL_STATE(1589)] = 98353, + [SMALL_STATE(1590)] = 98383, + [SMALL_STATE(1591)] = 98412, + [SMALL_STATE(1592)] = 98437, + [SMALL_STATE(1593)] = 98466, + [SMALL_STATE(1594)] = 98495, + [SMALL_STATE(1595)] = 98524, + [SMALL_STATE(1596)] = 98553, + [SMALL_STATE(1597)] = 98582, + [SMALL_STATE(1598)] = 98611, + [SMALL_STATE(1599)] = 98640, + [SMALL_STATE(1600)] = 98669, + [SMALL_STATE(1601)] = 98698, + [SMALL_STATE(1602)] = 98727, + [SMALL_STATE(1603)] = 98756, + [SMALL_STATE(1604)] = 98785, + [SMALL_STATE(1605)] = 98814, + [SMALL_STATE(1606)] = 98843, + [SMALL_STATE(1607)] = 98868, + [SMALL_STATE(1608)] = 98897, + [SMALL_STATE(1609)] = 98926, + [SMALL_STATE(1610)] = 98955, + [SMALL_STATE(1611)] = 98984, + [SMALL_STATE(1612)] = 99013, + [SMALL_STATE(1613)] = 99060, + [SMALL_STATE(1614)] = 99089, + [SMALL_STATE(1615)] = 99118, + [SMALL_STATE(1616)] = 99147, + [SMALL_STATE(1617)] = 99194, + [SMALL_STATE(1618)] = 99219, + [SMALL_STATE(1619)] = 99266, + [SMALL_STATE(1620)] = 99313, + [SMALL_STATE(1621)] = 99360, + [SMALL_STATE(1622)] = 99407, + [SMALL_STATE(1623)] = 99432, + [SMALL_STATE(1624)] = 99479, + [SMALL_STATE(1625)] = 99526, + [SMALL_STATE(1626)] = 99573, + [SMALL_STATE(1627)] = 99620, + [SMALL_STATE(1628)] = 99649, + [SMALL_STATE(1629)] = 99695, + [SMALL_STATE(1630)] = 99719, + [SMALL_STATE(1631)] = 99765, + [SMALL_STATE(1632)] = 99789, + [SMALL_STATE(1633)] = 99835, + [SMALL_STATE(1634)] = 99881, + [SMALL_STATE(1635)] = 99913, + [SMALL_STATE(1636)] = 99959, + [SMALL_STATE(1637)] = 100005, + [SMALL_STATE(1638)] = 100051, + [SMALL_STATE(1639)] = 100075, + [SMALL_STATE(1640)] = 100103, + [SMALL_STATE(1641)] = 100149, + [SMALL_STATE(1642)] = 100195, + [SMALL_STATE(1643)] = 100241, + [SMALL_STATE(1644)] = 100273, + [SMALL_STATE(1645)] = 100297, + [SMALL_STATE(1646)] = 100327, + [SMALL_STATE(1647)] = 100355, + [SMALL_STATE(1648)] = 100401, + [SMALL_STATE(1649)] = 100444, + [SMALL_STATE(1650)] = 100484, + [SMALL_STATE(1651)] = 100510, + [SMALL_STATE(1652)] = 100550, + [SMALL_STATE(1653)] = 100590, + [SMALL_STATE(1654)] = 100630, + [SMALL_STATE(1655)] = 100667, + [SMALL_STATE(1656)] = 100706, + [SMALL_STATE(1657)] = 100743, + [SMALL_STATE(1658)] = 100784, + [SMALL_STATE(1659)] = 100811, + [SMALL_STATE(1660)] = 100830, + [SMALL_STATE(1661)] = 100855, + [SMALL_STATE(1662)] = 100896, + [SMALL_STATE(1663)] = 100923, + [SMALL_STATE(1664)] = 100964, + [SMALL_STATE(1665)] = 100987, + [SMALL_STATE(1666)] = 101006, + [SMALL_STATE(1667)] = 101027, + [SMALL_STATE(1668)] = 101068, + [SMALL_STATE(1669)] = 101109, + [SMALL_STATE(1670)] = 101150, + [SMALL_STATE(1671)] = 101191, + [SMALL_STATE(1672)] = 101218, + [SMALL_STATE(1673)] = 101259, + [SMALL_STATE(1674)] = 101278, + [SMALL_STATE(1675)] = 101308, + [SMALL_STATE(1676)] = 101346, + [SMALL_STATE(1677)] = 101384, + [SMALL_STATE(1678)] = 101414, + [SMALL_STATE(1679)] = 101444, + [SMALL_STATE(1680)] = 101474, + [SMALL_STATE(1681)] = 101512, + [SMALL_STATE(1682)] = 101550, + [SMALL_STATE(1683)] = 101580, + [SMALL_STATE(1684)] = 101606, + [SMALL_STATE(1685)] = 101636, + [SMALL_STATE(1686)] = 101674, + [SMALL_STATE(1687)] = 101704, + [SMALL_STATE(1688)] = 101742, + [SMALL_STATE(1689)] = 101772, + [SMALL_STATE(1690)] = 101810, + [SMALL_STATE(1691)] = 101834, + [SMALL_STATE(1692)] = 101864, + [SMALL_STATE(1693)] = 101890, + [SMALL_STATE(1694)] = 101920, + [SMALL_STATE(1695)] = 101950, + [SMALL_STATE(1696)] = 101988, + [SMALL_STATE(1697)] = 102026, + [SMALL_STATE(1698)] = 102056, + [SMALL_STATE(1699)] = 102094, + [SMALL_STATE(1700)] = 102124, + [SMALL_STATE(1701)] = 102162, + [SMALL_STATE(1702)] = 102200, + [SMALL_STATE(1703)] = 102238, + [SMALL_STATE(1704)] = 102276, + [SMALL_STATE(1705)] = 102300, + [SMALL_STATE(1706)] = 102338, + [SMALL_STATE(1707)] = 102376, + [SMALL_STATE(1708)] = 102408, + [SMALL_STATE(1709)] = 102438, + [SMALL_STATE(1710)] = 102476, + [SMALL_STATE(1711)] = 102496, + [SMALL_STATE(1712)] = 102534, + [SMALL_STATE(1713)] = 102572, + [SMALL_STATE(1714)] = 102594, + [SMALL_STATE(1715)] = 102632, + [SMALL_STATE(1716)] = 102670, + [SMALL_STATE(1717)] = 102700, + [SMALL_STATE(1718)] = 102720, + [SMALL_STATE(1719)] = 102758, + [SMALL_STATE(1720)] = 102778, + [SMALL_STATE(1721)] = 102816, + [SMALL_STATE(1722)] = 102846, + [SMALL_STATE(1723)] = 102884, + [SMALL_STATE(1724)] = 102922, + [SMALL_STATE(1725)] = 102952, + [SMALL_STATE(1726)] = 102982, + [SMALL_STATE(1727)] = 103008, + [SMALL_STATE(1728)] = 103038, + [SMALL_STATE(1729)] = 103063, + [SMALL_STATE(1730)] = 103088, + [SMALL_STATE(1731)] = 103117, + [SMALL_STATE(1732)] = 103146, + [SMALL_STATE(1733)] = 103163, + [SMALL_STATE(1734)] = 103180, + [SMALL_STATE(1735)] = 103197, + [SMALL_STATE(1736)] = 103214, + [SMALL_STATE(1737)] = 103239, + [SMALL_STATE(1738)] = 103264, + [SMALL_STATE(1739)] = 103289, + [SMALL_STATE(1740)] = 103312, + [SMALL_STATE(1741)] = 103333, + [SMALL_STATE(1742)] = 103350, + [SMALL_STATE(1743)] = 103375, + [SMALL_STATE(1744)] = 103398, + [SMALL_STATE(1745)] = 103419, + [SMALL_STATE(1746)] = 103436, + [SMALL_STATE(1747)] = 103455, + [SMALL_STATE(1748)] = 103480, + [SMALL_STATE(1749)] = 103499, + [SMALL_STATE(1750)] = 103524, + [SMALL_STATE(1751)] = 103548, + [SMALL_STATE(1752)] = 103568, + [SMALL_STATE(1753)] = 103592, + [SMALL_STATE(1754)] = 103616, + [SMALL_STATE(1755)] = 103638, + [SMALL_STATE(1756)] = 103662, + [SMALL_STATE(1757)] = 103680, + [SMALL_STATE(1758)] = 103704, + [SMALL_STATE(1759)] = 103728, + [SMALL_STATE(1760)] = 103752, + [SMALL_STATE(1761)] = 103772, + [SMALL_STATE(1762)] = 103788, + [SMALL_STATE(1763)] = 103810, + [SMALL_STATE(1764)] = 103834, + [SMALL_STATE(1765)] = 103854, + [SMALL_STATE(1766)] = 103870, + [SMALL_STATE(1767)] = 103894, + [SMALL_STATE(1768)] = 103924, + [SMALL_STATE(1769)] = 103948, + [SMALL_STATE(1770)] = 103964, + [SMALL_STATE(1771)] = 103988, + [SMALL_STATE(1772)] = 104010, + [SMALL_STATE(1773)] = 104034, + [SMALL_STATE(1774)] = 104054, + [SMALL_STATE(1775)] = 104074, + [SMALL_STATE(1776)] = 104098, + [SMALL_STATE(1777)] = 104114, + [SMALL_STATE(1778)] = 104132, + [SMALL_STATE(1779)] = 104152, + [SMALL_STATE(1780)] = 104174, + [SMALL_STATE(1781)] = 104196, + [SMALL_STATE(1782)] = 104214, + [SMALL_STATE(1783)] = 104232, + [SMALL_STATE(1784)] = 104248, + [SMALL_STATE(1785)] = 104264, + [SMALL_STATE(1786)] = 104282, + [SMALL_STATE(1787)] = 104311, + [SMALL_STATE(1788)] = 104334, + [SMALL_STATE(1789)] = 104357, + [SMALL_STATE(1790)] = 104386, + [SMALL_STATE(1791)] = 104407, + [SMALL_STATE(1792)] = 104430, + [SMALL_STATE(1793)] = 104457, + [SMALL_STATE(1794)] = 104476, + [SMALL_STATE(1795)] = 104505, + [SMALL_STATE(1796)] = 104526, + [SMALL_STATE(1797)] = 104553, + [SMALL_STATE(1798)] = 104576, + [SMALL_STATE(1799)] = 104597, + [SMALL_STATE(1800)] = 104618, + [SMALL_STATE(1801)] = 104635, + [SMALL_STATE(1802)] = 104658, + [SMALL_STATE(1803)] = 104687, + [SMALL_STATE(1804)] = 104708, + [SMALL_STATE(1805)] = 104729, + [SMALL_STATE(1806)] = 104758, + [SMALL_STATE(1807)] = 104785, + [SMALL_STATE(1808)] = 104814, + [SMALL_STATE(1809)] = 104835, + [SMALL_STATE(1810)] = 104858, + [SMALL_STATE(1811)] = 104887, + [SMALL_STATE(1812)] = 104908, + [SMALL_STATE(1813)] = 104923, + [SMALL_STATE(1814)] = 104944, + [SMALL_STATE(1815)] = 104961, + [SMALL_STATE(1816)] = 104988, + [SMALL_STATE(1817)] = 105009, + [SMALL_STATE(1818)] = 105030, + [SMALL_STATE(1819)] = 105057, + [SMALL_STATE(1820)] = 105080, + [SMALL_STATE(1821)] = 105101, + [SMALL_STATE(1822)] = 105128, + [SMALL_STATE(1823)] = 105147, + [SMALL_STATE(1824)] = 105176, + [SMALL_STATE(1825)] = 105201, + [SMALL_STATE(1826)] = 105230, + [SMALL_STATE(1827)] = 105257, + [SMALL_STATE(1828)] = 105274, + [SMALL_STATE(1829)] = 105295, + [SMALL_STATE(1830)] = 105322, + [SMALL_STATE(1831)] = 105343, + [SMALL_STATE(1832)] = 105368, + [SMALL_STATE(1833)] = 105397, + [SMALL_STATE(1834)] = 105419, + [SMALL_STATE(1835)] = 105443, + [SMALL_STATE(1836)] = 105461, + [SMALL_STATE(1837)] = 105487, + [SMALL_STATE(1838)] = 105505, + [SMALL_STATE(1839)] = 105527, + [SMALL_STATE(1840)] = 105545, + [SMALL_STATE(1841)] = 105569, + [SMALL_STATE(1842)] = 105587, + [SMALL_STATE(1843)] = 105613, + [SMALL_STATE(1844)] = 105631, + [SMALL_STATE(1845)] = 105657, + [SMALL_STATE(1846)] = 105681, + [SMALL_STATE(1847)] = 105699, + [SMALL_STATE(1848)] = 105725, + [SMALL_STATE(1849)] = 105745, + [SMALL_STATE(1850)] = 105767, + [SMALL_STATE(1851)] = 105785, + [SMALL_STATE(1852)] = 105811, + [SMALL_STATE(1853)] = 105837, + [SMALL_STATE(1854)] = 105855, + [SMALL_STATE(1855)] = 105881, + [SMALL_STATE(1856)] = 105907, + [SMALL_STATE(1857)] = 105927, + [SMALL_STATE(1858)] = 105953, + [SMALL_STATE(1859)] = 105979, + [SMALL_STATE(1860)] = 106005, + [SMALL_STATE(1861)] = 106031, + [SMALL_STATE(1862)] = 106049, + [SMALL_STATE(1863)] = 106075, + [SMALL_STATE(1864)] = 106093, + [SMALL_STATE(1865)] = 106111, + [SMALL_STATE(1866)] = 106133, + [SMALL_STATE(1867)] = 106159, + [SMALL_STATE(1868)] = 106181, + [SMALL_STATE(1869)] = 106207, + [SMALL_STATE(1870)] = 106233, + [SMALL_STATE(1871)] = 106259, + [SMALL_STATE(1872)] = 106285, + [SMALL_STATE(1873)] = 106301, + [SMALL_STATE(1874)] = 106327, + [SMALL_STATE(1875)] = 106349, + [SMALL_STATE(1876)] = 106367, + [SMALL_STATE(1877)] = 106383, + [SMALL_STATE(1878)] = 106405, + [SMALL_STATE(1879)] = 106425, + [SMALL_STATE(1880)] = 106447, + [SMALL_STATE(1881)] = 106473, + [SMALL_STATE(1882)] = 106495, + [SMALL_STATE(1883)] = 106519, + [SMALL_STATE(1884)] = 106541, + [SMALL_STATE(1885)] = 106563, + [SMALL_STATE(1886)] = 106589, + [SMALL_STATE(1887)] = 106615, + [SMALL_STATE(1888)] = 106636, + [SMALL_STATE(1889)] = 106649, + [SMALL_STATE(1890)] = 106670, + [SMALL_STATE(1891)] = 106691, + [SMALL_STATE(1892)] = 106708, + [SMALL_STATE(1893)] = 106725, + [SMALL_STATE(1894)] = 106742, + [SMALL_STATE(1895)] = 106759, + [SMALL_STATE(1896)] = 106780, + [SMALL_STATE(1897)] = 106799, + [SMALL_STATE(1898)] = 106820, + [SMALL_STATE(1899)] = 106837, + [SMALL_STATE(1900)] = 106850, + [SMALL_STATE(1901)] = 106863, + [SMALL_STATE(1902)] = 106876, + [SMALL_STATE(1903)] = 106889, + [SMALL_STATE(1904)] = 106910, + [SMALL_STATE(1905)] = 106931, + [SMALL_STATE(1906)] = 106944, + [SMALL_STATE(1907)] = 106961, + [SMALL_STATE(1908)] = 106978, + [SMALL_STATE(1909)] = 106991, + [SMALL_STATE(1910)] = 107008, + [SMALL_STATE(1911)] = 107029, + [SMALL_STATE(1912)] = 107050, + [SMALL_STATE(1913)] = 107067, + [SMALL_STATE(1914)] = 107088, + [SMALL_STATE(1915)] = 107101, + [SMALL_STATE(1916)] = 107118, + [SMALL_STATE(1917)] = 107135, + [SMALL_STATE(1918)] = 107148, + [SMALL_STATE(1919)] = 107171, + [SMALL_STATE(1920)] = 107184, + [SMALL_STATE(1921)] = 107205, + [SMALL_STATE(1922)] = 107226, + [SMALL_STATE(1923)] = 107249, + [SMALL_STATE(1924)] = 107264, + [SMALL_STATE(1925)] = 107279, + [SMALL_STATE(1926)] = 107296, + [SMALL_STATE(1927)] = 107313, + [SMALL_STATE(1928)] = 107334, + [SMALL_STATE(1929)] = 107351, + [SMALL_STATE(1930)] = 107366, + [SMALL_STATE(1931)] = 107381, + [SMALL_STATE(1932)] = 107398, + [SMALL_STATE(1933)] = 107419, + [SMALL_STATE(1934)] = 107432, + [SMALL_STATE(1935)] = 107445, + [SMALL_STATE(1936)] = 107468, + [SMALL_STATE(1937)] = 107489, + [SMALL_STATE(1938)] = 107510, + [SMALL_STATE(1939)] = 107523, + [SMALL_STATE(1940)] = 107540, + [SMALL_STATE(1941)] = 107557, + [SMALL_STATE(1942)] = 107570, + [SMALL_STATE(1943)] = 107589, + [SMALL_STATE(1944)] = 107606, + [SMALL_STATE(1945)] = 107619, + [SMALL_STATE(1946)] = 107636, + [SMALL_STATE(1947)] = 107649, + [SMALL_STATE(1948)] = 107670, + [SMALL_STATE(1949)] = 107691, + [SMALL_STATE(1950)] = 107708, + [SMALL_STATE(1951)] = 107729, + [SMALL_STATE(1952)] = 107750, + [SMALL_STATE(1953)] = 107771, + [SMALL_STATE(1954)] = 107788, + [SMALL_STATE(1955)] = 107805, + [SMALL_STATE(1956)] = 107826, + [SMALL_STATE(1957)] = 107843, + [SMALL_STATE(1958)] = 107856, + [SMALL_STATE(1959)] = 107871, + [SMALL_STATE(1960)] = 107892, + [SMALL_STATE(1961)] = 107913, + [SMALL_STATE(1962)] = 107926, + [SMALL_STATE(1963)] = 107947, + [SMALL_STATE(1964)] = 107964, + [SMALL_STATE(1965)] = 107985, + [SMALL_STATE(1966)] = 108002, + [SMALL_STATE(1967)] = 108019, + [SMALL_STATE(1968)] = 108040, + [SMALL_STATE(1969)] = 108057, + [SMALL_STATE(1970)] = 108078, + [SMALL_STATE(1971)] = 108095, + [SMALL_STATE(1972)] = 108116, + [SMALL_STATE(1973)] = 108133, + [SMALL_STATE(1974)] = 108150, + [SMALL_STATE(1975)] = 108167, + [SMALL_STATE(1976)] = 108182, + [SMALL_STATE(1977)] = 108195, + [SMALL_STATE(1978)] = 108212, + [SMALL_STATE(1979)] = 108227, + [SMALL_STATE(1980)] = 108248, + [SMALL_STATE(1981)] = 108269, + [SMALL_STATE(1982)] = 108284, + [SMALL_STATE(1983)] = 108307, + [SMALL_STATE(1984)] = 108328, + [SMALL_STATE(1985)] = 108345, + [SMALL_STATE(1986)] = 108362, + [SMALL_STATE(1987)] = 108375, + [SMALL_STATE(1988)] = 108388, + [SMALL_STATE(1989)] = 108401, + [SMALL_STATE(1990)] = 108414, + [SMALL_STATE(1991)] = 108431, + [SMALL_STATE(1992)] = 108448, + [SMALL_STATE(1993)] = 108469, + [SMALL_STATE(1994)] = 108486, + [SMALL_STATE(1995)] = 108509, + [SMALL_STATE(1996)] = 108522, + [SMALL_STATE(1997)] = 108540, + [SMALL_STATE(1998)] = 108552, + [SMALL_STATE(1999)] = 108564, + [SMALL_STATE(2000)] = 108582, + [SMALL_STATE(2001)] = 108594, + [SMALL_STATE(2002)] = 108606, + [SMALL_STATE(2003)] = 108618, + [SMALL_STATE(2004)] = 108636, + [SMALL_STATE(2005)] = 108648, + [SMALL_STATE(2006)] = 108664, + [SMALL_STATE(2007)] = 108680, + [SMALL_STATE(2008)] = 108694, + [SMALL_STATE(2009)] = 108706, + [SMALL_STATE(2010)] = 108722, + [SMALL_STATE(2011)] = 108736, + [SMALL_STATE(2012)] = 108752, + [SMALL_STATE(2013)] = 108764, + [SMALL_STATE(2014)] = 108776, + [SMALL_STATE(2015)] = 108792, + [SMALL_STATE(2016)] = 108804, + [SMALL_STATE(2017)] = 108816, + [SMALL_STATE(2018)] = 108836, + [SMALL_STATE(2019)] = 108856, + [SMALL_STATE(2020)] = 108868, + [SMALL_STATE(2021)] = 108888, + [SMALL_STATE(2022)] = 108904, + [SMALL_STATE(2023)] = 108916, + [SMALL_STATE(2024)] = 108928, + [SMALL_STATE(2025)] = 108942, + [SMALL_STATE(2026)] = 108958, + [SMALL_STATE(2027)] = 108970, + [SMALL_STATE(2028)] = 108982, + [SMALL_STATE(2029)] = 108994, + [SMALL_STATE(2030)] = 109006, + [SMALL_STATE(2031)] = 109018, + [SMALL_STATE(2032)] = 109030, + [SMALL_STATE(2033)] = 109042, + [SMALL_STATE(2034)] = 109060, + [SMALL_STATE(2035)] = 109078, + [SMALL_STATE(2036)] = 109090, + [SMALL_STATE(2037)] = 109110, + [SMALL_STATE(2038)] = 109130, + [SMALL_STATE(2039)] = 109146, + [SMALL_STATE(2040)] = 109166, + [SMALL_STATE(2041)] = 109178, + [SMALL_STATE(2042)] = 109190, + [SMALL_STATE(2043)] = 109210, + [SMALL_STATE(2044)] = 109222, + [SMALL_STATE(2045)] = 109234, + [SMALL_STATE(2046)] = 109246, + [SMALL_STATE(2047)] = 109258, + [SMALL_STATE(2048)] = 109270, + [SMALL_STATE(2049)] = 109282, + [SMALL_STATE(2050)] = 109294, + [SMALL_STATE(2051)] = 109314, + [SMALL_STATE(2052)] = 109334, + [SMALL_STATE(2053)] = 109352, + [SMALL_STATE(2054)] = 109364, + [SMALL_STATE(2055)] = 109384, + [SMALL_STATE(2056)] = 109404, + [SMALL_STATE(2057)] = 109424, + [SMALL_STATE(2058)] = 109440, + [SMALL_STATE(2059)] = 109452, + [SMALL_STATE(2060)] = 109464, + [SMALL_STATE(2061)] = 109476, + [SMALL_STATE(2062)] = 109488, + [SMALL_STATE(2063)] = 109500, + [SMALL_STATE(2064)] = 109520, + [SMALL_STATE(2065)] = 109538, + [SMALL_STATE(2066)] = 109550, + [SMALL_STATE(2067)] = 109568, + [SMALL_STATE(2068)] = 109586, + [SMALL_STATE(2069)] = 109598, + [SMALL_STATE(2070)] = 109610, + [SMALL_STATE(2071)] = 109630, + [SMALL_STATE(2072)] = 109650, + [SMALL_STATE(2073)] = 109662, + [SMALL_STATE(2074)] = 109674, + [SMALL_STATE(2075)] = 109686, + [SMALL_STATE(2076)] = 109704, + [SMALL_STATE(2077)] = 109716, + [SMALL_STATE(2078)] = 109736, + [SMALL_STATE(2079)] = 109748, + [SMALL_STATE(2080)] = 109760, + [SMALL_STATE(2081)] = 109780, + [SMALL_STATE(2082)] = 109798, + [SMALL_STATE(2083)] = 109816, + [SMALL_STATE(2084)] = 109828, + [SMALL_STATE(2085)] = 109848, + [SMALL_STATE(2086)] = 109868, + [SMALL_STATE(2087)] = 109888, + [SMALL_STATE(2088)] = 109900, + [SMALL_STATE(2089)] = 109912, + [SMALL_STATE(2090)] = 109924, + [SMALL_STATE(2091)] = 109938, + [SMALL_STATE(2092)] = 109954, + [SMALL_STATE(2093)] = 109970, + [SMALL_STATE(2094)] = 109982, + [SMALL_STATE(2095)] = 110002, + [SMALL_STATE(2096)] = 110022, + [SMALL_STATE(2097)] = 110042, + [SMALL_STATE(2098)] = 110054, + [SMALL_STATE(2099)] = 110074, + [SMALL_STATE(2100)] = 110094, + [SMALL_STATE(2101)] = 110110, + [SMALL_STATE(2102)] = 110130, + [SMALL_STATE(2103)] = 110146, + [SMALL_STATE(2104)] = 110160, + [SMALL_STATE(2105)] = 110172, + [SMALL_STATE(2106)] = 110188, + [SMALL_STATE(2107)] = 110206, + [SMALL_STATE(2108)] = 110218, + [SMALL_STATE(2109)] = 110238, + [SMALL_STATE(2110)] = 110250, + [SMALL_STATE(2111)] = 110264, + [SMALL_STATE(2112)] = 110275, + [SMALL_STATE(2113)] = 110286, + [SMALL_STATE(2114)] = 110301, + [SMALL_STATE(2115)] = 110312, + [SMALL_STATE(2116)] = 110323, + [SMALL_STATE(2117)] = 110340, + [SMALL_STATE(2118)] = 110357, + [SMALL_STATE(2119)] = 110368, + [SMALL_STATE(2120)] = 110385, + [SMALL_STATE(2121)] = 110402, + [SMALL_STATE(2122)] = 110417, + [SMALL_STATE(2123)] = 110434, + [SMALL_STATE(2124)] = 110445, + [SMALL_STATE(2125)] = 110462, + [SMALL_STATE(2126)] = 110479, + [SMALL_STATE(2127)] = 110490, + [SMALL_STATE(2128)] = 110501, + [SMALL_STATE(2129)] = 110512, + [SMALL_STATE(2130)] = 110523, + [SMALL_STATE(2131)] = 110534, + [SMALL_STATE(2132)] = 110551, + [SMALL_STATE(2133)] = 110562, + [SMALL_STATE(2134)] = 110573, + [SMALL_STATE(2135)] = 110584, + [SMALL_STATE(2136)] = 110595, + [SMALL_STATE(2137)] = 110612, + [SMALL_STATE(2138)] = 110629, + [SMALL_STATE(2139)] = 110640, + [SMALL_STATE(2140)] = 110651, + [SMALL_STATE(2141)] = 110662, + [SMALL_STATE(2142)] = 110673, + [SMALL_STATE(2143)] = 110690, + [SMALL_STATE(2144)] = 110707, + [SMALL_STATE(2145)] = 110724, + [SMALL_STATE(2146)] = 110737, + [SMALL_STATE(2147)] = 110748, + [SMALL_STATE(2148)] = 110765, + [SMALL_STATE(2149)] = 110780, + [SMALL_STATE(2150)] = 110791, + [SMALL_STATE(2151)] = 110802, + [SMALL_STATE(2152)] = 110813, + [SMALL_STATE(2153)] = 110824, + [SMALL_STATE(2154)] = 110839, + [SMALL_STATE(2155)] = 110852, + [SMALL_STATE(2156)] = 110867, + [SMALL_STATE(2157)] = 110882, + [SMALL_STATE(2158)] = 110897, + [SMALL_STATE(2159)] = 110912, + [SMALL_STATE(2160)] = 110929, + [SMALL_STATE(2161)] = 110944, + [SMALL_STATE(2162)] = 110955, + [SMALL_STATE(2163)] = 110966, + [SMALL_STATE(2164)] = 110983, + [SMALL_STATE(2165)] = 111000, + [SMALL_STATE(2166)] = 111017, + [SMALL_STATE(2167)] = 111034, + [SMALL_STATE(2168)] = 111049, + [SMALL_STATE(2169)] = 111064, + [SMALL_STATE(2170)] = 111079, + [SMALL_STATE(2171)] = 111090, + [SMALL_STATE(2172)] = 111107, + [SMALL_STATE(2173)] = 111118, + [SMALL_STATE(2174)] = 111135, + [SMALL_STATE(2175)] = 111146, + [SMALL_STATE(2176)] = 111163, + [SMALL_STATE(2177)] = 111178, + [SMALL_STATE(2178)] = 111189, + [SMALL_STATE(2179)] = 111200, + [SMALL_STATE(2180)] = 111211, + [SMALL_STATE(2181)] = 111222, + [SMALL_STATE(2182)] = 111233, + [SMALL_STATE(2183)] = 111244, + [SMALL_STATE(2184)] = 111259, + [SMALL_STATE(2185)] = 111274, + [SMALL_STATE(2186)] = 111285, + [SMALL_STATE(2187)] = 111296, + [SMALL_STATE(2188)] = 111313, + [SMALL_STATE(2189)] = 111324, + [SMALL_STATE(2190)] = 111335, + [SMALL_STATE(2191)] = 111352, + [SMALL_STATE(2192)] = 111369, + [SMALL_STATE(2193)] = 111380, + [SMALL_STATE(2194)] = 111395, + [SMALL_STATE(2195)] = 111410, + [SMALL_STATE(2196)] = 111425, + [SMALL_STATE(2197)] = 111436, + [SMALL_STATE(2198)] = 111447, + [SMALL_STATE(2199)] = 111458, + [SMALL_STATE(2200)] = 111473, + [SMALL_STATE(2201)] = 111488, + [SMALL_STATE(2202)] = 111499, + [SMALL_STATE(2203)] = 111510, + [SMALL_STATE(2204)] = 111527, + [SMALL_STATE(2205)] = 111538, + [SMALL_STATE(2206)] = 111549, + [SMALL_STATE(2207)] = 111560, + [SMALL_STATE(2208)] = 111571, + [SMALL_STATE(2209)] = 111582, + [SMALL_STATE(2210)] = 111593, + [SMALL_STATE(2211)] = 111604, + [SMALL_STATE(2212)] = 111615, + [SMALL_STATE(2213)] = 111626, + [SMALL_STATE(2214)] = 111637, + [SMALL_STATE(2215)] = 111648, + [SMALL_STATE(2216)] = 111659, + [SMALL_STATE(2217)] = 111670, + [SMALL_STATE(2218)] = 111687, + [SMALL_STATE(2219)] = 111704, + [SMALL_STATE(2220)] = 111715, + [SMALL_STATE(2221)] = 111726, + [SMALL_STATE(2222)] = 111737, + [SMALL_STATE(2223)] = 111748, + [SMALL_STATE(2224)] = 111759, + [SMALL_STATE(2225)] = 111770, + [SMALL_STATE(2226)] = 111781, + [SMALL_STATE(2227)] = 111792, + [SMALL_STATE(2228)] = 111805, + [SMALL_STATE(2229)] = 111816, + [SMALL_STATE(2230)] = 111827, + [SMALL_STATE(2231)] = 111838, + [SMALL_STATE(2232)] = 111849, + [SMALL_STATE(2233)] = 111860, + [SMALL_STATE(2234)] = 111871, + [SMALL_STATE(2235)] = 111888, + [SMALL_STATE(2236)] = 111905, + [SMALL_STATE(2237)] = 111916, + [SMALL_STATE(2238)] = 111927, + [SMALL_STATE(2239)] = 111944, + [SMALL_STATE(2240)] = 111961, + [SMALL_STATE(2241)] = 111975, + [SMALL_STATE(2242)] = 111985, + [SMALL_STATE(2243)] = 111999, + [SMALL_STATE(2244)] = 112013, + [SMALL_STATE(2245)] = 112027, + [SMALL_STATE(2246)] = 112041, + [SMALL_STATE(2247)] = 112055, + [SMALL_STATE(2248)] = 112069, + [SMALL_STATE(2249)] = 112083, + [SMALL_STATE(2250)] = 112093, + [SMALL_STATE(2251)] = 112107, + [SMALL_STATE(2252)] = 112121, + [SMALL_STATE(2253)] = 112135, + [SMALL_STATE(2254)] = 112149, + [SMALL_STATE(2255)] = 112163, + [SMALL_STATE(2256)] = 112177, + [SMALL_STATE(2257)] = 112191, + [SMALL_STATE(2258)] = 112205, + [SMALL_STATE(2259)] = 112219, + [SMALL_STATE(2260)] = 112233, + [SMALL_STATE(2261)] = 112247, + [SMALL_STATE(2262)] = 112261, + [SMALL_STATE(2263)] = 112275, + [SMALL_STATE(2264)] = 112289, + [SMALL_STATE(2265)] = 112303, + [SMALL_STATE(2266)] = 112315, + [SMALL_STATE(2267)] = 112329, + [SMALL_STATE(2268)] = 112343, + [SMALL_STATE(2269)] = 112357, + [SMALL_STATE(2270)] = 112371, + [SMALL_STATE(2271)] = 112385, + [SMALL_STATE(2272)] = 112399, + [SMALL_STATE(2273)] = 112413, + [SMALL_STATE(2274)] = 112427, + [SMALL_STATE(2275)] = 112441, + [SMALL_STATE(2276)] = 112455, + [SMALL_STATE(2277)] = 112469, + [SMALL_STATE(2278)] = 112479, + [SMALL_STATE(2279)] = 112493, + [SMALL_STATE(2280)] = 112507, + [SMALL_STATE(2281)] = 112521, + [SMALL_STATE(2282)] = 112535, + [SMALL_STATE(2283)] = 112549, + [SMALL_STATE(2284)] = 112561, + [SMALL_STATE(2285)] = 112573, + [SMALL_STATE(2286)] = 112585, + [SMALL_STATE(2287)] = 112599, + [SMALL_STATE(2288)] = 112611, + [SMALL_STATE(2289)] = 112625, + [SMALL_STATE(2290)] = 112639, + [SMALL_STATE(2291)] = 112653, + [SMALL_STATE(2292)] = 112667, + [SMALL_STATE(2293)] = 112681, + [SMALL_STATE(2294)] = 112695, + [SMALL_STATE(2295)] = 112709, + [SMALL_STATE(2296)] = 112723, + [SMALL_STATE(2297)] = 112737, + [SMALL_STATE(2298)] = 112751, + [SMALL_STATE(2299)] = 112765, + [SMALL_STATE(2300)] = 112779, + [SMALL_STATE(2301)] = 112793, + [SMALL_STATE(2302)] = 112807, + [SMALL_STATE(2303)] = 112821, + [SMALL_STATE(2304)] = 112835, + [SMALL_STATE(2305)] = 112849, + [SMALL_STATE(2306)] = 112859, + [SMALL_STATE(2307)] = 112873, + [SMALL_STATE(2308)] = 112887, + [SMALL_STATE(2309)] = 112901, + [SMALL_STATE(2310)] = 112915, + [SMALL_STATE(2311)] = 112929, + [SMALL_STATE(2312)] = 112943, + [SMALL_STATE(2313)] = 112957, + [SMALL_STATE(2314)] = 112971, + [SMALL_STATE(2315)] = 112981, + [SMALL_STATE(2316)] = 112995, + [SMALL_STATE(2317)] = 113009, + [SMALL_STATE(2318)] = 113023, + [SMALL_STATE(2319)] = 113037, + [SMALL_STATE(2320)] = 113051, + [SMALL_STATE(2321)] = 113065, + [SMALL_STATE(2322)] = 113079, + [SMALL_STATE(2323)] = 113093, + [SMALL_STATE(2324)] = 113107, + [SMALL_STATE(2325)] = 113121, + [SMALL_STATE(2326)] = 113135, + [SMALL_STATE(2327)] = 113149, + [SMALL_STATE(2328)] = 113163, + [SMALL_STATE(2329)] = 113177, + [SMALL_STATE(2330)] = 113191, + [SMALL_STATE(2331)] = 113205, + [SMALL_STATE(2332)] = 113219, + [SMALL_STATE(2333)] = 113233, + [SMALL_STATE(2334)] = 113247, + [SMALL_STATE(2335)] = 113261, + [SMALL_STATE(2336)] = 113275, + [SMALL_STATE(2337)] = 113289, + [SMALL_STATE(2338)] = 113301, + [SMALL_STATE(2339)] = 113315, + [SMALL_STATE(2340)] = 113329, + [SMALL_STATE(2341)] = 113343, + [SMALL_STATE(2342)] = 113357, + [SMALL_STATE(2343)] = 113371, + [SMALL_STATE(2344)] = 113381, + [SMALL_STATE(2345)] = 113395, + [SMALL_STATE(2346)] = 113409, + [SMALL_STATE(2347)] = 113423, + [SMALL_STATE(2348)] = 113437, + [SMALL_STATE(2349)] = 113451, + [SMALL_STATE(2350)] = 113465, + [SMALL_STATE(2351)] = 113475, + [SMALL_STATE(2352)] = 113489, + [SMALL_STATE(2353)] = 113503, + [SMALL_STATE(2354)] = 113517, + [SMALL_STATE(2355)] = 113527, + [SMALL_STATE(2356)] = 113541, + [SMALL_STATE(2357)] = 113555, + [SMALL_STATE(2358)] = 113565, + [SMALL_STATE(2359)] = 113579, + [SMALL_STATE(2360)] = 113593, + [SMALL_STATE(2361)] = 113607, + [SMALL_STATE(2362)] = 113621, + [SMALL_STATE(2363)] = 113635, + [SMALL_STATE(2364)] = 113649, + [SMALL_STATE(2365)] = 113663, + [SMALL_STATE(2366)] = 113677, + [SMALL_STATE(2367)] = 113691, + [SMALL_STATE(2368)] = 113705, + [SMALL_STATE(2369)] = 113719, + [SMALL_STATE(2370)] = 113733, + [SMALL_STATE(2371)] = 113747, + [SMALL_STATE(2372)] = 113761, + [SMALL_STATE(2373)] = 113775, + [SMALL_STATE(2374)] = 113789, + [SMALL_STATE(2375)] = 113803, + [SMALL_STATE(2376)] = 113817, + [SMALL_STATE(2377)] = 113831, + [SMALL_STATE(2378)] = 113845, + [SMALL_STATE(2379)] = 113859, + [SMALL_STATE(2380)] = 113873, + [SMALL_STATE(2381)] = 113885, + [SMALL_STATE(2382)] = 113899, + [SMALL_STATE(2383)] = 113913, + [SMALL_STATE(2384)] = 113927, + [SMALL_STATE(2385)] = 113941, + [SMALL_STATE(2386)] = 113955, + [SMALL_STATE(2387)] = 113969, + [SMALL_STATE(2388)] = 113981, + [SMALL_STATE(2389)] = 113995, + [SMALL_STATE(2390)] = 114009, + [SMALL_STATE(2391)] = 114023, + [SMALL_STATE(2392)] = 114037, + [SMALL_STATE(2393)] = 114051, + [SMALL_STATE(2394)] = 114065, + [SMALL_STATE(2395)] = 114077, + [SMALL_STATE(2396)] = 114091, + [SMALL_STATE(2397)] = 114105, + [SMALL_STATE(2398)] = 114119, + [SMALL_STATE(2399)] = 114133, + [SMALL_STATE(2400)] = 114145, + [SMALL_STATE(2401)] = 114159, + [SMALL_STATE(2402)] = 114173, + [SMALL_STATE(2403)] = 114187, + [SMALL_STATE(2404)] = 114201, + [SMALL_STATE(2405)] = 114213, + [SMALL_STATE(2406)] = 114227, + [SMALL_STATE(2407)] = 114241, + [SMALL_STATE(2408)] = 114255, + [SMALL_STATE(2409)] = 114269, + [SMALL_STATE(2410)] = 114283, + [SMALL_STATE(2411)] = 114297, + [SMALL_STATE(2412)] = 114311, + [SMALL_STATE(2413)] = 114325, + [SMALL_STATE(2414)] = 114339, + [SMALL_STATE(2415)] = 114353, + [SMALL_STATE(2416)] = 114367, + [SMALL_STATE(2417)] = 114381, + [SMALL_STATE(2418)] = 114395, + [SMALL_STATE(2419)] = 114409, + [SMALL_STATE(2420)] = 114421, + [SMALL_STATE(2421)] = 114435, + [SMALL_STATE(2422)] = 114449, + [SMALL_STATE(2423)] = 114463, + [SMALL_STATE(2424)] = 114475, + [SMALL_STATE(2425)] = 114489, + [SMALL_STATE(2426)] = 114503, + [SMALL_STATE(2427)] = 114517, + [SMALL_STATE(2428)] = 114531, + [SMALL_STATE(2429)] = 114541, + [SMALL_STATE(2430)] = 114555, + [SMALL_STATE(2431)] = 114569, + [SMALL_STATE(2432)] = 114583, + [SMALL_STATE(2433)] = 114597, + [SMALL_STATE(2434)] = 114611, + [SMALL_STATE(2435)] = 114625, + [SMALL_STATE(2436)] = 114639, + [SMALL_STATE(2437)] = 114653, + [SMALL_STATE(2438)] = 114665, + [SMALL_STATE(2439)] = 114677, + [SMALL_STATE(2440)] = 114691, + [SMALL_STATE(2441)] = 114705, + [SMALL_STATE(2442)] = 114719, + [SMALL_STATE(2443)] = 114733, + [SMALL_STATE(2444)] = 114747, + [SMALL_STATE(2445)] = 114761, + [SMALL_STATE(2446)] = 114775, + [SMALL_STATE(2447)] = 114789, + [SMALL_STATE(2448)] = 114803, + [SMALL_STATE(2449)] = 114817, + [SMALL_STATE(2450)] = 114831, + [SMALL_STATE(2451)] = 114845, + [SMALL_STATE(2452)] = 114859, + [SMALL_STATE(2453)] = 114873, + [SMALL_STATE(2454)] = 114887, + [SMALL_STATE(2455)] = 114901, + [SMALL_STATE(2456)] = 114911, + [SMALL_STATE(2457)] = 114925, + [SMALL_STATE(2458)] = 114939, + [SMALL_STATE(2459)] = 114953, + [SMALL_STATE(2460)] = 114967, + [SMALL_STATE(2461)] = 114979, + [SMALL_STATE(2462)] = 114993, + [SMALL_STATE(2463)] = 115007, + [SMALL_STATE(2464)] = 115021, + [SMALL_STATE(2465)] = 115035, + [SMALL_STATE(2466)] = 115049, + [SMALL_STATE(2467)] = 115063, + [SMALL_STATE(2468)] = 115075, + [SMALL_STATE(2469)] = 115089, + [SMALL_STATE(2470)] = 115099, + [SMALL_STATE(2471)] = 115113, + [SMALL_STATE(2472)] = 115127, + [SMALL_STATE(2473)] = 115137, + [SMALL_STATE(2474)] = 115151, + [SMALL_STATE(2475)] = 115165, + [SMALL_STATE(2476)] = 115179, + [SMALL_STATE(2477)] = 115193, + [SMALL_STATE(2478)] = 115207, + [SMALL_STATE(2479)] = 115219, + [SMALL_STATE(2480)] = 115233, + [SMALL_STATE(2481)] = 115247, + [SMALL_STATE(2482)] = 115261, + [SMALL_STATE(2483)] = 115273, + [SMALL_STATE(2484)] = 115287, + [SMALL_STATE(2485)] = 115301, + [SMALL_STATE(2486)] = 115315, + [SMALL_STATE(2487)] = 115329, + [SMALL_STATE(2488)] = 115343, + [SMALL_STATE(2489)] = 115353, + [SMALL_STATE(2490)] = 115367, + [SMALL_STATE(2491)] = 115376, + [SMALL_STATE(2492)] = 115385, + [SMALL_STATE(2493)] = 115394, + [SMALL_STATE(2494)] = 115403, + [SMALL_STATE(2495)] = 115414, + [SMALL_STATE(2496)] = 115423, + [SMALL_STATE(2497)] = 115432, + [SMALL_STATE(2498)] = 115443, + [SMALL_STATE(2499)] = 115452, + [SMALL_STATE(2500)] = 115461, + [SMALL_STATE(2501)] = 115470, + [SMALL_STATE(2502)] = 115479, + [SMALL_STATE(2503)] = 115488, + [SMALL_STATE(2504)] = 115497, + [SMALL_STATE(2505)] = 115508, + [SMALL_STATE(2506)] = 115517, + [SMALL_STATE(2507)] = 115526, + [SMALL_STATE(2508)] = 115535, + [SMALL_STATE(2509)] = 115544, + [SMALL_STATE(2510)] = 115553, + [SMALL_STATE(2511)] = 115562, + [SMALL_STATE(2512)] = 115571, + [SMALL_STATE(2513)] = 115582, + [SMALL_STATE(2514)] = 115591, + [SMALL_STATE(2515)] = 115600, + [SMALL_STATE(2516)] = 115611, + [SMALL_STATE(2517)] = 115620, + [SMALL_STATE(2518)] = 115629, + [SMALL_STATE(2519)] = 115638, + [SMALL_STATE(2520)] = 115647, + [SMALL_STATE(2521)] = 115656, + [SMALL_STATE(2522)] = 115667, + [SMALL_STATE(2523)] = 115676, + [SMALL_STATE(2524)] = 115687, + [SMALL_STATE(2525)] = 115696, + [SMALL_STATE(2526)] = 115705, + [SMALL_STATE(2527)] = 115714, + [SMALL_STATE(2528)] = 115725, + [SMALL_STATE(2529)] = 115734, + [SMALL_STATE(2530)] = 115743, + [SMALL_STATE(2531)] = 115752, + [SMALL_STATE(2532)] = 115761, + [SMALL_STATE(2533)] = 115770, + [SMALL_STATE(2534)] = 115779, + [SMALL_STATE(2535)] = 115788, + [SMALL_STATE(2536)] = 115799, + [SMALL_STATE(2537)] = 115808, + [SMALL_STATE(2538)] = 115817, + [SMALL_STATE(2539)] = 115826, + [SMALL_STATE(2540)] = 115835, + [SMALL_STATE(2541)] = 115844, + [SMALL_STATE(2542)] = 115853, + [SMALL_STATE(2543)] = 115862, + [SMALL_STATE(2544)] = 115873, + [SMALL_STATE(2545)] = 115882, + [SMALL_STATE(2546)] = 115891, + [SMALL_STATE(2547)] = 115900, + [SMALL_STATE(2548)] = 115909, + [SMALL_STATE(2549)] = 115918, + [SMALL_STATE(2550)] = 115927, + [SMALL_STATE(2551)] = 115936, + [SMALL_STATE(2552)] = 115945, + [SMALL_STATE(2553)] = 115954, + [SMALL_STATE(2554)] = 115965, + [SMALL_STATE(2555)] = 115976, + [SMALL_STATE(2556)] = 115985, + [SMALL_STATE(2557)] = 115996, + [SMALL_STATE(2558)] = 116005, + [SMALL_STATE(2559)] = 116014, + [SMALL_STATE(2560)] = 116025, + [SMALL_STATE(2561)] = 116036, + [SMALL_STATE(2562)] = 116047, + [SMALL_STATE(2563)] = 116056, + [SMALL_STATE(2564)] = 116065, + [SMALL_STATE(2565)] = 116074, + [SMALL_STATE(2566)] = 116085, + [SMALL_STATE(2567)] = 116096, + [SMALL_STATE(2568)] = 116105, + [SMALL_STATE(2569)] = 116114, + [SMALL_STATE(2570)] = 116123, + [SMALL_STATE(2571)] = 116132, + [SMALL_STATE(2572)] = 116143, + [SMALL_STATE(2573)] = 116152, + [SMALL_STATE(2574)] = 116161, + [SMALL_STATE(2575)] = 116170, + [SMALL_STATE(2576)] = 116179, + [SMALL_STATE(2577)] = 116188, + [SMALL_STATE(2578)] = 116197, + [SMALL_STATE(2579)] = 116206, + [SMALL_STATE(2580)] = 116215, + [SMALL_STATE(2581)] = 116224, + [SMALL_STATE(2582)] = 116235, + [SMALL_STATE(2583)] = 116244, + [SMALL_STATE(2584)] = 116255, + [SMALL_STATE(2585)] = 116266, + [SMALL_STATE(2586)] = 116275, + [SMALL_STATE(2587)] = 116286, + [SMALL_STATE(2588)] = 116295, + [SMALL_STATE(2589)] = 116304, + [SMALL_STATE(2590)] = 116315, + [SMALL_STATE(2591)] = 116326, + [SMALL_STATE(2592)] = 116334, + [SMALL_STATE(2593)] = 116342, + [SMALL_STATE(2594)] = 116350, + [SMALL_STATE(2595)] = 116358, + [SMALL_STATE(2596)] = 116366, + [SMALL_STATE(2597)] = 116374, + [SMALL_STATE(2598)] = 116382, + [SMALL_STATE(2599)] = 116390, + [SMALL_STATE(2600)] = 116398, + [SMALL_STATE(2601)] = 116406, + [SMALL_STATE(2602)] = 116414, + [SMALL_STATE(2603)] = 116422, + [SMALL_STATE(2604)] = 116430, + [SMALL_STATE(2605)] = 116438, + [SMALL_STATE(2606)] = 116446, + [SMALL_STATE(2607)] = 116454, + [SMALL_STATE(2608)] = 116462, + [SMALL_STATE(2609)] = 116470, + [SMALL_STATE(2610)] = 116478, + [SMALL_STATE(2611)] = 116486, + [SMALL_STATE(2612)] = 116494, + [SMALL_STATE(2613)] = 116502, + [SMALL_STATE(2614)] = 116510, + [SMALL_STATE(2615)] = 116518, + [SMALL_STATE(2616)] = 116526, + [SMALL_STATE(2617)] = 116534, + [SMALL_STATE(2618)] = 116542, + [SMALL_STATE(2619)] = 116550, + [SMALL_STATE(2620)] = 116558, + [SMALL_STATE(2621)] = 116566, + [SMALL_STATE(2622)] = 116574, + [SMALL_STATE(2623)] = 116582, + [SMALL_STATE(2624)] = 116590, + [SMALL_STATE(2625)] = 116598, + [SMALL_STATE(2626)] = 116606, + [SMALL_STATE(2627)] = 116614, + [SMALL_STATE(2628)] = 116622, + [SMALL_STATE(2629)] = 116630, + [SMALL_STATE(2630)] = 116638, + [SMALL_STATE(2631)] = 116646, + [SMALL_STATE(2632)] = 116654, + [SMALL_STATE(2633)] = 116662, + [SMALL_STATE(2634)] = 116670, + [SMALL_STATE(2635)] = 116678, + [SMALL_STATE(2636)] = 116686, + [SMALL_STATE(2637)] = 116694, + [SMALL_STATE(2638)] = 116702, + [SMALL_STATE(2639)] = 116710, + [SMALL_STATE(2640)] = 116718, + [SMALL_STATE(2641)] = 116726, + [SMALL_STATE(2642)] = 116734, + [SMALL_STATE(2643)] = 116742, + [SMALL_STATE(2644)] = 116750, + [SMALL_STATE(2645)] = 116758, + [SMALL_STATE(2646)] = 116766, + [SMALL_STATE(2647)] = 116774, + [SMALL_STATE(2648)] = 116782, + [SMALL_STATE(2649)] = 116790, + [SMALL_STATE(2650)] = 116798, + [SMALL_STATE(2651)] = 116806, + [SMALL_STATE(2652)] = 116814, + [SMALL_STATE(2653)] = 116822, + [SMALL_STATE(2654)] = 116830, + [SMALL_STATE(2655)] = 116838, + [SMALL_STATE(2656)] = 116846, + [SMALL_STATE(2657)] = 116854, + [SMALL_STATE(2658)] = 116862, + [SMALL_STATE(2659)] = 116870, + [SMALL_STATE(2660)] = 116878, + [SMALL_STATE(2661)] = 116886, + [SMALL_STATE(2662)] = 116894, + [SMALL_STATE(2663)] = 116902, + [SMALL_STATE(2664)] = 116910, + [SMALL_STATE(2665)] = 116918, + [SMALL_STATE(2666)] = 116926, + [SMALL_STATE(2667)] = 116934, + [SMALL_STATE(2668)] = 116942, + [SMALL_STATE(2669)] = 116950, + [SMALL_STATE(2670)] = 116958, + [SMALL_STATE(2671)] = 116966, + [SMALL_STATE(2672)] = 116974, + [SMALL_STATE(2673)] = 116982, + [SMALL_STATE(2674)] = 116990, + [SMALL_STATE(2675)] = 116998, + [SMALL_STATE(2676)] = 117006, + [SMALL_STATE(2677)] = 117014, + [SMALL_STATE(2678)] = 117022, + [SMALL_STATE(2679)] = 117030, + [SMALL_STATE(2680)] = 117038, + [SMALL_STATE(2681)] = 117046, + [SMALL_STATE(2682)] = 117054, + [SMALL_STATE(2683)] = 117062, + [SMALL_STATE(2684)] = 117070, + [SMALL_STATE(2685)] = 117078, + [SMALL_STATE(2686)] = 117086, + [SMALL_STATE(2687)] = 117094, + [SMALL_STATE(2688)] = 117102, + [SMALL_STATE(2689)] = 117110, + [SMALL_STATE(2690)] = 117118, + [SMALL_STATE(2691)] = 117126, + [SMALL_STATE(2692)] = 117134, + [SMALL_STATE(2693)] = 117142, + [SMALL_STATE(2694)] = 117150, + [SMALL_STATE(2695)] = 117158, + [SMALL_STATE(2696)] = 117166, + [SMALL_STATE(2697)] = 117174, + [SMALL_STATE(2698)] = 117182, + [SMALL_STATE(2699)] = 117190, + [SMALL_STATE(2700)] = 117198, + [SMALL_STATE(2701)] = 117206, + [SMALL_STATE(2702)] = 117214, + [SMALL_STATE(2703)] = 117222, + [SMALL_STATE(2704)] = 117230, + [SMALL_STATE(2705)] = 117238, + [SMALL_STATE(2706)] = 117246, + [SMALL_STATE(2707)] = 117254, + [SMALL_STATE(2708)] = 117262, + [SMALL_STATE(2709)] = 117270, + [SMALL_STATE(2710)] = 117278, + [SMALL_STATE(2711)] = 117286, + [SMALL_STATE(2712)] = 117294, + [SMALL_STATE(2713)] = 117302, + [SMALL_STATE(2714)] = 117310, + [SMALL_STATE(2715)] = 117318, + [SMALL_STATE(2716)] = 117326, + [SMALL_STATE(2717)] = 117334, + [SMALL_STATE(2718)] = 117342, + [SMALL_STATE(2719)] = 117350, + [SMALL_STATE(2720)] = 117358, + [SMALL_STATE(2721)] = 117366, + [SMALL_STATE(2722)] = 117374, + [SMALL_STATE(2723)] = 117382, + [SMALL_STATE(2724)] = 117390, + [SMALL_STATE(2725)] = 117398, + [SMALL_STATE(2726)] = 117406, + [SMALL_STATE(2727)] = 117414, + [SMALL_STATE(2728)] = 117422, + [SMALL_STATE(2729)] = 117430, + [SMALL_STATE(2730)] = 117438, + [SMALL_STATE(2731)] = 117446, + [SMALL_STATE(2732)] = 117454, + [SMALL_STATE(2733)] = 117462, + [SMALL_STATE(2734)] = 117470, + [SMALL_STATE(2735)] = 117478, + [SMALL_STATE(2736)] = 117486, + [SMALL_STATE(2737)] = 117494, + [SMALL_STATE(2738)] = 117502, + [SMALL_STATE(2739)] = 117510, + [SMALL_STATE(2740)] = 117518, + [SMALL_STATE(2741)] = 117526, + [SMALL_STATE(2742)] = 117534, + [SMALL_STATE(2743)] = 117542, + [SMALL_STATE(2744)] = 117550, + [SMALL_STATE(2745)] = 117558, + [SMALL_STATE(2746)] = 117566, + [SMALL_STATE(2747)] = 117574, + [SMALL_STATE(2748)] = 117582, + [SMALL_STATE(2749)] = 117590, + [SMALL_STATE(2750)] = 117598, + [SMALL_STATE(2751)] = 117606, + [SMALL_STATE(2752)] = 117614, + [SMALL_STATE(2753)] = 117622, + [SMALL_STATE(2754)] = 117630, + [SMALL_STATE(2755)] = 117638, + [SMALL_STATE(2756)] = 117646, + [SMALL_STATE(2757)] = 117654, + [SMALL_STATE(2758)] = 117662, + [SMALL_STATE(2759)] = 117670, + [SMALL_STATE(2760)] = 117678, + [SMALL_STATE(2761)] = 117686, + [SMALL_STATE(2762)] = 117694, + [SMALL_STATE(2763)] = 117702, + [SMALL_STATE(2764)] = 117710, + [SMALL_STATE(2765)] = 117718, + [SMALL_STATE(2766)] = 117726, + [SMALL_STATE(2767)] = 117734, + [SMALL_STATE(2768)] = 117742, + [SMALL_STATE(2769)] = 117750, + [SMALL_STATE(2770)] = 117758, + [SMALL_STATE(2771)] = 117766, + [SMALL_STATE(2772)] = 117774, + [SMALL_STATE(2773)] = 117782, + [SMALL_STATE(2774)] = 117790, + [SMALL_STATE(2775)] = 117798, + [SMALL_STATE(2776)] = 117806, + [SMALL_STATE(2777)] = 117814, + [SMALL_STATE(2778)] = 117822, + [SMALL_STATE(2779)] = 117830, + [SMALL_STATE(2780)] = 117838, + [SMALL_STATE(2781)] = 117846, + [SMALL_STATE(2782)] = 117854, + [SMALL_STATE(2783)] = 117862, + [SMALL_STATE(2784)] = 117870, + [SMALL_STATE(2785)] = 117878, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -126418,2420 +127114,2430 @@ static const TSParseActionEntry ts_parse_actions[] = { [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2160), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1841), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(185), - [129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(81), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(490), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(374), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(465), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(351), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2534), - [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2505), - [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(597), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(479), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(772), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(598), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2649), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2765), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2643), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2714), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2742), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(547), - [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(578), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1099), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(481), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(477), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(738), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(567), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), - [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(268), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(887), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2746), - [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(880), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(556), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(269), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(616), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2159), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(925), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(470), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2557), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2490), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2550), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(559), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(87), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(498), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2737), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2705), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(930), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(560), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1641), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1091), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1091), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(843), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2658), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2753), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(269), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(919), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 1), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), REDUCE(sym_primary_expression, 1, 0, 1), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(2596), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 1), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(901), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(556), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 1), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(276), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(303), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(877), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(310), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(863), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(578), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(868), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(319), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(885), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(272), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(930), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(560), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(898), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 5), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_list_splat_pattern, 2, 0, 5), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2, 0, 0), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3, 0, 0), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 111), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 111), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 97), [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 97), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3, 0, 0), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 45), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, 0, 45), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, 0, 109), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, 0, 109), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), - [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 17), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 17), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 17), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 17), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 43), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 43), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 43), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 43), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(552), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(475), - [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 57), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 57), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 38), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 38), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), - [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), - [1599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), - [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), - [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), - [1605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), - [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 117), - [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 117), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 5, 0, 0), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 24), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 24), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), - [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), - [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), - [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), - [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 4, 0, 105), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 4, 0, 105), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 129), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 129), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 6, 0, 130), - [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 6, 0, 130), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 137), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 137), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_group_clause, 7, 0, 0), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 50), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 50), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 50), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 50), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(602), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(580), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 17), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 17), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 57), - [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 57), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 113), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 113), - [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 42), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 42), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 38), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 38), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 43), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 43), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 62), - [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 62), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 17), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 17), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 43), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 43), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [1820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 107), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 107), - [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), - [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), - [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), - [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 115), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 115), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 108), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 108), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 126), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 126), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 17), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 17), - [1856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), - [1858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), - [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), - [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), - [1870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 116), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 116), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), - [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 127), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 127), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 128), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 128), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 43), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 43), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 106), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 106), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 40), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 40), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 112), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 112), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 114), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 114), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 118), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 118), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 119), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 119), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 44), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 44), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 46), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 46), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 136), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 136), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), - [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 59), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 59), - [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 60), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 60), - [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), - [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), - [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1706), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 22), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1686), - [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1696), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1666), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 34), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 34), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), - [2503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 35), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 35), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 34), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 34), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 35), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 35), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 35), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 35), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 34), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 34), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 45), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 96), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3, 0, 0), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2, 0, 0), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2, 0, 0), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 1, 0, 0), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1, 0, 0), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 5), + [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2, 0, 0), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2, 0, 0), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 3, 0, 0), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3, 0, 0), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 6), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2, 0, 0), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4, 0, 0), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, 0, 14), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, -1, 15), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 43), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 43), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 17), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 17), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 43), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 43), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 17), + [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 17), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, 0, 0), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 0), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 57), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 57), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 81), + [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 81), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 38), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 38), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 56), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 56), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 71), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 71), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(479), + [1612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), REDUCE(sym_primary_expression, 1, 0, 2), + [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 2), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 71), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 71), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2, 0, 0), + [1625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), REDUCE(sym_tuple, 2, 0, 0), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2, 0, 0), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2, 0, 0), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), REDUCE(sym_list, 2, 0, 0), + [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2, 0, 0), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), + [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 24), + [1651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 24), + [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2, 0, 0), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 50), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 50), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4, 0, 0), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3, 0, 0), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, 0, 0), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 79), SHIFT_REPEAT(593), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 50), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 50), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 3, 0, 88), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 3, 0, 88), + [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 0), + [1700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 0), + [1702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 142), + [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 142), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 119), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 119), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 132), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 132), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 133), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 133), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 134), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 134), + [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 0), + [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 0), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 6, 0, 135), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 6, 0, 135), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 143), + [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 143), + [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 7, 0, 144), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 7, 0, 144), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 8, 0, 148), + [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 8, 0, 148), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 104), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 104), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 105), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 105), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 5, 0, 120), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 5, 0, 120), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_except_clause, 4, 0, 106), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_except_clause, 4, 0, 106), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 17), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 17), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, 0, 57), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, 0, 57), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 115), + [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 115), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 54), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 62), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 62), + [1792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 86), + [1794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 86), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 43), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 43), + [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 42), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 42), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 38), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 38), + [1808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 103), + [1810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 103), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 99), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 99), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 43), + [1834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 43), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 17), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 17), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 59), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 59), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 89), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 89), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 90), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 90), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, 0, 58), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, 0, 58), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 91), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 91), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 92), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 92), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 109), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 109), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 6, 0, 93), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 6, 0, 93), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 63), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 63), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2, 0, 0), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 64), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 64), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2, 0, 0), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2, 0, 0), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 65), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 65), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 7, 0, 110), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 7, 0, 110), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 121), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 121), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 98), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 98), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 122), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 122), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 61), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 61), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 66), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 66), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 100), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 100), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 101), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 101), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 102), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 102), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 5, 0, 67), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 5, 0, 67), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 78), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 78), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, 0, 60), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, 0, 60), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 4, 0, 0), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 7, 0, 43), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 7, 0, 43), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 108), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, 0, 108), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 80), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 80), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, 0, 82), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, 0, 82), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 129), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 129), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3, 0, 0), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 114), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 114), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, 0, 83), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, 0, 83), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, 0, 84), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, 0, 84), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 85), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 85), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 116), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 116), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 117), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, 0, 117), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 118), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 118), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 130), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 130), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 131), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 131), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1, 0, 0), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1, 0, 0), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, 0, 87), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, 0, 87), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, 0, 40), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, 0, 40), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 136), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, 0, 136), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 141), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, 0, 141), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, 0, 44), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, 0, 44), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 3, 0, 88), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 3, 0, 88), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 6, 0, 17), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 6, 0, 17), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4, 0, 46), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4, 0, 46), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2, 0, 0), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 55), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 55), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, 0, 12), + [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3, 0, 0), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1, 0, 0), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, 0, 22), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, 0, 22), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, 0, 9), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2, 0, 0), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2, 0, 0), + [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1721), + [2430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 25), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), + [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1724), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, 0, 35), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, 0, 35), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5, 0, 0), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5, 0, 0), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 34), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 34), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2, 0, 0), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, 0, 35), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, 0, 35), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4, 0, 0), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, 0, 35), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 34), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 34), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 0), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 10), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 10), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, 0, 34), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, 0, 34), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3, 0, 0), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3, 0, 0), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3, 0, 0), + [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3, 0, 0), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_expression, 4, 0, 35), + [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_expression, 4, 0, 35), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), - [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(873), + [2784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(867), [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(2747), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(849), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(873), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(914), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(846), - [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(914), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(892), - [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(850), - [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(892), - [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(927), - [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(848), - [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(927), - [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(861), - [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(847), - [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(861), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(856), - [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(853), - [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(856), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(947), - [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(852), - [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(947), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(854), - [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(851), - [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(854), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), - [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [2898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(837), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 49), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), - [2995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(550), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 23), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 22), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 18), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 22), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(323), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), - [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), - [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [3128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(497), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 23), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(486), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), - [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(523), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(515), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), - [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), - [3199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(508), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), - [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(530), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 47), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(572), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), - [3274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), - [3277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(544), - [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2770), - [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2691), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(545), - [3399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2749), - [3402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(774), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), - [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 70), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(558), - [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2773), - [3445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 109), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 53), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 53), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), - [3513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(419), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(547), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 37), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 39), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 69), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 19), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 48), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 19), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 45), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 27), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 27), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 75), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 75), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), - [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(460), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 52), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 52), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [3649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 27), - [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 27), - [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), - [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1549), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 120), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 45), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 122), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 18), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 49), - [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(592), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 122), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), - [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 110), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 120), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 110), - [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1517), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), SHIFT_REPEAT(579), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [3932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), - [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1515), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), - [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2586), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), - [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), - [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2396), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), - [4076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(330), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(373), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 47), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), - [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(564), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), SHIFT_REPEAT(1540), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 121), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(343), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), SHIFT_REPEAT(584), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), - [4258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), SHIFT_REPEAT(412), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 30), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2302), - [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(489), - [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(360), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 33), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 34), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 68), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 123), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 132), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 133), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 134), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 124), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 135), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 125), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 34), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 138), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 139), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 110), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 140), - [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 141), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 54), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), - [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 76), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 21), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 77), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 22), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 31), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), - [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 111), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [4981] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(2695), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(856), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(867), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, 0, 11), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(921), + [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(862), + [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(921), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(943), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(861), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(943), + [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(913), + [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(855), + [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(913), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(915), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(854), + [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(915), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(912), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(860), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(912), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(881), + [2868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(858), + [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(881), + [2874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__not_in, 2, 0, 0), + [2876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__not_in, 2, 0, 0), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(891), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(857), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, 0, 26), SHIFT_REPEAT(891), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__is_not, 2, 0, 0), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__is_not, 2, 0, 0), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, 0, 0), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), + [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(851), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1, 0, 0), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(847), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3, 0, 0), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2, 0, 0), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1, 0, 0), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, 0, 49), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(543), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, 0, 18), + [3022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, 0, 23), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, 0, 22), + [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 0), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, 0, 6), + [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [3033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1809), + [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1809), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(495), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, 0, 23), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), SHIFT(342), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, 0, 22), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, 0, 6), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 0), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1, 0, 0), + [3193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(485), + [3196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(518), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 1, 0, 0), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(525), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3, 0, 0), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 2, 0, 0), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), + [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(511), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2648), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dotted_name, 2, 0, 0), + [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(504), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 47), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, 0, 8), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1, 0, 0), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), + [3271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), + [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1, 0, 0), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2, 0, 0), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1, 0, 0), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, -1, 6), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2, 0, 0), + [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, 0, 19), SHIFT(584), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2, 0, 0), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 70), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1, 0, 0), + [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), + [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2721), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2, 0, 0), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [3414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 6), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 2, 0, 0), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(566), + [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), + [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(737), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2782), + [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2, 0, 0), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(2779), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 5, 0, 0), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2, 0, 0), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, 0, 95), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, 0, 95), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 96), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, 0, 97), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 74), + [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 74), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 19), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3, 0, 0), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, 0, 45), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 0), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, 0, 19), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, 1, 7), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 0), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_pattern, 3, 0, 0), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, 0, 94), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, 0, 111), + [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(438), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 75), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 75), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 16), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 27), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 27), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2, 0, 0), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3, 0, 0), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [3595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dotted_name_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 53), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 53), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 1), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 73), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, 0, 73), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 69), + [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1553), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_pattern, 2, 0, 0), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 20), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(588), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 105), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 4, 0, 37), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(431), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(547), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, 0, 48), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 39), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 27), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 27), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 52), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, 0, 52), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_pattern, 1, 0, 0), + [3689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_statement, 4, 1, 45), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, 0, 18), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, 0, 49), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1559), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 3, 0, 0), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 3, 0, 0), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 112), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 3, 0, 0), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 3, 0, 0), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 3, 0, 0), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 4, 0, 0), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 4, 0, 0), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complex_pattern, 4, 0, 0), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 112), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 123), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 0), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 4, 0, 125), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 4, 0, 0), + [3783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), + [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2050), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 5, 0, 0), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 5, 0, 0), + [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 123), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 5, 0, 125), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 5, 0, 0), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 4), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1, 0, 0), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_pattern, 6, 0, 0), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 3, 0, 13), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_pattern, 2, 0, 0), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_pattern, 2, 0, 0), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 1, 0, 4), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_pattern, 2, 0, 0), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2, 0, 0), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dict_pattern, 2, 0, 0), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, 0, 0), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3, 0, 0), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__as_pattern, 3, 0, 0), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_list, 2, 0, 13), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 28), + [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), + [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2484), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 3, 0, 0), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 3, 0, 0), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, 0, 8), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, -1, 15), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), + [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_prefix_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_prefix, 1, 0, 0), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), + [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2650), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 0), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, 0, 14), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 2, 0, 0), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3, 0, 0), + [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nonlocal_statement, 2, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), + [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, 0, 36), SHIFT_REPEAT(579), + [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), SHIFT_REPEAT(1526), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, 0, 79), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 0), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), + [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(462), + [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), SHIFT_REPEAT(425), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, 0, 72), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__import_list_repeat1, 2, 0, 29), SHIFT_REPEAT(2395), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__key_value_pattern, 3, 0, 47), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 124), SHIFT_REPEAT(1549), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 124), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, 0, 8), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), SHIFT_REPEAT(401), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [4212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), + [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1656), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1, 0, 0), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_import, 3, 0, 30), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [4341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(489), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1, 0, 0), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relative_import, 1, 0, 0), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(473), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1, 0, 0), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [4426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), SHIFT_REPEAT(480), + [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, 0, 41), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, 0, 51), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2, 0, 0), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1528), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(850), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(554), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 107), SHIFT_REPEAT(536), + [4554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_except_clause_repeat1, 2, 0, 107), + [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dict_pattern_repeat1, 2, 0, 112), + [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 34), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, 0, 68), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 4, 0, 31), + [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 126), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wildcard_import, 1, 0, 0), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 32), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 4, 0, 33), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1, 0, 0), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, 0, 54), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, 0, 0), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 34), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_future_import_statement, 6, 0, 76), + [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_from_statement, 6, 0, 77), + [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 137), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 138), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, 0, 113), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 139), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, 0, 140), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1, 0, 0), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, 0, 3), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, 0, 21), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, 0, 22), + [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 127), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, 0, 128), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 145), + [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 146), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, 0, 147), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, 0, 149), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relative_import, 2, 0, 0), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5, 0, 0), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4958] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4, 0, 0), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1, 0, 0), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), }; enum ts_external_scanner_symbol_identifiers { @@ -128915,19 +129621,19 @@ static const bool ts_external_scanner_states[19][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RPAREN] = true, }, [9] = { - [ts_external_token_string_start] = true, + [ts_external_token__newline] = true, [ts_external_token_comment] = true, - [ts_external_token_except] = true, }, [10] = { - [ts_external_token__dedent] = true, [ts_external_token_string_start] = true, [ts_external_token_comment] = true, [ts_external_token_except] = true, }, [11] = { - [ts_external_token__newline] = true, + [ts_external_token__dedent] = true, + [ts_external_token_string_start] = true, [ts_external_token_comment] = true, + [ts_external_token_except] = true, }, [12] = { [ts_external_token_comment] = true,